From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 01:22:06 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DA6E106566B for ; Sun, 7 Jun 2009 01:22:06 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 17AD68FC19 for ; Sun, 7 Jun 2009 01:22:05 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n571NAMT077566 for ; Sat, 6 Jun 2009 18:23:10 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 6 Jun 2009 18:22:01 -0700 (PDT) Date: Sat, 6 Jun 2009 18:22:00 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20090607012158.GA14286@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: enclose code and testfile. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 01:22:06 -0000 Guys, I'm encloseing a brief C program that skips over php delimiters and a 74-byte test file. After gdb "reminded" me that it eats the last byte, I was able to complete this. Am wondering if there is a better way. Obv'ly there are other way to get past ""; but this was already half-written. // dephp.c #include int main(int argc, char *argv[]) // use: ./a.out testfile { FILE *fp; *argv++; if ((fp = fopen(*argv, "r")) ==NULL) printf("[%s] not found\n", *argv); else foo(fp); } /* * read past any php */ int foo (FILE *fp) { int ch, ch2, ch3, ch4; while (( ch = getc(fp)) != EOF) { if (ch == '<' && (ch3 = getc(fp)) == '?') { while ((ch2 = getc(fp)) != '?') { continue; } if (ch2 == '?' && (ch4 = getc(fp)) == '>') { } } else { putchar (ch); } } return 0; } // the testfile: foo bar blah, blah < > blah, blah end of html src file HERE. -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org For FBSD list: http://transfinite.thought.org/slicejourney.php From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 01:40:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D98FC106564A for ; Sun, 7 Jun 2009 01:40:45 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 967198FC08 for ; Sun, 7 Jun 2009 01:40:45 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by gxk3 with SMTP id 3so3194516gxk.19 for ; Sat, 06 Jun 2009 18:40:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Sjs8QO05lJBKqkd83ccL0dpDrUk+13n+qrad6REng7E=; b=HiLp85PW9P80SnMTqUxlDEK5hqnSzYdWeIyno+Hela9NI3jBQJoqnfa5EL7mtPAnhw df2qRryBqRPMZ+iNc9yOFliLY0wChxvxWfZXiesVfs718hbXUw7V0ei2rG/jX50gM7ue 558mpTaEGTmhnVfThzDIe8+hrmzr3PO3fBb6U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=gVvz1/Wa2Xa/Xb+5cd8dUSel2wWeO6os8d9fdjRZkeuzBhh2SWaTDgDMG3l/scvVYY hnbO5Ck0Uv+Ule/2rrZBprMa6ZTpEdsxep6IZ7O9jSZ4buQ1GF+zR3HSyTUnxq/2jDQp +nUJDsNnKnQjPbsi3j/L/9noS6ZHoifp5fmLg= MIME-Version: 1.0 Received: by 10.231.10.136 with SMTP id p8mr1386235ibp.14.1244338844706; Sat, 06 Jun 2009 18:40:44 -0700 (PDT) In-Reply-To: <20090606201303.GD26421@scout.stangl.us> References: <20090606201303.GD26421@scout.stangl.us> Date: Sat, 6 Jun 2009 21:40:44 -0400 Message-ID: From: "illoai@gmail.com" To: Alex Stangl Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Problem w/ 6.0 -> 7.2 update X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 01:40:46 -0000 2009/6/6 Alex Stangl : > It's also not clear to me whether using freebsd-update.sh is the right > approach for upgrading from 6.0-RELEASE to 7.2-RELEASE, or if I should > follow some alternate approach, like booting the 7.2 CD and doing a > binary upgrade from there? I've always done such upgrades from source. It's fairly (!) simple and reasonably well documented (see the end of /usr/src/UPDATING) and some due care has prevented any maimings or deaths. -- -- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 02:10:53 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 01DD5106566B for ; Sun, 7 Jun 2009 02:10:53 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id A69BD8FC20 for ; Sun, 7 Jun 2009 02:10:52 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: by gxk3 with SMTP id 3so3215070gxk.19 for ; Sat, 06 Jun 2009 19:10:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:in-reply-to :references:content-type:date:message-id:mime-version:x-mailer; bh=aV18XCs9tXrf/2oJScg/JHNU8Uo/Bo2ZMcWXtrUocyU=; b=LkZzKjr6RfkMN7m26WeswSPR/o0PExtLbPaniFmltOCCZJ/61Drir67RscbkHYiXB6 2fNXT7mJ7rvz7A8xNDac4q3v/iM2MuslOVeSKezHiTV55+a4DypqNGLw9ElrvP0laivu HlQBUfkZ+hxVWTm6UyYl9FjbM4V4pUch2t8ZE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:in-reply-to:references:content-type:date:message-id :mime-version:x-mailer; b=D5kGqUujnlxhzGSrmDwEmc/gUZTLzQvGlVBLH05Q7+fMvoOzBeJ8b75fDvzr1z1rcG sUexjBSrLAfgGNnDP9BZqRUxYcTgBidOvVqBmbco+D9zhuuaCHannDkPnpm1Cul7cSG1 8utzT7HE/F2gE53msVZvJbSRsIrl/uD5ekOl0= Received: by 10.90.28.16 with SMTP id b16mr1665025agb.101.1244340652065; Sat, 06 Jun 2009 19:10:52 -0700 (PDT) Received: from ?192.168.6.250? ([189.123.214.109]) by mx.google.com with ESMTPS id 18sm3553562agb.10.2009.06.06.19.10.50 (version=SSLv3 cipher=RC4-MD5); Sat, 06 Jun 2009 19:10:51 -0700 (PDT) From: Sergio de Almeida Lenzi To: freebsd-questions In-Reply-To: References: <56942.76.25.231.251.1244295367.squirrel@webmail.wcubed.net> <1244306366.5333.8.camel@localhost> Date: Sat, 06 Jun 2009 23:10:48 -0300 Message-Id: <1244340648.8936.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.2 FreeBSD GNOME Team Port Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: fsck on 1.5TB drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 02:10:53 -0000 Em Sáb, 2009-06-06 às 23:13 +0200, Wojciech Puchar escreveu: > > try to use journaling on the backup partition, (if you do not want to > > use ZFS...) > > is it THAT a problem to wait 5-10 minutes for fsck? > > on OS that really crash RARELY. Most cases not at all. You are right Puchar, but sometimes (2 in 100 on powerfailure) the filesystem gets corrupted (database files opened, and being extended)... so when the fsck enters, the database get corrupted.. by using zfs or journaling I never have anothter database problem.... People can say it is better to use a no-break in the server, Right again but in my case of about 1000 servers, after 2 years the batteries does not function any more... and I can rely only in the filesystem... a shell script that moves the partition to another HD previously formatted with ZFS (on amd64) or journaling (i386) solves my problem.... Sérgio From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 02:14:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ABDF106564A for ; Sun, 7 Jun 2009 02:14:47 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id ED6078FC08 for ; Sun, 7 Jun 2009 02:14:46 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n572FonM077887; Sat, 6 Jun 2009 19:15:50 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sat, 6 Jun 2009 19:14:41 -0700 (PDT) Date: Sat, 6 Jun 2009 19:14:41 -0700 From: Gary Kline To: Steven Schlansker Message-ID: <20090607021441.GA14457@thought.org> References: <20090606033308.GA10010@thought.org> <6739C1E0-70B4-454E-AC16-86E2C2D1A586@eecs.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6739C1E0-70B4-454E-AC16-86E2C2D1A586@eecs.berkeley.edu> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: how do i use gdb with < input? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 02:14:47 -0000 On Fri, Jun 05, 2009 at 11:36:33PM -0700, Steven Schlansker wrote: > > On Jun 5, 2009, at 8:33 PM, Gary Kline wrote: > > > > > i'm trying to walk thru a short program and see what's actually > >happening. > > can anybody remind me how to send a file file "< redirect" to ./ > >a.out? > > > gdb myprog > (gdb) run < myfile > thanks, slightly belatedly. gary (ps: good to hear from someone from where i spent some great years: Cory Hall.) -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org For FBSD list: http://transfinite.thought.org/slicejourney.php From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 03:26:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B85E106566C for ; Sun, 7 Jun 2009 03:26:11 +0000 (UTC) (envelope-from campaign@dabber.tv) Received: from iph2.telenor.se (iph2.telenor.se [195.54.127.133]) by mx1.freebsd.org (Postfix) with ESMTP id C5E648FC13 for ; Sun, 7 Jun 2009 03:26:10 +0000 (UTC) (envelope-from campaign@dabber.tv) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgMQAOPIKkrDNmV6X2dsb2JhbACCJC2EF5E0FwsKBBWzaQKCQIFIBQ X-IronPort-AV: E=Sophos;i="4.41,317,1241388000"; d="scan'208,217";a="16141055" Received: from ironport2.bredband.com ([195.54.101.122]) by iph2.telenor.se with ESMTP; 07 Jun 2009 04:56:38 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aud7AOPIKkpV5X7VPGdsb2JhbACCJC2EF5E0AQEBAR8XC7NpAoJAgUgF X-IronPort-AV: E=Sophos;i="4.41,317,1241388000"; d="scan'208,217";a="499715437" Received: from c-d57ee555.016-94-73746f11.cust.bredbandsbolaget.se (HELO [192.168.0.12]) ([85.229.126.213]) by ironport2.bredband.com with SMTP; 07 Jun 2009 04:56:37 +0200 Date: Sun, 7 Jun 2009 04:56:38 +0200 Mime-version: 1.0 From: DABBER.tv To: freebsd-questions Message-Id: <67456.YKUJYDCT@dabber.tv> Original-recipient: rfc822;freebsd-questions@freebsd.org Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Dabber proudly presents The Stockholm Exhibition as a new client X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: campaign@dabber.tv List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 03:26:11 -0000 Proudly presenting The Stockholm Exhibition as a new client We are very proud to present a new collaboration with The Stockholm Exhibit= ion Dabber presents it=B4s new way of displaying content over a time machine ef= fekt. We were asked to help illustrate and communicate the magnitude of a project= that is dynamic, long-term, groundbreaking and innovative. The new Stockho= lm Exhibition will be a modell that Eric created one of his best solutions so far that several new clients will= implement on theire webpages. Check it out soon on our Twitter-feed or in = our newsletters What we can do for you: If you as some of our clients are looking for the 'wow-factor', or need to = start implementing video in your business or if you need our different appr= oach to take the step from idea to a well-visited website. Whatever the nee= d, Dabber is ready to take you from static to stunning! If you are interested in our services, big or small please contact us. We a= re based in Stockholm Sweden and work globaly on changing the way we commun= icate. Visit the web site TheStockholmExhibition.com /Daniel Daboczy CEO Dabber.tv From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 04:32:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9A5F1065670 for ; Sun, 7 Jun 2009 04:32:42 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id 5AEB98FC0A for ; Sun, 7 Jun 2009 04:32:42 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1297861qwe.7 for ; Sat, 06 Jun 2009 21:32:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=bq6b7oEiKjN0kG+L4UROAUl412mkHA3MiiAyZTZHfHg=; b=iYwIfZ0A2ZFFttOYOUXojf/2ZaUSHBf4Wz+y3EXBKz0QSKxKSrhK8eY+U3osgD76E1 Og9QViQMHguYwG+ITSzjqCIWfik0A25I+GS20Zkbu3LYPg6Nha2m9QmncDq3RKvtEtsj l2T7Q4LnJHDj65v5N9vXK6eqA8mYxhlzgZRhw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=QLc/qRmlACysrJfaOLRw4t6N02dvHAv07pBlzhKB6LGlcEY/4W2hwm7fh2SD/ZJt7C i1rJVOHuDruTQEenzeS/DsrcdAx7sCfdvHvpZkrxeAxmdJ/Y6D1HfNsFSi+UZ73oll7+ 8IlENki4ks7PeVfH6UqU+eiJ7h6y1KArP2/KU= MIME-Version: 1.0 Received: by 10.220.80.134 with SMTP id t6mr3004892vck.108.1244349161503; Sat, 06 Jun 2009 21:32:41 -0700 (PDT) In-Reply-To: References: <200906050924.23167.kirk@strauser.com> <200906051208.43135.kirk@strauser.com> <4A29EBB7.9090100@strauser.com> <20090606094648.GA10672@ei.bzerk.org> Date: Sat, 6 Jun 2009 22:32:40 -0600 Message-ID: From: Tim Judd To: utisoft@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Date representation as YY/DDD or YYYY/DDD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 04:32:43 -0000 On 6/6/09, Chris Rees wrote: > 2009/6/6 Wojciech Puchar : >>>> what some single-letter option meant. I pretty much never use them on >>>> the command line, though. >>> >>> Agreed, the long options *as an alternative* can be descriptive in >>> scripts, >>> tutorials, howto's etc. >>> The other reason often mentioned, there being not enough letters in the >>> alphabet to cover all possible options, in my opinion advocates bloated >>> software (one program can do it all), which goes against the Unix >>> paradigm >>> of making small programs that do one task exceptionally well and just >>> chaining these together. >> >> you exaggerate a bit. >> >> for example rsync does have >26 options but most make sense for program >> that >> is dedicated to one task, and it isn't against Unix paradigm. >> >> But it have one letter shortcuts for mostly used parameters >> > > Can I be picky and point out it's actually 52 short options? > > [chris@amnesiac]~% ls -f > quantumdot mail cromwell_1024.bin.gz > public_html bnreg amnesiackey.pub > backup.sh.gz cromwell.bin.gz check-portupgrade.pl > why.c teamspeak > [chris@amnesiac]~% ls -F > amnesiackey.pub cromwell.bin.gz quantumdot/ > backup.sh.gz cromwell_1024.bin.gz teamspeak/ > bnreg/ mail/ why.c > check-portupgrade.pl public_html/ > [chris@amnesiac]~% > > for just one example.... > > Chris and digits add another 10. We're up to 62 single-character options. I'm sure punctuation will be next. dig www.google.com @192.168.0.1 OK, so now where does that leave us? From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 04:44:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDCA71065672 for ; Sun, 7 Jun 2009 04:44:39 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9577E8FC16 for ; Sun, 7 Jun 2009 04:44:39 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qyk3 with SMTP id 3so3433537qyk.3 for ; Sat, 06 Jun 2009 21:44:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=AyrSua9rfZ51OmY3/X8BqvtgMdsBDXz/gUaD851XM7U=; b=KlA095utIeGAYpRmfV2xaMDHkqV7ZhZKL62G9+bw7gltFIZvbpHPiDxxCmxDnAXbhY 2N+6ooWmgZ1WVKDYvlko70H90sLUx2JJGGOdy8g5qE/sg4ZSUHNlnqpmL8JdjeuulLNm yAQm2Pe8E1T5w5t8DLDus5sQxt6EKMfNF4odQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Yu4snFDKCQgSwzeeLB/yPMV1BvwKucKBrFTNZr2LuMOftbNA5hZLM+EEdXEMzNhH6G +V3DLimcEoeuZIEyldB7zyc1yhCDqzGYA4oPsU9kpSD03J1u9I/bamv2kS+eOhrni9FJ ZaBNCPfc77WnnmMsCsEP2xkPCmAfOCwP/pJNA= MIME-Version: 1.0 Received: by 10.220.77.79 with SMTP id f15mr3208387vck.2.1244349878897; Sat, 06 Jun 2009 21:44:38 -0700 (PDT) In-Reply-To: <5359c8a6e4fc10bf951a7ee095b0d29f.squirrel@webmail.pknet.net> References: <5359c8a6e4fc10bf951a7ee095b0d29f.squirrel@webmail.pknet.net> Date: Sat, 6 Jun 2009 22:44:38 -0600 Message-ID: From: Tim Judd To: Peter Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions Subject: Re: /etc/hosts - how does that file work?? - was weird nfs issues. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 04:44:40 -0000 On 6/4/09, Peter wrote: >> On Thursday 04 June 2009 20:48:21 Peter wrote: >>> iH, >>> This all started with NFS not mounting at boot....so, testing in VMs: >> >> >> >>> Why is ping using one IP, and ssh/mount_nfs/showmount using another IP > from /etc/hosts? >> >> Q: Where is described that name resolution for A or PTR records should > be >> returned in a fixed order and that a consumer should always use the > first >> one >> returned? >> A: Nowhere. Name servers are encouraged to do round-robin returns if not > specified otherwise. Applications may sort/pick at their own leisure. >> >> -- >> Mel > > I do not think /etc/hosts does round robin, I always assumed first match > wins...DNS/bind I would understand... > > Why does ping always return the 172.20.6.1 address, > and ftp,nc,ssh,telnet,fetch _always_ uses the 116 address? > > I would assume at least sometimes it would hit the 172 address with > anything besides ping - but it only ping hits the 172 address... > If so, I'd guess there would be consistency between ping lookups and > 'telnet/ssh/etc' lookups... > > Why if the 116.23.45.3 last octet is bumped up, everything _always_ > returns the 172 address? > > client# grep server /etc/hosts > 172.20.6.1 server.test server > 116.23.45.5 server.test server > client# telnet server > Trying 172.20.6.1... > telnet: connect to address 172.20.6.1: Connection refused > Trying 116.23.45.5... > > /etc/hosts - 'server' changed to > 116.23.45.3: > > client# telnet server > Trying 116.23.45.3... > telnet: connect to address 116.23.45.3: Operation timed out > Trying 172.20.6.1... > telnet: connect to address 172.20.6.1: Connection refused > telnet: Unable to connect to remote host > > if server has ip>116.23.45.3, it always uses the 172 address first... > > but ping always uses the 172... > even if third entry is added into /etc/hosts - nothing ever uses it as the > first/primary IP. > > Is there an algorithm based on IP/program being used and the returned IP? > I can't sit and watch this thread anymore. Something itchin' to say: DNS, who can handle multiple A records in an optional round-robin design, is perfectly fine to assign multiple A records to a resource. /etc/hosts, which as always existed (back when the Internet was created/new), was a unique record source only. Having oddities in /etc/hosts is expected IMHO when a "mistake" like multiple resources assigned different records. What's to stop you from creating slightly different records in /etc/hosts? Whats to stop you from hitting 'privserver' and 'pubserver', for private and public IPs respectively. why are you so hung up on dual IPs for a single host? would dnsmasq provide a solution to dual A records for one resource? I'll help, when I can. but forcing this on /etc/hosts is a dead end. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 04:48:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93EE01065670 for ; Sun, 7 Jun 2009 04:48:21 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 235618FC12 for ; Sun, 7 Jun 2009 04:48:20 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so3218122ewy.43 for ; Sat, 06 Jun 2009 21:48:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=uyi9lYDOY1H+VgvpFKvkE3X2nc5YmFTE9L5hHT7dtCg=; b=Hd4FSQzY3sOWN1jiPe1HIb+PiA9gBgGY2IEKv9Nc1DEA5AmLf8c0bPZHCHBcpMUD45 yoOysr7hyoGAWbzmvqHYwi54q/92/iL2jErMrQ+um6j4FNm5+uybUPraWib96xScwwkx vyFqeiIRCDwu0bOG5QO+C2oPGqrX8AA392ILA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=ZOgNCFzaeti5q0pQxxLFIC0syKwmsHYroxPVoJ7l6fCuiIB643flrlv+twR+pb96WD SYTabh3Lq5uG9FDcljZGvDRssn3YR+QffeVZGRVzzA8XYz6FpQQ+1gRkxPOqpGK56P6u nwXtAQcplDAXbWFZLplWAGmsA5ck+U+gLEivg= MIME-Version: 1.0 Received: by 10.211.195.15 with SMTP id x15mr4997221ebp.16.1244350100256; Sat, 06 Jun 2009 21:48:20 -0700 (PDT) In-Reply-To: <4a2aec44.Ns0KUKDux1uwGV04%perryh@pluto.rain.com> References: <900923.129.qm@web39101.mail.mud.yahoo.com> <86prdhuazk.fsf@nowhere.org> <20090606180108.GA20291@slackbox.xs4all.nl> <4A2AAFA3.7080502@boosten.org> <20090606191241.GB21767@slackbox.xs4all.nl> <4a2aec44.Ns0KUKDux1uwGV04%perryh@pluto.rain.com> Date: Sun, 7 Jun 2009 00:48:20 -0400 Message-ID: From: Daniel Underwood To: perryh@pluto.rain.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: rsmith@xs4all.nl, freebsd-questions@freebsd.org, peter@boosten.org Subject: Re: Installing latest version of LaTeX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 04:48:21 -0000 Installed texlive from ISO, and it all works perfectly now. Thanks folks! From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 06:53:27 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69BDB1065670 for ; Sun, 7 Jun 2009 06:53:27 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 60C818FC17 for ; Sun, 7 Jun 2009 06:53:26 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n576rL9A097773; Sun, 7 Jun 2009 08:53:21 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n576rKBZ097770; Sun, 7 Jun 2009 08:53:20 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 08:53:19 +0200 (CEST) From: Wojciech Puchar To: Sergio de Almeida Lenzi In-Reply-To: <1244340648.8936.7.camel@localhost> Message-ID: References: <56942.76.25.231.251.1244295367.squirrel@webmail.wcubed.net> <1244306366.5333.8.camel@localhost> <1244340648.8936.7.camel@localhost> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: fsck on 1.5TB drive X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 06:53:27 -0000 > > > You are right Puchar, but sometimes (2 in 100 on powerfailure) the > filesystem > gets corrupted (database files opened, and being extended)... so > when the fsck enters, the database get corrupted.. Filesystem will rather be not corrupted, but database file data. Non-journalled UFS with softupdates guarrantes the right sequence of disk updates. For example it will not allocate just freed space until freeid inodes/blocks are not wrote back to disk. As in your example - extended and written something, but will end unextended etc.. > by using zfs or journaling I never have anothter database problem.... This is sequence problem - for example you write to file A,B and C then it's a crash and you have file A and C written but not B. I though that all this "famous" database systems like mysql already have mechanism for that. looks like not, or it should not get corrupted. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 07:56:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D876B106566C for ; Sun, 7 Jun 2009 07:56:51 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 421BF8FC0C for ; Sun, 7 Jun 2009 07:56:51 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n577ukYc022215; Sun, 7 Jun 2009 09:56:46 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n577uj8X022214; Sun, 7 Jun 2009 09:56:45 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Sun, 7 Jun 2009 09:56:45 +0200 From: Ruben de Groot To: Wojciech Puchar Message-ID: <20090607075645.GA22136@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Wojciech Puchar , freebsd-questions@freebsd.org References: <200906050924.23167.kirk@strauser.com> <200906051208.43135.kirk@strauser.com> <4A29EBB7.9090100@strauser.com> <20090606094648.GA10672@ei.bzerk.org> <20090606101422.GB10672@ei.bzerk.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Sun, 07 Jun 2009 09:56:49 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: Date representation as YY/DDD or YYYY/DDD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 07:56:52 -0000 On Sat, Jun 06, 2009 at 02:05:39PM +0200, Wojciech Puchar typed: > >rsync isn't bloated and it's well written IMO. It still does only one job, > >and > >it does it well. As you say, most common tasks can still be done with only > >short options. This would change if some developer decided to add other, > >unrelated functionality. But that's harder if you want to maintain short > >options > >for the common tasks. > >Having only long options would place no such restrictions on bloating. > > > what program you mean about having only long options? Wasn't referring to any particular program's. mplayer is an example though. But that's not my point. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 08:52:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BB661065674 for ; Sun, 7 Jun 2009 08:52:40 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 101D58FC17 for ; Sun, 7 Jun 2009 08:52:39 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (ppp-71-139-35-171.dsl.snfc21.pacbell.net [71.139.35.171]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id n578qdnA045834 for ; Sun, 7 Jun 2009 01:52:39 -0700 (PDT) Message-ID: <4A2B7FD5.3070608@rawbw.com> Date: Sun, 07 Jun 2009 01:52:37 -0700 From: Yuri User-Agent: Thunderbird 2.0.0.21 (X11/20090419) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: dvd burning command growisofs fails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 08:52:42 -0000 Command: growisofs -dvd-compat -speed=4 -Z /dev/cd0=dvd.iso that used to work no fails. The difference is newer motherboard/cpu and updated ports. Here are logs: --- begin stdout/stderr log --- Executing 'builtin_dd if=orlando-2009-may26-june3.iso of=/dev/pass1 obs=32k seek=0' /dev/pass1: "Current Write Speed" is 4.1x1352KBps. 1605632/3335168000 ( 0.0%) @0.0x, remaining 138:24 RBU 100.0% UBU 2.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 276:49 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 380:37 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 519:02 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 622:51 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 726:39 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 865:04 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 968:52 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1107:17 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1211:05 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1349:30 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1453:19 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1591:43 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1695:32 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1833:56 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 1937:45 RBU 100.0% UBU 100.0% 1605632/3335168000 ( 0.0%) @0.0x, remaining 2041:33 RBU 100.0% UBU 100.0% :-( unable to WRITE@LBA=310h: Input/output error :-( write failed: Input/output error /dev/pass1: flushing cache :-[ FLUSH CACHE failed with SK=6h/POWER ON, RESET, OR BUS DEVICE RESET OCCURRED]: Input/output error /dev/pass1: updating RMA /dev/pass1: closing disc --- end stdout/stderr log --- --- begin dmesg log --- acd0: FAILURE - READ_TOC ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - unknown CMD (0x03) ILLEGAL REQUEST asc=0x24 ascq=0x00 acd0: FAILURE - WRITE_BIG timed out --- end dmesg log --- What might be wrong? Yuri From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 09:43:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3B4B106564A for ; Sun, 7 Jun 2009 09:43:41 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 423E68FC16 for ; Sun, 7 Jun 2009 09:43:41 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: by mail-bw0-f213.google.com with SMTP id 9so5831bwz.43 for ; Sun, 07 Jun 2009 02:43:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=2GHYLjFzK9Vh9UlHxFTszdqx6fpf88494+dNy4y4Ebc=; b=Viupmt6feEjt5g5aPkLEzMWeVI+DklmgZxSMXMq4ganj1311mE2c8E6wIBbWw6w2da iLdFLgVDIxKW7iCv78c4JTifELoTd2wzQM8xSpc4brn4L1b0Y1o52cfJ6D107UgtWE7g QszDjfE4hONg3890Zs1Ul2bjODhGYevoNOcKI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=P5q17+UqZo31AcqlIO+E3ehbnM624GO3tJUI3tX06x5Dlxqg7aRWKpSDA44kIjWu8D 0Kf7F4fwg8xS2PD5dMhGLz/b/EjH2HaYzC4fudQN6MNIc+Tz74jcTva62ez+Ur3oFZSa jyXGQcvMRXgiHCOuZSt36Sheq7sQKlJ+kSq88= MIME-Version: 1.0 Received: by 10.223.127.4 with SMTP id e4mr2913387fas.100.1244367820840; Sun, 07 Jun 2009 02:43:40 -0700 (PDT) Date: Sun, 7 Jun 2009 10:43:40 +0100 Message-ID: From: "John ." To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 09:43:42 -0000 Hello list, Can anyone please recommend to me a program that will stress-test a disk? If it matters, two are connected by firewire, another via usb. Filesystem is ufs. I think I have a disk that might be about to fail, but it only sometimes errors when under stress. I need to see if it was a fluke or to really make it fail, so that I can get rid of it. thanks -- John From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 09:54:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CCA41065674 for ; Sun, 7 Jun 2009 09:54:01 +0000 (UTC) (envelope-from rebotados@exemys.com) Received: from server2.hostmailing.com (server2.hostmailing.com [200.110.145.42]) by mx1.freebsd.org (Postfix) with ESMTP id C19728FC13 for ; Sun, 7 Jun 2009 09:54:00 +0000 (UTC) (envelope-from rebotados@exemys.com) Received: from web.hostmailing.com ([200.110.145.34] helo=www.hostmailing.com) by server2.hostmailing.com with esmtpa (Exim 4.68) (envelope-from ) id 1MDEMi-0000ZT-C7 for freebsd-questions@freebsd.org; Sun, 07 Jun 2009 06:08:32 -0300 Date: Sun, 7 Jun 2009 06:52:53 -0300 To: freebsd-questions@freebsd.org From: Exemys Message-ID: X-Priority: 3 X-Mailer: wh4535 [version 3.1] 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: Modbus I/O Module - Cost Effective X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: exemys@exemys.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 09:54:01 -0000 This is a message in multipart MIME format. Your mail client should not be displaying this. Consider upgrading your mail client to view this message correctly. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 10:00:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50F95106566C for ; Sun, 7 Jun 2009 10:00:26 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id CEDC28FC08 for ; Sun, 7 Jun 2009 10:00:25 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz9 with SMTP id 9so11321bwz.43 for ; Sun, 07 Jun 2009 03:00:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Xav4/YMjSsB/m4HqYMwtA5jHhGwha+B4LAQULhJS/rE=; b=wtKDloJAAYbtI4TL6Rv/sJPN2cs4P+4pPNquPoK1+DIliy3YWh1sYtkEr6oEAQvrHE Z+TR1gfhWTB5na+jW3HWMUuwn3WdL/lNoWXGDxAR+htbRsKm4xlA8X3Qvwf8WlqbPldc N2m/na+ND92yin4tixr/4Aajn/wg8cSRcfboY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=hA2LKhhGrAhaG/hUlfkG3JoS2QmZElA+llcRdYpbR7WxP7vGqwb4kyOYKNunES5miU jadXh43l4VcutexAef0yuU2beOH3chjvteSwZTCWoKA4qYvmScnKlPqlDr4hgldqglpc euqfgORtHAtrSkwz6k8m4sIj/SxW6A3wWx7b0= MIME-Version: 1.0 Received: by 10.204.124.7 with SMTP id s7mr5309129bkr.105.1244368824632; Sun, 07 Jun 2009 03:00:24 -0700 (PDT) In-Reply-To: References: Date: Sun, 7 Jun 2009 06:00:24 -0400 Message-ID: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> From: Glen Barber To: "John ." Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 10:00:26 -0000 Hi, John On Sun, Jun 7, 2009 at 5:43 AM, John . wrote: > Hello list, > > Can anyone please recommend to me a program that will stress-test a > disk? If it matters, two are connected by firewire, another via usb. > Filesystem is ufs. I think I have a disk that might be about to fail, > but it only sometimes errors when under stress. I need to see if it > was a fluke or to really make it fail, so that I can get rid of it. > You can use dd(1) to stress test disk I/O. Something like this should work: dd if=/dev/${YOURDISK} of=/dev/null bs=1024k -- Glen Barber http://www.dev-urandom.com http://www.linkedin.com/in/glenjbarber From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 10:05:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A3F79106564A for ; Sun, 7 Jun 2009 10:05:10 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: from mail-fx0-f215.google.com (mail-fx0-f215.google.com [209.85.220.215]) by mx1.freebsd.org (Postfix) with ESMTP id 302B28FC16 for ; Sun, 7 Jun 2009 10:05:09 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: by fxm11 with SMTP id 11so144295fxm.43 for ; Sun, 07 Jun 2009 03:05:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=gx8ecrXzLRXcxLEa82YaRKJ5Mi4Og/GK1K++V3SG3oQ=; b=o7jb/GmhcwCOi0n5P7TgxWq8tjEms2eZlfRMon8jk/4I2PXdg6ptJx3oNzvIth53S9 /YfQg7cAEMmDP+VnrcXbiP8V8mAFJ0bE3ngqyKyrY+4vzEyw4u36eEgrQYSxCm7n0NHf ieJRv69k1mSJbiWDBTUygHkLmuo89KCrxUo1k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=fT0lDk9issfg/7+x1LDBnavf56EZ5JQ88MTEGfCpiLazGUBt29jQl80KeSr2ggbaEC XWameRESMQtcNirbG68ZXkZ/49WKPzPwW+v2LxWE20ohAUx6JsesQEihr5r+D4wg7cOE mntqrM7QS95a5klYdTeC+iC+/dx8Gxed52jE8= MIME-Version: 1.0 Received: by 10.223.110.200 with SMTP id o8mr2982671fap.56.1244369108766; Sun, 07 Jun 2009 03:05:08 -0700 (PDT) In-Reply-To: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> Date: Sun, 7 Jun 2009 11:05:08 +0100 Message-ID: From: "John ." To: Glen Barber Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 10:05:10 -0000 Hi Glen, thanks for replying > You can use dd(1) to stress test disk I/O. =A0Something like this should = work: > > dd if=3D/dev/${YOURDISK} of=3D/dev/null bs=3D1024k That will show me thruput. I need to see if bad blocks or similar are happening. Something like scandisk for instance. Maybe I'm thinking the wrong way. Maybe see if they have SMART and read from there? cheers --=20 John From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 10:07:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A8A01065674 for ; Sun, 7 Jun 2009 10:07:37 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 821568FC1A for ; Sun, 7 Jun 2009 10:07:35 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz9 with SMTP id 9so14219bwz.43 for ; Sun, 07 Jun 2009 03:07:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=xPPYgmHluAaZfbozBosqwhJiH8lbYREltxa2/2aqYcY=; b=DUY3JuD9B0RR9xiWrYI2nf8ym/R69w86ntNPlzBtoCwWqnJ3PV3EjclhqMmz9eB0kS 2c8P7UEBJSmKfIQrugf9bfBxMPk8YN0Cxg1Q09NtbKcXIa2V1Dj3hNKCqtGDmOMowg85 wwHqhbdICYeEuTjcEZoHpj3rI0cL8A13mKzJk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=ixC2RpYh3Vnh7wx2G/ycvhp1Z1F/4Eq0y58+hv50Zg52KZuK0IczsV8zJ4toQfGaCw CYtglkG+vpyenrpK//Txc5JVr0+LPsdO7z3TxvIYB7SbKqlVLUbb8+UkF652bA8nXIRF a2ibCa9Lgd0xathC+t/+isJtyn6K2BKs8jRJo= MIME-Version: 1.0 Received: by 10.204.64.67 with SMTP id d3mr5270953bki.142.1244369255118; Sun, 07 Jun 2009 03:07:35 -0700 (PDT) In-Reply-To: References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> Date: Sun, 7 Jun 2009 06:07:35 -0400 Message-ID: <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> From: Glen Barber To: "John ." Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 10:07:37 -0000 On Sun, Jun 7, 2009 at 6:05 AM, John . wrote: > Hi Glen, thanks for replying > >> You can use dd(1) to stress test disk I/O. =A0Something like this should= work: >> >> dd if=3D/dev/${YOURDISK} of=3D/dev/null bs=3D1024k > > That will show me thruput. I need to see if bad blocks or similar are > happening. Something like scandisk for instance. > > Maybe I'm thinking the wrong way. Maybe see if they have SMART and > read from there? > Ah, I thought you wanted to stress test the throughput to get errors. In that case, have a look at sysutils/smartmontools in ports. --=20 Glen Barber http://www.dev-urandom.com http://www.linkedin.com/in/glenjbarber From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 10:25:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5368B106564A for ; Sun, 7 Jun 2009 10:25:09 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp105.prem.mail.ac4.yahoo.com (smtp105.prem.mail.ac4.yahoo.com [76.13.13.44]) by mx1.freebsd.org (Postfix) with SMTP id F0BBE8FC08 for ; Sun, 7 Jun 2009 10:25:08 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 87374 invoked from network); 7 Jun 2009 10:25:08 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=ALcMOfUVIJCjEETRIwnRqMmhcMY3Dux8I77KXwyt1hVxJhrjkShZqP0/GNxFazX4GasN9BPKfmZ50OfMgyOnhP3t138Yyv+SCvkZz4ykwtgd4DCkF2ZA9oqj7XxshRzoeF0WJojcQFTZ65lksDbnvZ4+ODpUsWYXpJjDfRdZSR4= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp105.prem.mail.ac4.yahoo.com with SMTP; 07 Jun 2009 03:25:08 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: 3vvcKVYVM1kz8QHW7_.1a5gqvZlV4fplFtcVPoOlmIS_XYYkm.lmkzV.yWSSxHyNNicOKGaahb2XPIHQLb7wQRiQ_SC6soUv60XxEd7gapdN2h9YAKz8ly2G.nRufDM6PwEkKS.3vF4sycUIKAhgei_VI7dXJ1BLNYVxOJ8q.xRKyvhh.wCRLEzv4JJwQXYNz8MPXQBa310LNlIzwAxXRmBampbsnQ9ufcjiV3HgaIEd1svo4tz1zda2yFXLt6GFbuYXE96iDOOJGAuoTR4lhr5MwESQ8a3xvK6sCuylT0ogfiyw83t3jo2FYjkll4PGmYY7aG1JvU.D3TBluYYxp8_5GlFDISXvDIU2zQYWAjE- X-Yahoo-Newman-Property: ymail-3 Date: Sun, 7 Jun 2009 06:24:56 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090607062456.1c6e8569@scorpio> In-Reply-To: References: Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/oDvGJi05KodtHsHWnf=UNUO"; protocol="application/pgp-signature" Subject: Re: please recommend a disk-exercising program? 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, 07 Jun 2009 10:25:09 -0000 --Sig_/oDvGJi05KodtHsHWnf=UNUO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sun, 7 Jun 2009 10:43:40 +0100 "John ." wrote: >Hello list, > >Can anyone please recommend to me a program that will stress-test a >disk? If it matters, two are connected by firewire, another via usb. >Filesystem is ufs. I think I have a disk that might be about to fail, >but it only sometimes errors when under stress. I need to see if it >was a fluke or to really make it fail, so that I can get rid of it. > >thanks The best one I know of is SpinRite . I have actually used it to rebuild disks that I was told by professional technicians were beyond hope. Of course, it is not free, so you might not be interested. One feature I like about it is that it creates its own start-up disk. It is totally system independent. --=20 Jerry gesbbb@yahoo.com Absence makes the heart forget. --Sig_/oDvGJi05KodtHsHWnf=UNUO Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkorlYIACgkQBvaKIJWWCO3IVQCdF9dpXdcw7MQgHogcrreFIzOK SFwAn32hiMK1l2FRCk5MGUm3Y725FKXE =St+a -----END PGP SIGNATURE----- --Sig_/oDvGJi05KodtHsHWnf=UNUO-- From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 10:26:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EDE910656C2 for ; Sun, 7 Jun 2009 10:26:24 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from mail.prgmr.com (mail.prgmr.com [64.62.173.114]) by mx1.freebsd.org (Postfix) with ESMTP id EE5AD8FC17 for ; Sun, 7 Jun 2009 10:26:23 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from frylock.local (c-71-202-68-54.hsd1.ca.comcast.net [71.202.68.54]) by mail.prgmr.com (Postfix) with ESMTP id A243568B5F for ; Sun, 7 Jun 2009 03:26:23 -0700 (PDT) Message-ID: <4A2B95C7.20701@prgmr.com> Date: Sun, 07 Jun 2009 03:26:15 -0700 From: Michael David Crawford Organization: Prgmr.com User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> In-Reply-To: <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 10:26:24 -0000 Check the downloads section at the disk manufacturer's website. All the disk vendors have utilities that can test their disks. Generally these utilities can use proprietary commands to exercise self-test functions that generally aren't accessible to non-proprietary test code. Most of the utilities are DOS boot disk images. You make either a floppy or a CD from them, then boot off of it. Mike -- Michael David Crawford mdc@prgmr.com prgmr.com - We Don't Assume You Are Stupid. Xen-Powered Virtual Private Servers: http://prgmr.com/xen From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:20:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40C61106566B for ; Sun, 7 Jun 2009 11:20:30 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 013FC8FC13 for ; Sun, 7 Jun 2009 11:20:29 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id B22F3509C6 for ; Sun, 7 Jun 2009 13:20:28 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 95E06508EF for ; Sun, 7 Jun 2009 13:20:28 +0200 (CEST) Message-ID: <4A2BA284.7020402@webrz.net> Date: Sun, 07 Jun 2009 13:20:36 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: FreeBSD Questions References: <4A26F16C.2010805@webrz.net> In-Reply-To: <4A26F16C.2010805@webrz.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Re: Stale lockfile X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 11:20:30 -0000 I see; I think I change the 'Copy' shortcut key in Putty to something else than Ctrl-C. Thanks guys for your input. Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:28:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 512DD106566C for ; Sun, 7 Jun 2009 11:28:27 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 0A7F18FC24 for ; Sun, 7 Jun 2009 11:28:26 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: by gxk3 with SMTP id 3so3528187gxk.19 for ; Sun, 07 Jun 2009 04:28:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:reply-to:from:to:subject:date :organization:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:x-mimeole:thread-index; bh=0fyUhuQhbQFHMEhNV9K2Rwbgu8uZ36mHlUIHvMVevP4=; b=oqJkm3d3pTwdY7YUSOh3NRifCHV11srMaGXw2nOzwRkDUr+5AM3x9Xd1WTGwlD4VVO OKQUY9WUcSiIWfVsAeqE+31Jv6dHGu5i+dvLB8U7uDu03RJKcTx/28FGIVcWf7hs4xrO E+8CLtAygBRu/V5UJn8ryA5jR4mL13Zqaz1q4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=reply-to:from:to:subject:date:organization:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:x-mimeole :thread-index; b=hzEHZNnk6AAEzZw1al+5Ga3WgVGbdp4uYD4w+4YAUT8d1WD7snXYRSWVLZjyaRPSym 3y6DLq7WZa+AC9WrabBhL1d15DhS/nTkFBSuM/Y95qbfi7GVnUsgu9AQT5plbPgrVfJu /cTk1CJx6VhQT8eeG0tXqn3tkLBRlty/5m4Zo= Received: by 10.151.125.10 with SMTP id c10mr10190123ybn.208.1244374106387; Sun, 07 Jun 2009 04:28:26 -0700 (PDT) Received: from hades ([99.148.206.19]) by mx.google.com with ESMTPS id 5sm5274749ywd.35.2009.06.07.04.28.25 (version=SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 04:28:25 -0700 (PDT) From: "Dave" To: Date: Sun, 7 Jun 2009 07:28:30 -0400 Organization: davemehler.com Message-ID: <1ACD77611EB0407698981BB7C42BED5D@hades> 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.5579 Thread-Index: AcnnYxWRuMpcQYLjRRG6xZkOb5o3mQ== Subject: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dave.mehler@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 11:28:27 -0000 Hello, I've found a lot of this for LInux, but am looking for something FreeBSD specific. I'm wanting to set up a FreeBSD 7.2 machine, samba3, dynamic dhcp and dns, to act as a domain controller. Has anyone done this and do you have some notes or a howto? Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:34:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AE37106564A for ; Sun, 7 Jun 2009 11:34:57 +0000 (UTC) (envelope-from georg@dts.su) Received: from host4.symbios.ru (host4.symbios.ru [80.84.112.82]) by mx1.freebsd.org (Postfix) with ESMTP id 0176E8FC1A for ; Sun, 7 Jun 2009 11:34:56 +0000 (UTC) (envelope-from georg@dts.su) Received: from [127.0.0.1] (helo=WORLDMY) by host4.symbios.ru with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDGeM-000Njb-JM; Sun, 07 Jun 2009 15:34:54 +0400 Received: from WORLDMY ([80.84.121.226] helo=WORLDMY) with IPv4:25 by host4.symbios.ru; 7 Jun 2009 15:34:52 +0400 Date: Sun, 7 Jun 2009 15:34:52 +0400 From: georg@dts.su Organization: dts.su X-Priority: 3 (Normal) Message-ID: <49009886.20090607153452@dts.su> To: freebsd-questions@freebsd.org, freebsd-fs@freebsd.org In-Reply-To: <20090606175033.GJ1927@deviant.kiev.zoral.com.ua> References: <20090606161600.GB61928@dchagin.static.corbina.ru> <20090606175033.GJ1927@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: quoted-printable X-Assp-Whitelisted: Yes X-Assp-Envelope-From: georg@dts.su X-Assp-Intended-For: freebsd-questions@freebsd.org X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - host4.symbios.ru X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [26 6] / [26 6] X-AntiAbuse: Sender Address Domain - dts.su Cc: Subject: Re[8]: fatal trap 12 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: Sun, 07 Jun 2009 11:34:58 -0000 Hello. After patch, whan make kernel I have this: /usr/src/sys/kern/vfs_vnops.c:750:37: error: macro "vn_lock" requires 3 arg= uments, but only 2 given /usr/src/sys/kern/vfs_vnops.c: In function 'vn_ioctl': /usr/src/sys/kern/vfs_vnops.c:750: error: 'vn_lock' undeclared (first use i= n this function) /usr/src/sys/kern/vfs_vnops.c:750: error: (Each undeclared identifier is re= ported only once /usr/src/sys/kern/vfs_vnops.c:750: error: for each function it appears in.) /usr/src/sys/kern/vfs_vnops.c:769: error: too few arguments to function 'VO= P_UNLOCK' *** Error code 1 This problem with crashes I have after cPanel update perl to version 5.10.0... Can some body tell me - is this global problem of FreeBSD or it only with my installation? > [Please, remove the questions@ on the reply, this is the topic for > fs@]. > On Sat, Jun 06, 2009 at 08:16:00PM +0400, Chagin Dmitry wrote: >> ----- Forwarded message from georg@dts.su ----- >>=20 >> Date: Sat, 6 Jun 2009 10:58:11 +0400 >> From: georg@dts.su >> To: freebsd-questions@freebsd.org >> Subject: Re[2]: fatal trap 12 >>=20 >> Hello, Freebsd-questions. >>=20 >> After one of new crash I have this: >>=20 >> GNU gdb 6.1.1 [FreeBSD] >> Copyright 2004 Free Software Foundation, Inc. >> GDB is free software, covered by the GNU General Public License, and you= are >> welcome to change it and/or distribute copies of it under certain condit= ions. >> Type "show copying" to see the conditions. >> There is absolutely no warranty for GDB. Type "show warranty" for detai= ls. >> This GDB was configured as "amd64-marcel-freebsd"... >>=20 >> Unread portion of the kernel message buffer: >>=20 >>=20 >> Fatal trap 12: page fault while in kernel mode >> cpuid =3D 2; apic id =3D 02 >> fault virtual address =3D 0x0 >> fault code =3D supervisor read data, page not present >> instruction pointer =3D 0x8:0xffffffff804c4eb8 >> stack pointer =3D 0x10:0xffffff807a0478f0 >> frame pointer =3D 0x10:0xffffff807a047930 >> code segment =3D base 0x0, limit 0xfffff, type 0x1b >> =3D DPL 0, pres 1, long 1, def32 0, gran 1 >> processor eflags =3D interrupt enabled, resume, IOPL =3D 0 >> current process =3D 32668 (perl5.10.0) >> Physical memory: 4082 MB >> Dumping 1647 MB: 1632 1616 1600 1584 1568 1552 1536 1520 1504 1488 1472 = 1456 1440 1424 1408 1392 1376 1360 1344 1328 1312 1296 1280 1264 1248 1232 = 1216 1200 1184 1168 1152 1136 1120 1104 1088 1072 1056 1040 1024 1008 992 9= 76 960 944 928 912 896 880 864 848 832 816 800 784 768 752 736 720 704 688 = 672 656 640 624 608 592 576 560 544 528 512 496 480 464 448 432 416 400 384= 368 352 336 320 304 288 272 256 240 224 208 192 176 160 144 128 112 96 80 = 64 48 32 16 >>=20 >> Reading symbols from /boot/kernel/accf_http.ko...Reading symbols from /b= oot/kernel/accf_http.ko.symbols...done. >> done. >> Loaded symbols for /boot/kernel/accf_http.ko >> #0 doadump () at pcpu.h:195 >> 195 __asm __volatile("movq %%gs:0,%0" : "=3Dr" (td)); >> (kgdb) list *0xffffffff804c4eb8 >> 0xffffffff804c4eb8 is in pfs_ioctl (/usr/src/sys/fs/pseudofs/pseudofs_vn= ops.c:265). >> 260 static int >> 261 pfs_ioctl(struct vop_ioctl_args *va) >> 262 { >> 263 struct vnode *vn =3D va->a_vp; >> 264 struct pfs_vdata *pvd =3D vn->v_data; >> 265 struct pfs_node *pn =3D pvd->pvd_pn; >> 266 struct proc *proc; >> 267 int error; >> 268 >> 269 PFS_TRACE(("%s: %lx", pn->pn_name, va->a_command)); >> (kgdb) backtrace >> #0 doadump () at pcpu.h:195 >> #1 0xffffffff801c8dac in db_fncall (dummy1=3DVariable "dummy1" is not a= vailable. >> ) at /usr/src/sys/ddb/db_command.c:516 >> #2 0xffffffff801c92df in db_command (last_cmdp=3D0xffffffff80b30c88, cm= d_table=3D0x0, dopager=3D1) at /usr/src/sys/ddb/db_command.c:413 >> #3 0xffffffff801c94f0 in db_command_loop () at /usr/src/sys/ddb/db_comm= and.c:466 >> #4 0xffffffff801cb0d9 in db_trap (type=3DVariable "type" is not availab= le. >> ) at /usr/src/sys/ddb/db_main.c:228 >> #5 0xffffffff80554e55 in kdb_trap (type=3D12, code=3D0, tf=3D0xffffff80= 7a047840) at /usr/src/sys/kern/subr_kdb.c:524 >> #6 0xffffffff807fae80 in trap_fatal (frame=3D0xffffff807a047840, eva=3D= Variable "eva" is not available. >> ) at /usr/src/sys/amd64/amd64/trap.c:752 >> #7 0xffffffff807fb254 in trap_pfault (frame=3D0xffffff807a047840, userm= ode=3D0) at /usr/src/sys/amd64/amd64/trap.c:673 >> #8 0xffffffff807fbc02 in trap (frame=3D0xffffff807a047840) at /usr/src/= sys/amd64/amd64/trap.c:444 >> #9 0xffffffff807df35e in calltrap () at /usr/src/sys/amd64/amd64/except= ion.S:209 >> #10 0xffffffff804c4eb8 in pfs_ioctl (va=3D0xffffff807a047a10) at /usr/sr= c/sys/fs/pseudofs/pseudofs_vnops.c:264 >> #11 0xffffffff805bb1d3 in vn_ioctl (fp=3DVariable "fp" is not available. >> ) at vnode_if.h:437 >> #12 0xffffffff80562d02 in kern_ioctl (td=3D0xffffff0006682000, fd=3D3, c= om=3D1076655123, data=3D0xffffff00ad2b7d40 "") at file.h:269 >> #13 0xffffffff80563029 in ioctl (td=3D0xffffff0006682000, uap=3D0xffffff= 807a047bf0) at /usr/src/sys/kern/sys_generic.c:571 >> #14 0xffffffff807fb4d6 in syscall (frame=3D0xffffff807a047c80) at /usr/s= rc/sys/amd64/amd64/trap.c:900 >> #15 0xffffffff807df56b in Xfast_syscall () at /usr/src/sys/amd64/amd64/e= xception.S:330 >> #16 0x0000000800c9c0ec in ?? () >> Previous frame inner to this frame (corrupt stack?) >> (kgdb) >>=20 >>=20 >> Can You help me? What can I do? Server crash periodicaly... > The issue is that VOP_IOCTL interface takes unlocked vnode, which > may be reclaimed at any moment. The right thing to do is to fix > this before 8.0 freezed KPI. Please, try the patch below. > diff --git > a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c > b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c > index a7f47b2..018e6bd 100644 > --- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c > +++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c > @@ -258,7 +258,7 @@ zfs_ioctl(vnode_t *vp, u_long com, intptr_t data, int= flag, cred_t *cred, > int *rvalp, caller_context_t *ct) > { > offset_t off; > - int error; > + int error, locked; > zfsvfs_t *zfsvfs; > znode_t *zp; > =20 > @@ -276,6 +276,8 @@ zfs_ioctl(vnode_t *vp, u_long com, intptr_t data, int= flag, cred_t *cred, > =20 > case _FIO_SEEK_DATA: > case _FIO_SEEK_HOLE: > + locked =3D VOP_ISLOCKED(vp); > + VOP_UNLOCK(vp, 0); > if (ddi_copyin((void *)data, &off, sizeof (off), flag)) > return (EFAULT); > =20 > @@ -287,10 +289,15 @@ zfs_ioctl(vnode_t *vp, u_long com, intptr_t data, i= nt flag, cred_t *cred, > /* offset parameter is in/out */ > error =3D zfs_holey(vp, com, &off); > ZFS_EXIT(zfsvfs); > - if (error) > + if (error) { > + vn_lock(vp, locked | LK_RETRY); > return (error); > - if (ddi_copyout(&off, (void *)data, sizeof (off), flag)) > + } > + if (ddi_copyout(&off, (void *)data, sizeof (off), flag)) { > + vn_lock(vp, locked | LK_RETRY); > return (EFAULT); > + } > + vn_lock(vp, locked | LK_RETRY); > return (0); > } > return (ENOTTY); > diff --git a/sys/fs/coda/coda_vnops.c b/sys/fs/coda/coda_vnops.c > index c5c6cb1..0bf84c4 100644 > --- a/sys/fs/coda/coda_vnops.c > +++ b/sys/fs/coda/coda_vnops.c > @@ -420,7 +420,7 @@ coda_ioctl(struct vop_ioctl_args *ap) > struct ucred *cred =3D ap->a_cred; > struct thread *td =3D ap->a_td; > /* locals */ > - int error; > + int error, locked; > struct vnode *tvp; > struct nameidata ndp; > struct PioctlData *iap =3D (struct PioctlData *)data; > @@ -440,6 +440,8 @@ coda_ioctl(struct vop_ioctl_args *ap) > "ctlvp"));); > return (EOPNOTSUPP); > } > + locked =3D VOP_ISLOCKED(vp); > + VOP_UNLOCK(vp, 0); > =20 > /* > * Look up the pathname. > @@ -455,7 +457,7 @@ coda_ioctl(struct vop_ioctl_args *ap) > MARK_INT_FAIL(CODA_IOCTL_STATS); > CODADEBUG(CODA_IOCTL, myprintf(("coda_ioctl error: lookup= " > "returns %d\n", error));); > - return (error); > + goto out; > } > =20 > /* > @@ -469,11 +471,13 @@ coda_ioctl(struct vop_ioctl_args *ap) > CODADEBUG(CODA_IOCTL, > myprintf(("coda_ioctl error: %s not a coda object\n", > iap->path));); > - return (EINVAL); > + error =3D EINVAL; > + goto out; > } > if (iap->vi.in_size > VC_MAXDATASIZE) { > NDFREE(&ndp, 0); > - return (EINVAL); > + error =3D EINVAL; > + goto out; > } > error =3D venus_ioctl(vtomi(tvp), &((VTOC(tvp))->c_fid), com, fla= g, > data, cred, td->td_proc); > @@ -484,6 +488,8 @@ coda_ioctl(struct vop_ioctl_args *ap) > error));); > vrele(tvp); > NDFREE(&ndp, NDF_ONLY_PNBUF); > + out: > + vn_lock(vp, locked | LK_RETRY); > return (error); > } > =20 > diff --git a/sys/fs/deadfs/dead_vnops.c b/sys/fs/deadfs/dead_vnops.c > index 7a07b38..22029a7 100644 > --- a/sys/fs/deadfs/dead_vnops.c > +++ b/sys/fs/deadfs/dead_vnops.c > @@ -180,8 +180,8 @@ dead_ioctl(ap) > struct proc *a_p; > } */ *ap; > { > - /* XXX: Doesn't this just recurse back here ? */ > - return (VOP_IOCTL_AP(ap)); > + > + return (EIO); > } > =20 > /* > diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c > index 66963bc..8d20297 100644 > --- a/sys/fs/fifofs/fifo_vnops.c > +++ b/sys/fs/fifofs/fifo_vnops.c > @@ -89,8 +89,6 @@ struct fifoinfo { > static vop_print_t fifo_print; > static vop_open_t fifo_open; > static vop_close_t fifo_close; > -static vop_ioctl_t fifo_ioctl; > -static vop_kqfilter_t fifo_kqfilter; > static vop_pathconf_t fifo_pathconf; > static vop_advlock_t fifo_advlock; > =20 > @@ -116,8 +114,8 @@ struct vop_vector fifo_specops =3D { > .vop_close =3D fifo_close, > .vop_create =3D VOP_PANIC, > .vop_getattr =3D VOP_EBADF, > - .vop_ioctl =3D fifo_ioctl, > - .vop_kqfilter =3D fifo_kqfilter, > + .vop_ioctl =3D VOP_PANIC, > + .vop_kqfilter =3D VOP_PANIC, > .vop_link =3D VOP_PANIC, > .vop_mkdir =3D VOP_PANIC, > .vop_mknod =3D VOP_PANIC, > @@ -300,42 +298,6 @@ fail1: > return (0); > } > =20 > -/* > - * Now unused vnode ioctl routine. > - */ > -/* ARGSUSED */ > -static int > -fifo_ioctl(ap) > - struct vop_ioctl_args /* { > - struct vnode *a_vp; > - u_long a_command; > - caddr_t a_data; > - int a_fflag; > - struct ucred *a_cred; > - struct thread *a_td; > - } */ *ap; > -{ > - > - printf("WARNING: fifo_ioctl called unexpectedly\n"); > - return (ENOTTY); > -} > - > -/* > - * Now unused vnode kqfilter routine. > - */ > -/* ARGSUSED */ > -static int > -fifo_kqfilter(ap) > - struct vop_kqfilter_args /* { > - struct vnode *a_vp; > - struct knote *a_kn; > - } */ *ap; > -{ > - > - printf("WARNING: fifo_kqfilter called unexpectedly\n"); > - return (EINVAL); > -} > - > static void > filt_fifordetach(struct knote *kn) > { > diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c > index 8505cac..6f5d555 100644 > --- a/sys/fs/unionfs/union_vnops.c > +++ b/sys/fs/unionfs/union_vnops.c > @@ -913,12 +913,10 @@ unionfs_ioctl(struct vop_ioctl_args *ap) > =20 > KASSERT_UNIONFS_VNODE(ap->a_vp); > =20 - vn_lock(ap->>a_vp, LK_EXCLUSIVE | LK_RETRY); > unp =3D VTOUNIONFS(ap->a_vp); > unionfs_get_node_status(unp, ap->a_td, &unsp); > ovp =3D (unsp->uns_upper_opencnt ? unp->un_uppervp : unp->un_lowe= rvp); > unionfs_tryrem_node_status(unp, unsp); > - VOP_UNLOCK(ap->a_vp, 0); > =20 > if (ovp =3D=3D NULLVP) > return (EBADF); > diff --git a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c > b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c > index 6d8d4eb..9b2c4b0 100644 > --- a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c > +++ b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c > @@ -1163,17 +1163,20 @@ _xfs_ioctl( > struct thread *a_td; > } */ *ap) > { > -/* struct vnode *vp =3D ap->a_vp; */ > + struct vnode *vp =3D ap->a_vp; > /* struct thread *p =3D ap->a_td; */ > /* struct file *fp; */ > - int error; > + int error, locked; > =20 > - xfs_vnode_t *xvp =3D VPTOXFSVP(ap->a_vp); > + xfs_vnode_t *xvp =3D VPTOXFSVP(vp); > =20 > printf("_xfs_ioctl cmd 0x%lx data %p\n",ap->a_command,ap->a_data); > =20 > + locked =3D VOP_ISLOCKED(vp); > + VOP_UNLOCK(vp, 0); > // XVOP_IOCTL(xvp,(void *)NULL,(void > *)NULL,ap->a_fflag,ap->a_command,ap->a_data,error); > error =3D > xfs_ioctl(xvp->v_bh.bh_first,NULL,NULL,ap->a_fflag,ap->a_command,ap->a_da= ta); > + vn_lock(vp, locked | LK_RETRY); > =20 > return error; > } > diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c > index 702faae..e48f81f 100644 > --- a/sys/kern/vfs_vnops.c > +++ b/sys/kern/vfs_vnops.c > @@ -817,13 +817,12 @@ vn_ioctl(fp, com, data, active_cred, td) > =20 > vfslocked =3D VFS_LOCK_GIANT(vp->v_mount); > error =3D ENOTTY; > + vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); > switch (vp->v_type) { > case VREG: > case VDIR: > if (com =3D=3D FIONREAD) { > - vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); > error =3D VOP_GETATTR(vp, &vattr, active_cred); > - VOP_UNLOCK(vp, 0); > if (!error) > *(int *)data =3D vattr.va_size - fp->f_of= fset; > } > @@ -837,6 +836,7 @@ vn_ioctl(fp, com, data, active_cred, td) > default: > break; > } > + VOP_UNLOCK(vp, 0); > VFS_UNLOCK_GIANT(vfslocked); > return (error); > } > diff --git a/sys/kern/vnode_if.src b/sys/kern/vnode_if.src > index 81c0dff..81ef11c 100644 > --- a/sys/kern/vnode_if.src > +++ b/sys/kern/vnode_if.src > @@ -209,7 +209,7 @@ vop_write { > }; > =20 > =20 > -%% ioctl vp U U U > +%% ioctl vp L L L > =20 > vop_ioctl { > IN struct vnode *vp; --=20 Regards Yura mailto:georg@dts.su From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:38:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEFB5106566C for ; Sun, 7 Jun 2009 11:38:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id C895D8FC14 for ; Sun, 7 Jun 2009 11:38:23 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57BcGWI098705; Sun, 7 Jun 2009 13:38:16 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57BcF4Y098702; Sun, 7 Jun 2009 13:38:16 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 13:38:15 +0200 (CEST) From: Wojciech Puchar To: "John ." In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 11:38:25 -0000 > Hello list, > > Can anyone please recommend to me a program that will stress-test a > disk? If it matters, two are connected by firewire, another via usb. > Filesystem is ufs. I think I have a disk that might be about to fail, > but it only sometimes errors when under stress. I need to see if it if it's about to fail then simply read it dd if=/dev/disk of=/dev/null bs=1m if it will not - disk is most probably OK. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:38:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C9A51065672 for ; Sun, 7 Jun 2009 11:38:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 62D128FC1B for ; Sun, 7 Jun 2009 11:38:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57Bcee5098712; Sun, 7 Jun 2009 13:38:40 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57BcdnC098709; Sun, 7 Jun 2009 13:38:39 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 13:38:39 +0200 (CEST) From: Wojciech Puchar To: "John ." In-Reply-To: Message-ID: References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Glen Barber , freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 11:38:47 -0000 > > That will show me thruput. I need to see if bad blocks or similar are > happening. you will - dd will fail with error that case From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 11:39:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16A2E1065673 for ; Sun, 7 Jun 2009 11:39:31 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4C5D18FC1C for ; Sun, 7 Jun 2009 11:39:29 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57BdPCW098731; Sun, 7 Jun 2009 13:39:25 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57BdPKS098728; Sun, 7 Jun 2009 13:39:25 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 13:39:24 +0200 (CEST) From: Wojciech Puchar To: Michael David Crawford In-Reply-To: <4A2B95C7.20701@prgmr.com> Message-ID: References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> <4A2B95C7.20701@prgmr.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 11:39:31 -0000 > Check the downloads section at the disk manufacturer's website. All the disk > vendors have utilities that can test their disks. by doing the same as dd of=/dev/null :) as least seagate one. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 12:20:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85A04106566B for ; Sun, 7 Jun 2009 12:20:54 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 0A52E8FC0C for ; Sun, 7 Jun 2009 12:20:53 +0000 (UTC) (envelope-from comp.john@googlemail.com) Received: by bwz9 with SMTP id 9so57746bwz.43 for ; Sun, 07 Jun 2009 05:20:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=otf1Nx6kR3HVRFuij9zNsS/ztD0W/paPwT/qaHfGaXw=; b=i3MmiwQdBQQicy1Isi/RF1Qjv4u7whWITzpd4KVvLFWFZlZI+BgY4jU28c0yWtMO3V 1w7Mg98UUfaYPjCIqjd6Caj6iZxv/32ccJMKnvppcYl7VVbcL3DGKDa94loKrMkPk8wY CRkfkzhIGJN1IapxDXPw4JNh3ItrCFo8kHVBQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=e5SzIe6xSD6PPmUH4tP7PzA+d1OPnugHHsPZpXKJGt6n6zaD/IcTTwiHrywwjU8Ao4 w3wyOs5JKl9k9r0Q1eSLylQG2Obp2Ayxa0xC99Szdlp7r27j1ztUd8Ip9YmeLjdIle/m dY7TEuGMzrb+gBf8LqTCVj2HxLL3k57vtklMw= MIME-Version: 1.0 Received: by 10.223.105.72 with SMTP id s8mr3067087fao.41.1244377252904; Sun, 07 Jun 2009 05:20:52 -0700 (PDT) In-Reply-To: References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> <4A2B95C7.20701@prgmr.com> Date: Sun, 7 Jun 2009 13:20:52 +0100 Message-ID: From: "John ." To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 12:20:54 -0000 Hi everyone 2009/6/7 Wojciech Puchar : >> Check the downloads section at the disk manufacturer's website. =A0All t= he >> disk vendors have utilities that can test their disks. > > by doing the same as dd of=3D/dev/null :) > > as least seagate one. :D okok, dd it is. I'll remove all data beforehand just in case. Thank you all for your replies. --=20 John From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 12:30:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EE231065674 for ; Sun, 7 Jun 2009 12:30:56 +0000 (UTC) (envelope-from jdbca@clix.pt) Received: from mailrly02.isp.novis.pt (mailrly02.isp.novis.pt [195.23.133.212]) by mx1.freebsd.org (Postfix) with ESMTP id 2A0C88FC1B for ; Sun, 7 Jun 2009 12:30:54 +0000 (UTC) (envelope-from jdbca@clix.pt) Received: (qmail 8448 invoked from network); 7 Jun 2009 12:30:53 -0000 Received: from unknown (HELO mailfrt13.isp.novis.pt) ([195.23.133.222]) (envelope-sender ) by mailrly02.isp.novis.pt with compressed SMTP; 7 Jun 2009 12:30:53 -0000 Received: (qmail 3177 invoked from network); 7 Jun 2009 12:30:53 -0000 Received: from unknown (HELO cigarra.isp.ip.pt) ([195.23.131.149]) (envelope-sender ) by mailfrt13.isp.novis.pt with SMTP; 7 Jun 2009 12:30:53 -0000 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable From: To: jdbca@clix.pt, Wojciech Puchar Date: Sun, 07 Jun 2009 13:30:53 +0100 Message-Id: <49020.1244377853@clix.pt> X-Mailer: 92.250.84.62 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: usb device not recognised X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 12:30:56 -0000 On S=C3=A1b Jun 6 14:42 , Wojciech Puch= ar sent: > When the TL= -C300 is plugged in after boot, it produces the following console report:-<= /span> > > umass1: on uh= ub2 > (probe0:umass-sim1:1:0:0): TEST UNIT READY= . CDB: 0 0 0 0 0 0 > (probe0:umass-sim1:1:0:0): CAM Status: SCS= I Status Error > (probe0:umass-sim1:1:0:0): SCSI Status: Ch= eck Condition > (probe0:umass-sim1:1:0:0): NOT READY asc:3= a,0 > (probe0:umass-sim1:1:0:0): Medium not pres= ent > (probe0:umass-sim1:1:0:0): Unretryable err= or > da0 at umass-sim1 bus 1 target 0 lun 0 > da0: Removable Direct Access SCSI-0 device > da0: 40.000MB/s transfers > da0: 1900MB (3892224 512 byte sectors: 255= H 63S/T 242C) > doesn't look like too big blocksize problem... > but fails to create /dev/da0. Also, when i= t is plugged in, no other usb devices are recognised. > > Unplugging produces this:- > > umass1: at uhub2 port 2 (addr 2) disconnec= ted > (da0:umass-sim1:1:0:0): Synchronize cache = failed, status =3D=3D 0x39, scsi status =3D=3D 0x0 > (da0:umass-sim1:1:0:0): lost device= > (da0:umass-sim1:1:0:0): removing device en= try > umass1: detached If it's "Synchronize cache failed" problem, then adding entry in umass.c will fix it, as with my olympus FE-20 But it's rather not main problem. maybe some other quirk? look at possible quirks Many thanks for putting me on the right track. I played around with the quirks and found that it needs both these to creat= e the device and make it mountable:- NO_TEST_UNIT_READY | NO_SYNCHRONIZE_CACHE Works fine now Thanks _________________________________________________________________ =C3=81rea de Clientes Clix =E2=80=93 Toda a gest=C3=A3o dos seus servi=C3= =A7os online! http://cliente.clix.pt/.=20= From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 14:11:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20414106564A for ; Sun, 7 Jun 2009 14:11:52 +0000 (UTC) (envelope-from nvass9573@gmx.com) Received: from mail.gmx.com (unknown [213.165.64.42]) by mx1.freebsd.org (Postfix) with SMTP id 68E748FC0A for ; Sun, 7 Jun 2009 14:11:51 +0000 (UTC) (envelope-from nvass9573@gmx.com) Received: (qmail invoked by alias); 07 Jun 2009 14:11:49 -0000 Received: from unknown (EHLO [192.168.254.1]) [91.140.104.119] by mail.gmx.com (mp-eu005) with SMTP; 07 Jun 2009 16:11:49 +0200 X-Authenticated: #46156728 X-Provags-ID: V01U2FsdGVkX19cjxhQiJpcs0gOiWpj9xgtK+C1scMBPhZgB6wurz XCONLb68qQ9u0A Message-ID: <4A2BCA42.7090204@gmx.com> Date: Sun, 07 Jun 2009 17:10:10 +0300 From: Nikos Vassiliadis User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.63 Cc: freebsd-questions@freebsd.org Subject: Re: Set Terminal "title" in xfce to pwd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 14:11:52 -0000 Daniel Underwood wrote: > How can I change the Terminal title (the title shown on open instances > of Terminal on the panel in xfce) to display *only* the present > working directory. Currently they all show "Terminal - daniel@bsdbox: > ~", for example. That's shell dependent. You can change an xterm's title by printing a specific character sequence. For example: printf '\033]0;%s\007' 'The title goes here' Then you have to alter the string - to include your working directory - every time you change a line. Check the following page for your shell: http://www.faqs.org/docs/Linux-mini/Xterm-Title.html HTH, Nikos From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 14:59:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E4AD2106566B for ; Sun, 7 Jun 2009 14:59:49 +0000 (UTC) (envelope-from jdbca@clix.pt) Received: from mailrly04.isp.novis.pt (mailrly04.isp.novis.pt [195.23.133.224]) by mx1.freebsd.org (Postfix) with ESMTP id 7FED08FC1B for ; Sun, 7 Jun 2009 14:59:49 +0000 (UTC) (envelope-from jdbca@clix.pt) Received: (qmail 6934 invoked from network); 7 Jun 2009 14:59:47 -0000 Received: from unknown (HELO mailfrt02.isp.novis.pt) ([195.23.133.194]) (envelope-sender ) by mailrly04.isp.novis.pt with compressed SMTP; 7 Jun 2009 14:59:47 -0000 Received: (qmail 18797 invoked from network); 7 Jun 2009 14:59:47 -0000 Received: from unknown (HELO cigarra.isp.ip.pt) ([195.23.131.145]) (envelope-sender ) by mailfrt02.isp.novis.pt with SMTP; 7 Jun 2009 14:59:47 -0000 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable From: To: freebsd-questions@freebsd.org Date: Sun, 07 Jun 2009 15:59:47 +0100 Message-Id: <57756.1244386787@clix.pt> X-Mailer: 89.214.138.2 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: No shutdown & reboot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 14:59:50 -0000 I am running FreeBSD 7.2 - stable and update regularly. Following a recent update, I am now unable to shutdown or reboot my compute= r using "reboot", "shutdown -r now", "halt -p" or "shutdown -p now". This has always worked before. Instead of shutting down or rebooting, the computer appears to halt, and st= ops with the "uptime" message. There are no error messages. Cheers DuncanB _________________________________________________________________ =C3=81rea de Clientes Clix =E2=80=93 Toda a gest=C3=A3o dos seus servi=C3= =A7os online! http://cliente.clix.pt/.=20= From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 15:26:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F424106566C for ; Sun, 7 Jun 2009 15:26:11 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 6D4AE8FC08 for ; Sun, 7 Jun 2009 15:26:10 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57FPsDZ099355; Sun, 7 Jun 2009 17:25:54 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57FPq3u099352; Sun, 7 Jun 2009 17:25:54 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 17:25:52 +0200 (CEST) From: Wojciech Puchar To: jdbca@clix.pt In-Reply-To: <49020.1244377853@clix.pt> Message-ID: References: <49020.1244377853@clix.pt> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: usb device not recognised X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 15:26:11 -0000 > > I played around with the quirks and found that it needs both these to create the > device and make it mountable:- > NO_TEST_UNIT_READY | NO_SYNCHRONIZE_CACHE > > Works fine now > please make patch with diff -u diff -u usbdevs.orig usbdevs >/tmp/patch.txt diff -u umass.c.orig umass.c >>/tmp/patch.txt and do sent-pr (by sent-pr program or FreeBSD webpage), describe a problem and attach /tmp/patch.txt so maintainers can put this in FreeBSD sources. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 15:27:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B088A10656C1 for ; Sun, 7 Jun 2009 15:27:08 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D61B08FC15 for ; Sun, 7 Jun 2009 15:27:07 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57FR26E099370; Sun, 7 Jun 2009 17:27:02 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57FR2pg099367; Sun, 7 Jun 2009 17:27:02 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 17:27:02 +0200 (CEST) From: Wojciech Puchar To: "John ." In-Reply-To: Message-ID: References: <4ad871310906070300g5aa63988m370e6362829b2f28@mail.gmail.com> <4ad871310906070307o212f0a93x8e77faba1cebf97c@mail.gmail.com> <4A2B95C7.20701@prgmr.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 15:27:09 -0000 > :D > > okok, dd it is. I'll remove all data beforehand just in case. Thank > you all for your replies. > -- you may "cure" badblocks by dd if=/dev/zero of=/dev/disk bs=1m (but cleaning all data) Disk will try to remap badblocks then. But remember that it only make it's life a bit longer. this disk will fail again. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 16:28:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE080106566C for ; Sun, 7 Jun 2009 16:28:18 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from rosebud.otenet.gr (rosebud.otenet.gr [83.235.67.32]) by mx1.freebsd.org (Postfix) with ESMTP id 61B0E8FC13 for ; Sun, 7 Jun 2009 16:28:17 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493006.home.otenet.gr [94.71.90.214]) by rosebud.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n57GSFi6016076; Sun, 7 Jun 2009 19:28:16 +0300 Message-ID: <4A2BEA9F.2040009@otenet.gr> Date: Sun, 07 Jun 2009 19:28:15 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Luke Dean References: <4A2A1A30.30000@otenet.gr> In-Reply-To: <4A2A1A30.30000@otenet.gr> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 16:28:19 -0000 Manolis Kiagias wrote: > Luke Dean wrote: > >> This is an answer to a question I started to post, but then decided to >> research instead. I know many readers of this list use the feature I'm >> describing. >> >> When Xorg was upgraded to version 7.4, the historic ability to shut >> down X >> with Control+Alt+Backspace became a non-default option. The solution to >> re-enabling this behavior was to add >> Option "DontZap" "off" >> to the ServerLayout or ServerFlags section of xorg.conf as documented in >> a note in the Handbook >> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html >> >> A few days ago, x11/xkeyboard-config was upgraded to 1.6 and the solution >> in the Handbook is no longer sufficient. >> >> The new solution that gets Control+Alt+Backspace working for me >> again is to add >> Option "XKbOptions" "terminate:ctrl_alt_bksp" >> to the "InputDevice" section of xorg.conf. >> >> > > Thanks for mentioning this. I have not yet upgraded to the new version > of xkeyboard-config, but will try this and update the Handbook accordingly. > > This gets even more complicated - the setting in xorg.conf will only be effective when "AutoAddDevices" is false (or "AllowEmptyInput" is false). On systems that totally rely on HAL for device detection, the setting has to be moved to an XML file like this: kbd pc105 us xorg terminate:ctrl_alt_bksp which should be named i.e. keyboard.fdi and placed in /usr/local/etc/hal/fdi/policy In light of the above, I feel we probably need to add a section on "Configuring Additional Options Using HAL" to the Handbook. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 16:45:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 38E951065670 for ; Sun, 7 Jun 2009 16:45:25 +0000 (UTC) (envelope-from redtick@sbcglobal.net) Received: from web81206.mail.mud.yahoo.com (web81206.mail.mud.yahoo.com [68.142.199.110]) by mx1.freebsd.org (Postfix) with SMTP id EC65E8FC17 for ; Sun, 7 Jun 2009 16:45:24 +0000 (UTC) (envelope-from redtick@sbcglobal.net) Received: (qmail 40176 invoked by uid 60001); 7 Jun 2009 16:45:24 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sbcglobal.net; s=s1024; t=1244393124; bh=kLJT/jW0cBjBo4Z2d9ObvXd4Tf6Mc33sCutWsTA1Zmk=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding; b=fU3+mvwPhvWBN2oXM7ucrJ3/qNiqgkuKH41ZSpZfh436XSJBpmrNPvXqxyETIrH0jeO81AsCIYuplN1mJRLH0OOwwSa4joqKmlvYWZ1RPB1mOkvYlBH9Qar0dchLLnrDqyBlE4OJKe/JX5vl2038MWk/VQqyOAiEiiZu0Qx/EpU= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding; b=o+0VGj5awJDvImdPK5XlKmoPBmpalIjVBjDQdaRW5C+T9w6kWnC6ygb7V6P6yJGMOmGOE/ma0dGj5goSefJvXCQEIkCiK6I7U+ur7XZ/H3OHcGgaTrIU6kA7XvHorok/CuYt2bxlgqbZe6k0ddYmGJoCY7VknZlx4yVNv2DdTLg=; Message-ID: <273384.34545.qm@web81206.mail.mud.yahoo.com> X-YMail-OSG: BD8lCywVM1kEuFL3hp4lVhsMUn.A5Sk00rHB0By2SyH89sBXVsQ_1q6UiSZjTaOikyp1DlJdXjhvjihjCLscdVxQZpwmloDEGEMMduuGtRYyUzp1A.hQIQgmwCo72dvMdnNJqs_eXzrFiIxMBYPwwAMuGhYnpVrRVyWWM2KGBJOw3OTV2kxZXwAqQVcrmbeR3oFRD5RV2PCQMPPpZgSuoDynL_GCzcBjdkpvm4fo7JRGV2zn1_R3lze1wN3C_4n8ojWc6AsXLZEbgGRWil3TWK3otGEufHVEz7RaFBoCjADUNkXThVJ7.wCsapoD.rPr9fMi6mLC5TeIHAYEeJ6D8cpNQjZhLxcHtiJdUMNy4w-- Received: from [68.91.130.192] by web81206.mail.mud.yahoo.com via HTTP; Sun, 07 Jun 2009 09:45:23 PDT X-Mailer: YahooMailClassic/5.3.9 YahooMailWebService/0.7.289.10 Date: Sun, 7 Jun 2009 09:45:23 -0700 (PDT) From: Mark Busby To: dave.mehler@gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: help help Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 16:45:25 -0000 --- On Sun, 6/7/09, Dave wrote: > From: Dave > Subject: Samba3 domain controller howto? > To: freebsd-questions@freebsd.org > Date: Sunday, June 7, 2009, 6:28 AM > Hello, > =A0=A0=A0 I've found a lot of this for LInux, but > am looking for something > FreeBSD specific. I'm wanting to set up a FreeBSD 7.2 > machine, samba3, > dynamic dhcp and dns, to act as a domain controller. Has > anyone done this > and do you have some notes or a howto? > Thanks. > Dave. The samba howto's on the samba website cover this very well, the only step = I can think of that is a bit diff on freebsd, is adding the $ to the machin= e account but it's stated on the website. Dhcp is covered in the handbook on the freebsd website. >=20 > _______________________________________________ > freebsd-questions@freebsd.org > mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 17:20:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A81B8106564A for ; Sun, 7 Jun 2009 17:20:31 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id 762D78FC18 for ; Sun, 7 Jun 2009 17:20:31 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: by pzk33 with SMTP id 33so2304276pzk.3 for ; Sun, 07 Jun 2009 10:20:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=xb+dilE0ltbs0XIYha14iuzHe3+sqk34IGRC9gbFMxY=; b=oYJqMYLHXZwoIiqRfK1VmqfsujXczd3vEs/kNWTVV716kXCj5+q3tQi14O6j0TIWnA qdkB2CdwSRg9ZteGUGKURlXvagWgGTAwIefRhfxC+G88HzdYyUI02wU4KFD4I5hZLfPL g7PRA8q26Bx6PGIBuCVpfRxOTxhAcN7VGJkm4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=anQ/pERWWC+I0aeZyzR6kRdqo5r/p/8LF+QCq+FAmWbzdHRGDqOYuBh3HwPfgetfr9 PajTmfTH5lx2o6Ap2tNGMOxenRTW2XxXxVdzZxDiDCIhNx8WJiL00Kng6TOTsEVWW6gb yvr7E3zhJ4JC8Wz15xnE3hOsKct9Bby42JK9k= Received: by 10.142.186.15 with SMTP id j15mr2116853wff.48.1244393706281; Sun, 07 Jun 2009 09:55:06 -0700 (PDT) Received: from dev.null (63-12-66-208.dsl.cust.wirelessbeehive.com [208.66.12.63]) by mx.google.com with ESMTPS id 20sm6608216wfi.0.2009.06.07.09.55.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 09:55:05 -0700 (PDT) Received: by dev.null (Postfix, from userid 1001) id 567E277; Sun, 7 Jun 2009 10:55:04 -0600 (MDT) Date: Sun, 7 Jun 2009 10:55:04 -0600 From: Geoff Fritz To: "John ." Message-ID: <20090607165504.GA67823@dev.null> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 17:20:31 -0000 On Sun, Jun 07, 2009 at 10:43:40AM +0100, John . wrote: > Hello list, > > Can anyone please recommend to me a program that will stress-test a > disk? If it matters, two are connected by firewire, another via usb. > Filesystem is ufs. I think I have a disk that might be about to fail, > but it only sometimes errors when under stress. I need to see if it > was a fluke or to really make it fail, so that I can get rid of it. I believe that the "badblocks" util is what you're looking for. It can be found in the sysutils/e2fsprogs port. It has both destructive and non-destructive modes. I've used it on Linux and FreeBSD, and it can really exercise the disk well. I've seen several mentions of "dd" in this thread, and I'll say that I've seen several recommendations elsewhere to use a simple: dd if=/dev/ of=/dev/ to "refresh" the drive. That is, dd will read the block(s), then attempt to write them back, and if there are problems, the drive should re-map the sector to one without problems. Though the dd_rescue/ddrescue/dd-rescue ports are more tolerant of errors than the stock dd util. Personally, I'd recommend badblocks before trying anything else. -- Geoff From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 17:48:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF869106566B for ; Sun, 7 Jun 2009 17:48:34 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id ACAB28FC18 for ; Sun, 7 Jun 2009 17:48:33 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57HmRor099905; Sun, 7 Jun 2009 19:48:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57HmOnn099902; Sun, 7 Jun 2009 19:48:24 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 19:48:23 +0200 (CEST) From: Wojciech Puchar To: Manolis Kiagias In-Reply-To: <4A2BEA9F.2040009@otenet.gr> Message-ID: References: <4A2A1A30.30000@otenet.gr> <4A2BEA9F.2040009@otenet.gr> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Luke Dean Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 17:48:35 -0000 can older Xorg server be used with just updated drivers? drivers are separate modules. On Sun, 7 Jun 2009, Manolis Kiagias wrote: > Manolis Kiagias wrote: >> Luke Dean wrote: >> >>> This is an answer to a question I started to post, but then decided to >>> research instead. I know many readers of this list use the feature I'm >>> describing. >>> >>> When Xorg was upgraded to version 7.4, the historic ability to shut >>> down X >>> with Control+Alt+Backspace became a non-default option. The solution to >>> re-enabling this behavior was to add >>> Option "DontZap" "off" >>> to the ServerLayout or ServerFlags section of xorg.conf as documented in >>> a note in the Handbook >>> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html >>> >>> A few days ago, x11/xkeyboard-config was upgraded to 1.6 and the solution >>> in the Handbook is no longer sufficient. >>> >>> The new solution that gets Control+Alt+Backspace working for me >>> again is to add >>> Option "XKbOptions" "terminate:ctrl_alt_bksp" >>> to the "InputDevice" section of xorg.conf. >>> >>> >> >> Thanks for mentioning this. I have not yet upgraded to the new version >> of xkeyboard-config, but will try this and update the Handbook accordingly. >> >> > > This gets even more complicated - the setting in xorg.conf will only be > effective when "AutoAddDevices" is false (or "AllowEmptyInput" is > false). On systems that totally rely on HAL for device detection, the > setting has to be moved to an XML file like this: > > > > > > kbd > pc105 > us > xorg > type="string">terminate:ctrl_alt_bksp > > > > > which should be named i.e. keyboard.fdi and placed in > /usr/local/etc/hal/fdi/policy > > In light of the above, I feel we probably need to add a section on > "Configuring Additional Options Using HAL" to the Handbook. > > _______________________________________________ > 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 7 17:49:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA863106568E for ; Sun, 7 Jun 2009 17:49:50 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D90A78FC1F for ; Sun, 7 Jun 2009 17:49:49 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57HnhS4099918; Sun, 7 Jun 2009 19:49:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57HnfC8099915; Sun, 7 Jun 2009 19:49:42 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 19:49:41 +0200 (CEST) From: Wojciech Puchar To: Geoff Fritz In-Reply-To: <20090607165504.GA67823@dev.null> Message-ID: References: <20090607165504.GA67823@dev.null> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: "John ." , freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 17:49:50 -0000 > > I've seen several mentions of "dd" in this thread, and I'll say that I've > seen several recommendations elsewhere to use a simple: > > dd if=/dev/ of=/dev/ forgot bs=1m or at least 64kB, unless you like to wait days with default bs=512 > > to "refresh" the drive. That is, dd will read the block(s), then attempt to > write them back, and if there are problems, the drive should re-map the sector add conv=noerror,osync From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 18:03:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60405106566B for ; Sun, 7 Jun 2009 18:03:04 +0000 (UTC) (envelope-from LukeD@pobox.com) Received: from sasl.smtp.pobox.com (a-sasl-fastnet.sasl.smtp.pobox.com [207.106.133.19]) by mx1.freebsd.org (Postfix) with ESMTP id 30A758FC13 for ; Sun, 7 Jun 2009 18:03:03 +0000 (UTC) (envelope-from LukeD@pobox.com) Received: from localhost.localdomain (unknown [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id D78B0B9E90; Sun, 7 Jun 2009 14:03:02 -0400 (EDT) Received: from lukas.is-a-geek.org (unknown [71.112.210.71]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTPSA id D2B4FB9E8D; Sun, 7 Jun 2009 14:03:00 -0400 (EDT) Date: Sun, 7 Jun 2009 11:02:56 -0700 (PDT) From: Luke Dean X-X-Sender: lukas@border.lukas.is-a-geek.org To: Manolis Kiagias In-Reply-To: <4A2BEA9F.2040009@otenet.gr> Message-ID: References: <4A2A1A30.30000@otenet.gr> <4A2BEA9F.2040009@otenet.gr> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Pobox-Relay-ID: 719059DE-538D-11DE-BE75-97731A10BFE7-96347044!a-sasl-fastnet.pobox.com Cc: freebsd-questions@freebsd.org Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Luke Dean List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 18:03:04 -0000 On Sun, 7 Jun 2009, Manolis Kiagias wrote: > Manolis Kiagias wrote: >> Luke Dean wrote: >> >>> This is an answer to a question I started to post, but then decided to >>> research instead. I know many readers of this list use the feature I'm >>> describing. >>> >>> When Xorg was upgraded to version 7.4, the historic ability to shut >>> down X >>> with Control+Alt+Backspace became a non-default option. The solution to >>> re-enabling this behavior was to add >>> Option "DontZap" "off" >>> to the ServerLayout or ServerFlags section of xorg.conf as documented in >>> a note in the Handbook >>> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html >>> >>> A few days ago, x11/xkeyboard-config was upgraded to 1.6 and the solution >>> in the Handbook is no longer sufficient. >>> >>> The new solution that gets Control+Alt+Backspace working for me >>> again is to add >>> Option "XKbOptions" "terminate:ctrl_alt_bksp" >>> to the "InputDevice" section of xorg.conf. >>> >>> >> >> Thanks for mentioning this. I have not yet upgraded to the new version >> of xkeyboard-config, but will try this and update the Handbook accordingly. >> >> > > This gets even more complicated - the setting in xorg.conf will only be > effective when "AutoAddDevices" is false (or "AllowEmptyInput" is > false). On systems that totally rely on HAL for device detection, the > setting has to be moved to an XML file like this: > > > > > > kbd > pc105 > us > xorg > type="string">terminate:ctrl_alt_bksp > > > > > which should be named i.e. keyboard.fdi and placed in > /usr/local/etc/hal/fdi/policy > > In light of the above, I feel we probably need to add a section on > "Configuring Additional Options Using HAL" to the Handbook. Oh, okay. I'm not running HAL and I do have "AllowEmptyInput" and "AutoAddDevices" off, so just modifying the xorg.conf was enough for me. So far I've avoided HAL because it seems complicated and scary, and I don't know what the benefits of using it would be aside from some automounting tricks that I can live without. It does seem to be the wave of the future however, so any documentation that might help ease me into that transition would be appreciated. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 18:30:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 898CD106566B for ; Sun, 7 Jun 2009 18:30:28 +0000 (UTC) (envelope-from faust64@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.152]) by mx1.freebsd.org (Postfix) with ESMTP id DA4798FC1D for ; Sun, 7 Jun 2009 18:30:27 +0000 (UTC) (envelope-from faust64@gmail.com) Received: by fg-out-1718.google.com with SMTP id 22so894012fge.12 for ; Sun, 07 Jun 2009 11:30:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=TeAWYEIt+5XBd/fm44f+HwNr2ChyR70LT4B081MWu64=; b=RwqZrAA8POteHsrlQYnA1PRxmD+mBHW93fV3OFQAvnqlPe0+caXWljfycro0IXOKP5 Crp/Ze4pY4eW/YfCWjLIHuJkdcV2S2SIN/GU2WZqVGhUJW22fO+HdRRtq18eG47ONQBT kppVqDDt8KWyNN5iY8+00RPlDlMdmJnFyhbeg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=eHkK7N0/hHrUpKtkf6zIz+95ohIhWgsFrwWVpoD4EZ7BkMm1rWSvZRZv7BvVF1+gId SpNTJNP9t/eR4YB5OeyJP8Y5Sz7UJUmYBAO/+4y5SFyxgY3TfUrjJGLnatErrKZNmqRA VBaJ/s+iVChBiGdlbSfhcJzDOqhJMvRsWCMuU= MIME-Version: 1.0 Received: by 10.86.59.18 with SMTP id h18mr6204037fga.71.1244397558069; Sun, 07 Jun 2009 10:59:18 -0700 (PDT) In-Reply-To: References: <4A2A1A30.30000@otenet.gr> <4A2BEA9F.2040009@otenet.gr> From: =?ISO-8859-1?Q?Samuel_Mart=EDn_Moro?= Date: Sun, 7 Jun 2009 19:58:58 +0200 Message-ID: To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Manolis Kiagias , freebsd-questions@freebsd.org, Luke Dean Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 18:30:28 -0000 it may, dealing with portupgrade/portdowngrade but setting AllowEmptyInput (ServerLayout) works. hal is'nt well documented... it'ld be a good idea to explain its configuration in the handbook Samuel Mart=EDn Moro CamTrace {EPITECH.} tek3 On Sun, Jun 7, 2009 at 7:48 PM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > can older Xorg server be used with just updated drivers? > drivers are separate modules. > > > On Sun, 7 Jun 2009, Manolis Kiagias wrote: > > Manolis Kiagias wrote: >> >>> Luke Dean wrote: >>> >>> This is an answer to a question I started to post, but then decided to >>>> research instead. I know many readers of this list use the feature I'= m >>>> describing. >>>> >>>> When Xorg was upgraded to version 7.4, the historic ability to shut >>>> down X >>>> with Control+Alt+Backspace became a non-default option. The solution = to >>>> re-enabling this behavior was to add >>>> Option "DontZap" "off" >>>> to the ServerLayout or ServerFlags section of xorg.conf as documented = in >>>> a note in the Handbook >>>> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.htm= l >>>> >>>> A few days ago, x11/xkeyboard-config was upgraded to 1.6 and the >>>> solution >>>> in the Handbook is no longer sufficient. >>>> >>>> The new solution that gets Control+Alt+Backspace working for me >>>> again is to add >>>> Option "XKbOptions" "terminate:ctrl_alt_bksp" >>>> to the "InputDevice" section of xorg.conf. >>>> >>>> >>>> >>> Thanks for mentioning this. I have not yet upgraded to the new version >>> of xkeyboard-config, but will try this and update the Handbook >>> accordingly. >>> >>> >>> >> This gets even more complicated - the setting in xorg.conf will only be >> effective when "AutoAddDevices" is false (or "AllowEmptyInput" is >> false). On systems that totally rely on HAL for device detection, the >> setting has to be moved to an XML file like this: >> >> >> >> >> >> kbd >> pc105 >> us >> xorg >> > type=3D"string">terminate:ctrl_alt_bksp >> >> >> >> >> which should be named i.e. keyboard.fdi and placed in >> /usr/local/etc/hal/fdi/policy >> >> In light of the above, I feel we probably need to add a section on >> "Configuring Additional Options Using HAL" to the Handbook. >> >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to " >> freebsd-questions-unsubscribe@freebsd.org" >> >> >> _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 18:30:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE1BA106566C for ; Sun, 7 Jun 2009 18:30:28 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 64DEF8FC1E for ; Sun, 7 Jun 2009 18:30:27 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: by ewy8 with SMTP id 8so3524545ewy.43 for ; Sun, 07 Jun 2009 11:30:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=KTwJpSj4SO8P75Gs/jkaEE1ozuvX+9CFXwjfJ/V9EWA=; b=mcrxO9KLuZtQiBiXMR+V8F9MiWd7zT5UQg7IrTRDWMEO0aEm7t3kHy/mIXqdAReKoZ Xf9kgrSKSjyDyqQqj4ho89EvkVrZheJ/0p2HFB+P3bAgs3Zi3Wx5hsQ6dL23NTIy2adS VHpr44p2LKpp1CWXIn58UXflxHJYSWkmWhPpM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=rSBA+JuDbyoRxcQZsG/0xS/IzdMaDrJASQt9aoy0zwRY4RVrMNaJWpthFOEp8zMevC o00mnxHNJEp1DLJswT+WSKsUKkoqOOcVpPefogEJWcqWntHTNGbGtACQaRKkpJjAZXZz qAMmqMGsovW2iqhNGRy6aWwNRsYTwzxsPVROQ= MIME-Version: 1.0 Received: by 10.216.28.209 with SMTP id g59mr1967131wea.96.1244399427071; Sun, 07 Jun 2009 11:30:27 -0700 (PDT) Date: Sun, 7 Jun 2009 20:30:26 +0200 Message-ID: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> From: claudiu vasadi To: freebsd-questions@freebsd.org, freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: IBM TSM 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: Sun, 07 Jun 2009 18:30:29 -0000 Hello again. About a week ago I cryed on your shoulders but since no one is answering I am crying again. This time with more accurate data. My sistem is a P4 2.66 Mhz (sk 478) Intel P4 processor with 1 GB DDR1 ram, mobo Asus p4p800-x with 2 HDD's. One of them (ad2 ) is a Samsing SpinPoint of 80GB ATA and is the one used by the actual OS. The second one (ad6) is a WD 250 GB S-ATA2 and has some data on it. The server acts as a web server, ftp server, NAS, samba svr, a p2p server (verlihub) and just about every normal app a mental deranged person can have running :P (those kind that dnt have money to buy the ultra ultimate bullshit in hardware or more than two 2 pc's. Leaving this asside here is my situation. Ups, almost forgot. I have a FreeBSD-7.0-STABLE. I have a Windows machine with vmware and solaris on it. In solaris there is a IBM TSM (Tape Storage Management) Server. The server can use disks over tapes to build pools. So I added the local windows disks, and have some 30 G of free space on freebsd, so I thought, I would add them to the storage pool. There's my mistake ... thinking :P Every time I try to add that space to the storage pool the system crashes with a kernel panic. Here is the /var/log/messages file Jun 7 21:03:45 da1 fsck: /dev/ad6s1d: INCORRECT BLOCK COUNT I=5652481 (0 should be 4) (CORRECTED) Jun 7 21:03:45 da1 fsck: /dev/ad6s1d: 16137 files, 45577224 used, 15357050 free (2210 frags, 1919355 blocks, 0.0% fragmentation) Jun 7 21:10:47 da1 syslogd: kernel boot file is /boot/kernel/kernel Jun 7 21:10:47 da1 kernel: ad6: FAILURE - device detached Jun 7 21:10:47 da1 kernel: subdisk6: detached Jun 7 21:10:47 da1 kernel: ad6: detached Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86540058624, length=16384)]error = 6 Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1e[READ(offset=63203147776, length=16384)]error = 6 Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86539010048, length=16384)]error = 6 [...] [...] [...] Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=46438858752, length=16384)]error = 6 Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=46252277760, length=16384)]error = 6 Jun 7 21:10:47 da1 kernel: panic: vinvalbuf: dirty bufs Jun 7 21:10:47 da1 kernel: cpuid = 0 Jun 7 21:10:47 da1 kernel: Uptime: 21m50s Jun 7 21:10:47 da1 kernel: Physical memory: 1011 MB So I'm guesing the script that adds the space to the pool is doing some crap. I tryed using both HDD's but the result is the same -> sistem crash. I have no kernel dump file defined yet (dnt ask why, I've setted up long ago but for some reason this time it didn't write to it) . REPRODUCE: The only way to reproduce the problem is by telling tsm server to add the available 30G off free space. What the tsm server doesm, is it creates a file of a given size, in this case 25G out of the total of 30G, and then populates the file with whatever data it is given as backup data. I really have no ideea if this is the right mailing list for this matter. If it is not, please advise in this matter. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 18:57:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 111AF106566C for ; Sun, 7 Jun 2009 18:57:05 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by mx1.freebsd.org (Postfix) with ESMTP id D02AF8FC16 for ; Sun, 7 Jun 2009 18:57:04 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so979486wfg.7 for ; Sun, 07 Jun 2009 11:57:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=6DjRHDKXr1HDXWqs+7k1XJBKXQQgbgJkyMM0/rVBPPo=; b=nHO8Chp35hfPT22UUxEyzVhUZMO6Nyzkd0oxkFH72jVNvOjCQXMnjbO37z1HBfvxWa kCKBVUY3zmzp6UmvzA6mS6yzCiOKB/aYAMLWXyCtToAM8byRjYKOn2oi612vnetypd+4 PrhT733LRFy7SDutYEF6m9ve2TMHfNSdXL4M8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=LrbC77WS9FBwYUNBYIpT2GPzawd32pnZHSlw+ErUUyJkt3vh9jqzq2xTeXai11GU4V Ie6pgl0O+6BOOx7uJzVcH92zz5VwiP9/s8nSlSj3UFfFBmW4QW3vP0eOtRLoIRIMGma4 DITPvD/o/vfiEKEqHgFzyd83pS8Eozgx4wDss= Received: by 10.143.42.6 with SMTP id u6mr1919082wfj.149.1244401024585; Sun, 07 Jun 2009 11:57:04 -0700 (PDT) Received: from dev.null (63-12-66-208.dsl.cust.wirelessbeehive.com [208.66.12.63]) by mx.google.com with ESMTPS id 30sm6810208wfa.35.2009.06.07.11.57.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 11:57:04 -0700 (PDT) Received: by dev.null (Postfix, from userid 1001) id 9115741; Sun, 7 Jun 2009 12:57:02 -0600 (MDT) Date: Sun, 7 Jun 2009 12:57:02 -0600 From: Geoff Fritz To: Wojciech Puchar Message-ID: <20090607185702.GA28486@dev.null> References: <20090607165504.GA67823@dev.null> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) Cc: "John ." , Geoff Fritz , freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 18:57:05 -0000 On Sun, Jun 07, 2009 at 07:49:41PM +0200, Wojciech Puchar wrote: > > > > I've seen several mentions of "dd" in this thread, and I'll say that I've > > seen several recommendations elsewhere to use a simple: > > > > dd if=/dev/ of=/dev/ > > forgot bs=1m or at least 64kB, unless you like to wait days with default > bs=512 Such things should be understood, more or less. I didn't want to confuse the issue with extra options. But you are correct. These options will greatly speed up the process for dd. It's not like the badblocks command is particularly speedy, either. I imagine that *any* thorough drive test would take a long while given today's typical drive size. -- Geoff From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 19:02:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B86C4106566B for ; Sun, 7 Jun 2009 19:02:13 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from rosebud.otenet.gr (rosebud.otenet.gr [83.235.67.32]) by mx1.freebsd.org (Postfix) with ESMTP id 1F3618FC15 for ; Sun, 7 Jun 2009 19:02:12 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493006.home.otenet.gr [94.71.90.214]) by rosebud.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n57J2AmS026316; Sun, 7 Jun 2009 22:02:11 +0300 Message-ID: <4A2C0EB2.4080001@otenet.gr> Date: Sun, 07 Jun 2009 22:02:10 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Wojciech Puchar References: <4A2A1A30.30000@otenet.gr> <4A2BEA9F.2040009@otenet.gr> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, Luke Dean Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 19:02:14 -0000 Wojciech Puchar wrote: > can older Xorg server be used with just updated drivers? > drivers are separate modules. > Never tried, but the way Xorg is going this looks kind of frightening ;) From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 19:18:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 968BF10656A4 for ; Sun, 7 Jun 2009 19:18:32 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 4E4048FC24 for ; Sun, 7 Jun 2009 19:18:32 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qyk3 with SMTP id 3so3666397qyk.3 for ; Sun, 07 Jun 2009 12:18:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=oXydD5UfUaF4GwAZIkpPpf0T+DmGFImDVdADl8X92YA=; b=VnEEWZ9yuqkrxVx/ZOi1lJ7RDi6cl0eGvXm1sRMM9/z2OHts+ys4pjjMhKSf9FPmAi 9XNMiyh9ZvZqtlwmPABnIBcCrjV5CxAqG292Qphkw5pjmaqz4TEtl5uoRdBorkHELpqU VVrb8tH2kJFKzfDXUcWyG98PVN20QebKpI/38= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=m1jIBsN0h2NBgTAdscTxqPheH/EL2fpVrQ/wDf3qGWyFCnezDXZZ/X/6K5bXL3QUh6 J3VaOrYzgg0+v8N9PHVFggq1wfD+dqmwbrOYxoAY8KQxyP3q7dDs4zaCKkwrnAjSskt+ Mic/C308pBvxmGceyMN3SmhmZOD73ix2BqcbI= MIME-Version: 1.0 Received: by 10.220.71.10 with SMTP id f10mr3251248vcj.13.1244402311618; Sun, 07 Jun 2009 12:18:31 -0700 (PDT) In-Reply-To: <273384.34545.qm@web81206.mail.mud.yahoo.com> References: <273384.34545.qm@web81206.mail.mud.yahoo.com> Date: Sun, 7 Jun 2009 13:18:31 -0600 Message-ID: From: Tim Judd To: Mark Busby Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 19:18:33 -0000 On 6/7/09, Mark Busby wrote: > > > > --- On Sun, 6/7/09, Dave wrote: > >> From: Dave >> Subject: Samba3 domain controller howto? >> To: freebsd-questions@freebsd.org >> Date: Sunday, June 7, 2009, 6:28 AM >> Hello, >> I've found a lot of this for LInux, but >> am looking for something >> FreeBSD specific. I'm wanting to set up a FreeBSD 7.2 >> machine, samba3, >> dynamic dhcp and dns, to act as a domain controller. Has >> anyone done this >> and do you have some notes or a howto? >> Thanks. >> Dave. > > > The samba howto's on the samba website cover this very well, the only step I > can think of that is a bit diff on freebsd, is adding the $ to the machine > account but it's stated on the website. > Dhcp is covered in the handbook on the freebsd website. > dns/dnsmasq for DHCP and DNS (will provide dynamic DNS) samba for windows networking shares. Samba is still only a NT4-type DC, no Active Directory type of function (Group Policies, user@domain logins, kerberos, ldap, etc) Samba's own password db is quite advanced, but samba itself is still a NT4-type of function. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 19:38:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50D0C106564A; Sun, 7 Jun 2009 19:38:15 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4F5208FC12; Sun, 7 Jun 2009 19:38:13 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57Jc7PI000369; Sun, 7 Jun 2009 21:38:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57Jc4Cb000366; Sun, 7 Jun 2009 21:38:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 21:38:04 +0200 (CEST) From: Wojciech Puchar To: claudiu vasadi In-Reply-To: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> Message-ID: References: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: IBM TSM 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: Sun, 07 Jun 2009 19:38:15 -0000 > Jun 7 21:10:47 da1 kernel: ad6: detached > Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86540058624, > length=16384)]error = 6 > Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1e[READ(offset=63203147776, > length=16384)]error = 6 > Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86539010048, > length=16384)]error = 6 isn;t it trying to read past the end of disk? From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 19:38:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 041BF10657C2 for ; Sun, 7 Jun 2009 19:38:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 305508FC2A for ; Sun, 7 Jun 2009 19:38:51 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57JckB7000382; Sun, 7 Jun 2009 21:38:46 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57Jcjg0000379; Sun, 7 Jun 2009 21:38:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 21:38:45 +0200 (CEST) From: Wojciech Puchar To: Geoff Fritz In-Reply-To: <20090607185702.GA28486@dev.null> Message-ID: References: <20090607165504.GA67823@dev.null> <20090607185702.GA28486@dev.null> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: "John ." , freebsd-questions@freebsd.org Subject: Re: please recommend a disk-exercising program? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 19:38:53 -0000 > > It's not like the badblocks command is particularly speedy, either. I imagine > that *any* thorough drive test would take a long while given today's typical > drive size. > ca 2 hours on 500GB disk with bs=1m From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 19:43:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4050D10656B1 for ; Sun, 7 Jun 2009 19:43:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id CC16E8FC17 for ; Sun, 7 Jun 2009 19:43:41 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n57JhYdR000402; Sun, 7 Jun 2009 21:43:34 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n57JhWJH000399; Sun, 7 Jun 2009 21:43:33 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 7 Jun 2009 21:43:31 +0200 (CEST) From: Wojciech Puchar To: Manolis Kiagias In-Reply-To: <4A2C0EB2.4080001@otenet.gr> Message-ID: References: <4A2A1A30.30000@otenet.gr> <4A2BEA9F.2040009@otenet.gr> <4A2C0EB2.4080001@otenet.gr> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Luke Dean Subject: Re: Shutting down X with control+alt+backspace X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 19:43:43 -0000 > Wojciech Puchar wrote: >> can older Xorg server be used with just updated drivers? >> drivers are separate modules. >> > > Never tried, but the way Xorg is going this looks kind of frightening ;) that's why i'm asking. To do it that way in port system, because Xorg started to follow "linux way" and "kde/gnome way" i.e. - adding hald as a "requirement" by default - disabling CTRL-ALT-backspace by default - of course user should not leave X session, it's forbidden ;) it's not funny, because while i don't use all these KDE/gnome things, i do need X. Actually X11 isn't quite unix philosophy, it should be graphics support in console driver, but it's not possible to do it now with so many gfx cards. I wonder how long it will take that we will have to build our own computer to be able to run unix normally. Maybe someone will do, using off the shelf CPUs, and quite simple gfx controller. Actually not many unix users do need all these 3D functions. most just need framebuffer with 2D acceleration. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 20:06:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB887106566C; Sun, 7 Jun 2009 20:06:19 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 28FDC8FC0A; Sun, 7 Jun 2009 20:06:18 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: by ewy8 with SMTP id 8so3568006ewy.43 for ; Sun, 07 Jun 2009 13:06:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=p4d6Mt/awBHGNfNWo8+ffmQIaB9g4/2IxNlbuocH5yI=; b=lQUPk5UdePYoSM4dXYjAiNBXsY/rgTh+A7LR89Einrk8sQLLN+H0ZTMvSp1wl6T04Z zgjqtKh+nRWI3WxOoxCFHSOL+5gE3A/pb66HAvunEHQ+IfCyJQIx7JQNvp9EEW80wZZm p8m95JgNfBfRQjM5TJSY8vsLA2sjCbU8G2N4I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=pHTXVt9kKdbtCL/URAwb8rZGGQBVJe+TQZnmE+yrms0JO/kWQlGX19l2fa5fEoA/g5 DuEsglgA2CMbzTWAq3uc6xKt2Uv4cuBhj0kyVr54/Xh98pV13cPcn55XeQEvGYCO4lFb 7hKhshtgGKYC6Z3p4+VjrcxlxZ2sit2h+sjus= MIME-Version: 1.0 Received: by 10.216.11.213 with SMTP id 63mr2007364wex.176.1244405178084; Sun, 07 Jun 2009 13:06:18 -0700 (PDT) In-Reply-To: References: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> Date: Sun, 7 Jun 2009 22:06:18 +0200 Message-ID: <4f760c6a0906071306g129a0b81sd41a2f84000c2609@mail.gmail.com> From: claudiu vasadi To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: IBM TSM 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: Sun, 07 Jun 2009 20:06:20 -0000 On Sun, Jun 7, 2009 at 9:38 PM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > Jun 7 21:10:47 da1 kernel: ad6: detached >> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86540058624, >> length=16384)]error = 6 >> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1e[READ(offset=63203147776, >> length=16384)]error = 6 >> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86539010048, >> length=16384)]error = 6 >> > > > isn;t it trying to read past the end of disk? > Hmm.. I guess you are correct. The question is why is it doing this ? And on both drives ? Feels to me a problem for the developers. HDD's didn't give me one problem since the day the got installed. I'm not saing that they are very good HDD's (in fact they are quite cheap ones) but fail all of a sudden ? And leaving this asside, they dnt give one error on masive transfers and still have very good transfer speed. What I'm saing is that hdd failure could be a posibility of course, but a unlikely one at this point. My problem is that I do not know what tehnik TSM server uses for creating those files because at some point it fails. Strainge thing is that it goes over 1G. First it creates the file and then it populates the file up until the given limit (25G in this case). I will try something tomorow. I will again start the tsm server to add the space (the 25G free space) to the pool and will monitor the file size up until the OS crashes. I'm very curious what's the size of the file when the OS crashes. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 20:55:01 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA07E106564A for ; Sun, 7 Jun 2009 20:55:01 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id 6EAAC8FC08 for ; Sun, 7 Jun 2009 20:55:01 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n57Kt0ST003532 for ; Sun, 7 Jun 2009 16:55:00 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n57Kt0iE003531; Sun, 7 Jun 2009 16:55:00 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id 5A2AFBED4; Sun, 7 Jun 2009 16:52:10 -0400 (EDT) To: freebsd-questions@FreeBSD.ORG In-reply-to: <20090607012158.GA14286@thought.org> (message from Gary Kline on Sat, 6 Jun 2009 18:22:00 -0700) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 References: <20090607012158.GA14286@thought.org> Message-Id: <20090607205210.5A2AFBED4@kev.msw.wpafb.af.mil> Date: Sun, 7 Jun 2009 16:52:10 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Cc: Subject: Re: enclose code and testfile. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 20:55:02 -0000 >> On Sat, 6 Jun 2009 18:22:00 -0700, >> Gary Kline said: G> I'm encloseing a brief C program that skips over php delimiters and a G> 74-byte test file. Am wondering if there is a better way. #!/usr/bin/perl -w # skip PHP stuff in a file use strict; my ($prev, $match); # slurp up the entire file. undef $/; $_ = <>; while (s/ (.*?) # get text that doesn't include delimiters... (<\?.*?\?>) # ... plus text in ONE set of delimiters... //xsm) # ... matching across multiple lines { $prev = $1; # text before print "$prev"; } print "$_\n"; # whatever's left over. exit(0); -- Karl Vogel I don't speak for the USAF or my company Programming is like sex: one mistake and you have to support for a lifetime. --unknown From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 21:42:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F9951065673 for ; Sun, 7 Jun 2009 21:42:26 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 575AD8FC13 for ; Sun, 7 Jun 2009 21:42:26 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: by gxk3 with SMTP id 3so3983033gxk.19 for ; Sun, 07 Jun 2009 14:42:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:reply-to:from:to:subject:date :organization:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:x-mimeole:thread-index; bh=wUTo9MCq/x9IdxnBKvwFiFgAicGBDc9Hn7qYJ/gTbxA=; b=mYMwYS8kHF4/hLgG+wgpvDVINGsNFRU9aPxQ61NUjZ+KJQG1AUs60HrW7P9ivs00Yj Ag/W32cD7jKCAWlQJYbMWH9iUxAQ4R8qROLkBuML8jEShcqXDjkN2qw2T7ESKrrqUrIg qACKCSBWksYVMW0henttMJNYVU0Iqcg8QYCvU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=reply-to:from:to:subject:date:organization:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:x-mimeole :thread-index; b=EZMmDXd0vZ+kcS/tDLX6nMjB7K+IHxeVWiIjo189M9muGKwk1LeCqy5Tve2fujGJ1Z A9bihEnbjr8CXIesssX25sQo5kQ9ib2ToQHGFX7ePN0P+LBhSnyctneA9/BQwt8UdZrj YXs2GJnOzgG48WJXt3ObJjhwg8C4RihYvI9hY= Received: by 10.90.66.14 with SMTP id o14mr5183127aga.73.1244410945576; Sun, 07 Jun 2009 14:42:25 -0700 (PDT) Received: from hades ([99.148.206.19]) by mx.google.com with ESMTPS id 5sm5732835agc.15.2009.06.07.14.42.24 (version=SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 14:42:24 -0700 (PDT) From: "Dave" To: Date: Sun, 7 Jun 2009 17:42:36 -0400 Organization: davemehler.com Message-ID: <9AE9476A24004CDC9715B8E27E401AFD@hades> 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.5579 Thread-Index: AcnnuN+iUkkNJGn/Sl6TkkCdh+i4tg== Subject: issue with dhcp and dns X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dave.mehler@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 21:42:26 -0000 Hello, I'm trying to get dhcp and dns going ddns on FreeBSD 7.2. In my dhcpd.leases file i see the forward and reverse information given on the lease. A host fqdn and a host IP address both return correct dns information on this host. My issue is if i check the forward and reverse zone files i do not see records for the new host. I do see two .jnl files. In /var/log/messages i do see the error about the working directory not being writable, other than that that is it, named indicates it is running. I'm wondering if it takes a while to update the records? Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 22:41:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78FFE106566B for ; Sun, 7 Jun 2009 22:41:01 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 180348FC14 for ; Sun, 7 Jun 2009 22:41:00 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n57MgAEI053963; Sun, 7 Jun 2009 15:42:11 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Sun, 7 Jun 2009 15:40:56 -0700 (PDT) Date: Sun, 7 Jun 2009 15:40:55 -0700 From: Gary Kline To: Karl Vogel Message-ID: <20090607224055.GA2134@thought.org> References: <20090607012158.GA14286@thought.org> <20090607205210.5A2AFBED4@kev.msw.wpafb.af.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090607205210.5A2AFBED4@kev.msw.wpafb.af.mil> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: freebsd-questions@freebsd.org Subject: Re: enclose code and testfile. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jun 2009 22:41:01 -0000 On Sun, Jun 07, 2009 at 04:52:10PM -0400, Karl Vogel wrote: > >> On Sat, 6 Jun 2009 18:22:00 -0700, > >> Gary Kline said: > > G> I'm encloseing a brief C program that skips over php delimiters and a > G> 74-byte test file. Am wondering if there is a better way. > tHanks for your perl script. What I should have added was that I was looking for a better way in C. It needs to fit into my ascii-to-markup program. The function to scotch , is more than a few lines because of error-checking. In addition to a C function that would skip BEGIN and END delimiters, like the one I cobbled together, is one possible with *any* fixed delimiters-- say, 3- or 4- to some reasonable N- characters? My hunch is NO. Or at least nothing very simply for some small N, >= 7. (I'm thinking of the java code blurbs that end in something like "//>" For the php case, I could have used the "<" and ">" delimiters, but thought better of it. gary > #!/usr/bin/perl -w > # skip PHP stuff in a file > > use strict; > my ($prev, $match); > > # slurp up the entire file. > undef $/; > $_ = <>; > > while (s/ > (.*?) # get text that doesn't include delimiters... > (<\?.*?\?>) # ... plus text in ONE set of delimiters... > //xsm) # ... matching across multiple lines > { > $prev = $1; # text before $match = $2; # text inside > print "$prev"; > } > > print "$_\n"; # whatever's left over. > exit(0); > > -- > Karl Vogel I don't speak for the USAF or my company > > Programming is like sex: one mistake and you have to > support for a lifetime. --unknown > _______________________________________________ > 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 http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org For FBSD list: http://transfinite.thought.org/slicejourney.php The 4.91a release of Jottings: http://jottings.thought.org/index.php From owner-freebsd-questions@FreeBSD.ORG Sun Jun 7 23:29:29 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BE1D1065670 for ; Sun, 7 Jun 2009 23:29:29 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s10.blu0.hotmail.com (blu0-omc4-s10.blu0.hotmail.com [65.55.111.149]) by mx1.freebsd.org (Postfix) with ESMTP id DB3408FC14 for ; Sun, 7 Jun 2009 23:29:28 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP86 ([65.55.111.136]) by blu0-omc4-s10.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Sun, 7 Jun 2009 16:16:24 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP86.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Sun, 7 Jun 2009 16:16:23 -0700 Date: Sun, 7 Jun 2009 19:16:16 -0400 From: Carmel To: FreeBSD Question Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 07 Jun 2009 23:16:23.0407 (UTC) FILETIME=[F94F57F0:01C9E7C5] Subject: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Question List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Jun 2009 23:29:29 -0000 I have an nVidia Geforce 6150LE chip on the motherboard. Should I install the x11/nvidia-driver or the NV driver in x11-drivers/xorg-drivers? Would it cause a conflict if I tried to install both and do I even need both of them? -- Carmel From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 00:11:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAE371065680 for ; Mon, 8 Jun 2009 00:11:58 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 793488FC13 for ; Mon, 8 Jun 2009 00:11:58 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDSSy-0002pi-2D for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 00:11:56 +0000 Received: from pool-72-75-59-239.washdc.east.verizon.net ([72.75.59.239]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 00:11:56 +0000 Received: from nightrecon by pool-72-75-59-239.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 00:11:56 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Sun, 07 Jun 2009 20:13:30 -0400 Lines: 42 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-72-75-59-239.washdc.east.verizon.net Sender: news Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 00:11:59 -0000 Carmel wrote: > I have an nVidia Geforce 6150LE chip on the motherboard. Should I > install the x11/nvidia-driver or the NV driver in > x11-drivers/xorg-drivers? Would it cause a conflict if I tried to > install both and do I even need both of them? > Install the nvidia driver if your install is i386 and not 64 bit. The nvidia driver doesn't work yet for 64 bit installs. The main reason to really want the nvidia driver is for desktop software such as KDE or Gnome. My experience with KDE is I wouldn't want to run it without the nvidia driver. You can install the nv driver as well. The two don't really interact with one another. You may install the nv first if you wish, then work on getting Xorg going, as this sometimes entails manually editing xorg.conf the hard way. I know Xorg is supposedly "automagic" these days, but for some reason or another I always seem to end up editing xorg.conf myself to get it to do what I want. The nv can easily be installed along with Xorg. The nvidia driver is more complex as it relies on the linuxolator to function, so there is a larger number of dependencies. But when it comes time to change from nv to nvidia it is just a line or two in the xorg.conf. Sometimes with laptop built-in chips it can be difficult to get things going because of a non-standard resolution requiring a non-standard modeline. In such situations the nv xorg driver will probably be easier to get going. The ultimate fallback is VESA mode, but nobody wants that if it can be avoided. As to which of the ports you need - the regular nvidia-driver and not either of the 'legacy' versions should probably be used as per: http://us.download.nvidia.com/freebsd/180.60/README/appendix-e.html Bottom line is you can start with the nv first and change up to the nvidia- driver later. The two are not mutually exclusive, meaning even though you only utilize one, or the other, they can both coexist on the same system without difficulty. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 00:27:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 808501065688 for ; Mon, 8 Jun 2009 00:27:31 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.25]) by mx1.freebsd.org (Postfix) with ESMTP id 250A78FC17 for ; Mon, 8 Jun 2009 00:27:30 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1422959qwe.7 for ; Sun, 07 Jun 2009 17:27:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=2m7OGAI76yDU1PbpmL5mSjolXChRnBMf3jaVJL6tu3Y=; b=I5vQkum18iHpmmiXH/s8xkzB/4JMe0xUX4JzIyFfcm5P4JSL2AkgfcXecpY302cKmQ 44+Uxvm23IhABGh9YGO+u5/fPZPohSqnr7VNG4yytoGn2bCyRXz0hVz9YSobCNe9ee4F Cyca5wEpYScc4tdhiV2CIp7Eh7nrKlhEzDm2o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Pjen1FpnVf3h4RXVd6saEBe0t6JRZL16s2OvqzN5y7SVdlzSZ19a2LnlDiHcPICfg/ ACKKuv4JNll/HsTKc4kS5HHY1e2pwUJEeTKFCntbswfQL48kmIdiP1yHjkujxUc7z3D3 U6fQ095yuqKSTc1urlnrrGvfpMXU+9Xzd4Jmw= MIME-Version: 1.0 Received: by 10.220.71.6 with SMTP id f6mr3155636vcj.99.1244420850340; Sun, 07 Jun 2009 17:27:30 -0700 (PDT) In-Reply-To: <9AE9476A24004CDC9715B8E27E401AFD@hades> References: <9AE9476A24004CDC9715B8E27E401AFD@hades> Date: Sun, 7 Jun 2009 18:27:30 -0600 Message-ID: From: Tim Judd To: dave.mehler@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: issue with dhcp and dns X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 00:27:31 -0000 I've had a BIND/DHCP dynamic dns solution, but it was very frustrating to get it all working together. Security/ACL/various DHCP clients not requesting a DNS update, blah blah blah. If you've never used dnsmasq, look it up. It simplifies the DHCP, DNS and dynamic DNS functioning down to a simple file. If a client doesn't update, you may need to tweak the dhcp client config file is all. recent windows (since 98 or so) always request it. I've had to tweak many others. Good luck. On 6/7/09, Dave wrote: > Hello, > I'm trying to get dhcp and dns going ddns on FreeBSD 7.2. In my > dhcpd.leases file i see the forward and reverse information given on the > lease. A host fqdn and a host IP address both return correct dns information > on this host. My issue is if i check the forward and reverse zone files i do > not see records for the new host. I do see two .jnl files. In > /var/log/messages i do see the error about the working directory not being > writable, other than that that is it, named indicates it is running. I'm > wondering if it takes a while to update the records? > Thanks. > Dave. > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 00:36:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84C4710656C4 for ; Mon, 8 Jun 2009 00:36:26 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from mail.locolomo.org (97.pool85-48-194.static.orange.es [85.48.194.97]) by mx1.freebsd.org (Postfix) with ESMTP id D48048FC0A for ; Mon, 8 Jun 2009 00:36:24 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from beta.1-16-172-dyn.locolomo.org (beta.1-16-172-dyn.locolomo.org [172.16.1.127]) by mail.locolomo.org (Postfix) with ESMTPSA id D4A5B1C0847; Mon, 8 Jun 2009 02:36:19 +0200 (CEST) Message-ID: <4A2C5D03.9050909@locolomo.org> Date: Mon, 08 Jun 2009 02:36:19 +0200 From: Erik Norgaard User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: dave.mehler@gmail.com References: <9AE9476A24004CDC9715B8E27E401AFD@hades> In-Reply-To: <9AE9476A24004CDC9715B8E27E401AFD@hades> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: issue with dhcp and dns X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 00:36:27 -0000 Dave wrote: > I'm trying to get dhcp and dns going ddns on FreeBSD 7.2. In my > dhcpd.leases file i see the forward and reverse information given on the > lease. A host fqdn and a host IP address both return correct dns information > on this host. My issue is if i check the forward and reverse zone files i do > not see records for the new host. I do see two .jnl files. In > /var/log/messages i do see the error about the working directory not being > writable, other than that that is it, named indicates it is running. I'm > wondering if it takes a while to update the records? I have just set up ddns this week, to correctly update the records, bind will update the zone files, if these are not writable it fails. I don't know the role of the jnl files. I created a directory dynamic/ with owner bind:bind for dynamically updated zone files. I found it a good idea to create separate zones for the dynamic dns and static dns. For example I have for dynamic dns dynamic/1-16-172-dyn.example.com dynamic/1.16.172.in-addr.arpa and for static dns master/example.com master/0.16.172.in-addr.arpa You must create empty zone files for the dynamic dns zones just including the SOA record. If this doesn't help, post the log entry from your messages, and try also running named in foreground to see what happens. BR, Erik -- Erik Nørgaard Ph: +34.666334818/+34.915211157 http://www.locolomo.org From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 01:30:15 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CDD13106566C for ; Mon, 8 Jun 2009 01:30:15 +0000 (UTC) (envelope-from crtb@cape.com) Received: from mrelay1.cape.com (mrelay3.cape.com [216.237.97.20]) by mx1.freebsd.org (Postfix) with ESMTP id 957FA8FC16 for ; Mon, 8 Jun 2009 01:30:15 +0000 (UTC) (envelope-from crtb@cape.com) Received: from daisy (209-213-65-25.meganet.net [209.213.65.25]) by mrelay1.cape.com (Postfix) with ESMTP id D3FBB281E9; Sun, 7 Jun 2009 20:59:33 -0400 (EDT) Date: Sun, 7 Jun 2009 21:11:58 -0400 (EDT) From: Chuck Bacon X-X-Sender: crtb@daisy.local To: questions@freebsd.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Cc: Chuck Bacon Subject: burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 01:30:16 -0000 I have used burncd to burn both audio and data CDs, the latter almost always a FreeBSD d{oc,isc{1,2,3}} ; but I was stopped for quite a while when trying to burn the recent 7.2-RELEASE DVD iso. After losing three DVD+R blanks to mistakes, I bought a DVD-R pack, and found I could burn a DVD using burncd. HOWEVER, it failed during fixate. I could boot from it, but the new OS said it couldn't mount root! Later attempts to mount the DVD from previous 7.1 also failed. Is there a better tool than burncd? I resorted to using disc1, which worked as always, and then copying the packages collection from the mounted DVD ISO (note the ISO could be mounted, but not the DVD) before sysinstall could drive me crazy with its disc{1,2,3} swapping insanity. BTW I have a DSL connection, 768bps, 89.5Bps on a good day. From ftp10.freebsd.org it took me about 5 hours to get the DVD, plus another 2+ hours for disc1. Beh. Sorry if I'm dissembling. Just that 7.2 has been more headache than previous distros like 7.1, 7.0, 6.3 etc. Mebbe I'll mention some of the problems - like What is HAL, essential to getting X up? Solved, BTW, but no help during sysinstall. Thanks for FreeBSD! I've used it as a retired sysadmin since 386BSD. Chuck Bacon -- crtb@cape.com ABHOR SECRECY -- DEFEND PRIVACY From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 01:51:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA49D106566B for ; Mon, 8 Jun 2009 01:51:47 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from outbound-mail-02.bluehost.com (outbound-mail-02.bluehost.com [69.89.21.12]) by mx1.freebsd.org (Postfix) with SMTP id 8CC958FC0C for ; Mon, 8 Jun 2009 01:51:47 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 20191 invoked by uid 0); 8 Jun 2009 01:51:47 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by outboundproxy1.bluehost.com with SMTP; 8 Jun 2009 01:51:47 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=apotheon.com; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-Identified-User; b=OQpWOyy4n7ZCzK68ArWTdFR8o0S1ffNUSWeQuJCAfjm/+qmbtRU5GlR1FQDrFEwjhFV5jgnnjJD82ZTxZ4Afd9E3oZmb9UREZkcX0o1DyKd2NrL0lSaZS3ypJk83Pd/4; Received: from c-24-8-180-234.hsd1.co.comcast.net ([24.8.180.234] helo=kokopelli.hydra) by box543.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MDU1a-0001u9-Hs for freebsd-questions@freebsd.org; Sun, 07 Jun 2009 19:51:46 -0600 Received: by kokopelli.hydra (sSMTP sendmail emulation); Sun, 7 Jun 2009 19:46:29 -0600 Date: Sun, 7 Jun 2009 19:46:29 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20090608014629.GA9091@kokopelli.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.org} {sentby:smtp auth 24.8.180.234 authed with ren@apotheon.org} Subject: Re: ISP 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, 08 Jun 2009 01:51:48 -0000 --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 04, 2009 at 11:50:35PM -0400, itsemu wrote: > if your dealing with a isp such as a cable/dsl company, remember the > requirements to work there, they arent trained on anything besides window= s.. > probably dont really know what a static ip is or have any idea what hardw= are > each different county they are supporting has in there headend because its > all different, reverse dns will probably be a waste of ip space because of > the way its assigned in classes and i seriously doubt they will do it via= a > ticket if its not that way. named registration if im catching that right > godaddys probably going to be cheaper maybe im wrong who knows.. Use a better registrar than GoDaddy. Price isn't everything, and GoDaddy will as soon screw you over as look at you. When searching for registrars to use, the first thing I do is look for registrars that have donated domain registration and/or hosting services to open source projects, because that always says something nice about their level of customer service and knowledgeability. The second thing I look for is their conflict resolution policy, because I never want to be in the position of having my service halted on someone else's say-so for something that isn't my fault without anyone letting me know there's a problem in time to fix it before service is cut off -- and I *definitely* don't want to pay a severeal-hundred-dollar ransom to get my domain name back (a favorite dirty trick of GoDaddy's). Price is somewhere down around concern five or six when I'm choosing a domain name registrar. --=20 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] Quoth Robert Martin: "Would you rather Test-First, or Debug-Later?" --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkosbXUACgkQ9mn/Pj01uKXPrQCeN41ZKq9qJbjSCucZwxsKqV1Y mi8AoN/UfXB1/9QzXKsmRFEPW5zy39RK =NMvW -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 02:47:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27FD1106564A for ; Mon, 8 Jun 2009 02:47:31 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from outbound-mail-21.bluehost.com (outbound-mail-21.bluehost.com [69.89.21.16]) by mx1.freebsd.org (Postfix) with SMTP id B816E8FC08 for ; Mon, 8 Jun 2009 02:47:31 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 15557 invoked by uid 0); 8 Jun 2009 02:47:31 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by outboundproxy2.bluehost.com with SMTP; 8 Jun 2009 02:47:31 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=apotheon.com; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-Identified-User; b=nHVsbUvVqxClhnmoNeCIMQ22wOVyZv47baXuSHLSlpbCTXrYS/WvELmXlXg5woOQ8n2ILMRFahi0ngmzsB4kI6DoH5vPZJ3+aPZ9W8iT3c8ezpINBBe1WWU3MiJyfPR2; Received: from c-24-8-180-234.hsd1.co.comcast.net ([24.8.180.234] helo=kokopelli.hydra) by box543.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MDUtW-0006eD-Qx for freebsd-questions@freebsd.org; Sun, 07 Jun 2009 20:47:31 -0600 Received: by kokopelli.hydra (sSMTP sendmail emulation); Sun, 7 Jun 2009 20:42:13 -0600 Date: Sun, 7 Jun 2009 20:42:13 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20090608024213.GB9091@kokopelli.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <4A2920F5.7040504@ibctech.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Yylu36WmvOXNoKYn" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.org} {sentby:smtp auth 24.8.180.234 authed with ren@apotheon.org} Subject: Re: ISP 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, 08 Jun 2009 02:47:32 -0000 --Yylu36WmvOXNoKYn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jun 05, 2009 at 06:23:56PM +0200, Wojciech Puchar wrote: > > > >The tech support people do what they are told to do. If you've ever had > >a job in which every single incoming call is someone who is frustrated, > >angry and is going to take it out on *you*, it might be understandable > >why the tech support call centre business is like an employee revolving > >door, and they can't keep anyone longer than a few months. >=20 > I think there are people doing this that can work for years. just a matte= r=20 > of personal character, they could completely don't care :) In my experience, the people who remain in such positions for more than a couple years and don't quit or get moved/promoted somewhere else tend to turn into BOFH-types who have a sense of entitlement, enjoy making others' lives difficult, and epitomize the very worst qualities of common tech support personnel. They basically turn into (or were, from the beginning) people that should just get an ass-kicking about daily. There are exceptions, of course, but they're few and far between, from what I've seen. >=20 > Some still insist that it's our fault, they we have to go to them, run=20 > some DVD-bootable linux distro with web browser and show that all is fine= =20 God, I *wish* I could find ISP tech support people who were knowledgeable enough to do something like that -- then maybe when I have a connectivity problem we'd actually be able to sort the problem out in one call, instead of the tech support people I talk to being hampered by both lack of knowledge and bureaucratic shackles so that nothing's going to get fixed for at least three hours. My at one point ISP actually had (I don't know if this is still the case) a special telephone number to call for some stupid automated connectivity test to be run, and when I called once to try to get troubleshooting for my connection I was told to hang up, call that number, follow directions, then call back with the case number it gave me if there was actually a connectivity problem. Seriously, this is what it has come to -- nobody knows how to use ping or traceroute any longer, apparently. This is especially problematic when the problem I was having wasn't a complete outage, but *intermittent* service failure, so the damned thing didn't even detect a connection problem because there wasn't one at that exact moment. Anyway . . . my point is that I'd love to deal with tech support that knows what a Linux distribution LiveCD is, rather than tech support that doesn't know what ping and traceroute are. I get the feeling modern public corporation ISPs actually *want* their tech support personnel to be ignorant morons so they can avoid having to fix problems, simply snowing users in with stupidity long enough to see if the problem "goes away" (even if only by the customer going away in annoyance). Clearly, individual customers aren't important to ISP management these days. --=20 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] Quoth Martin Golding: "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." --Yylu36WmvOXNoKYn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkoseoUACgkQ9mn/Pj01uKVo6gCeLtzAWc0gGXb3vl/INiBO9+Db sUQAmwSvaKxJgd8/lbH0qMvG5pg/bu8v =dw4l -----END PGP SIGNATURE----- --Yylu36WmvOXNoKYn-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 02:54:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 534A9106564A for ; Mon, 8 Jun 2009 02:54:47 +0000 (UTC) (envelope-from rloefgren@forethought.net) Received: from mzpi3.forethought.net (mzpi3.forethought.net [216.241.36.12]) by mx1.freebsd.org (Postfix) with ESMTP id 2F94A8FC1A for ; Mon, 8 Jun 2009 02:54:46 +0000 (UTC) (envelope-from rloefgren@forethought.net) Received: from 216-241-45-95.static.forethought.net ([216.241.45.95] helo=auden.jmla.com) by mz1.forethought.net with esmtpa (Exim 4.69) (envelope-from ) id 1MDTw1-0001LC-FN; Sun, 07 Jun 2009 19:46:01 -0600 Message-ID: <4A2C6D1A.8040709@forethought.net> Date: Sun, 07 Jun 2009 19:44:58 -0600 From: Reed Loefgren User-Agent: Thunderbird 2.0.0.21 (X11/20090604) MIME-Version: 1.0 To: Wojciech Puchar References: <49020.1244377853@clix.pt> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: jdbca@clix.pt, freebsd-questions@freebsd.org Subject: Re: usb device not recognised X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 02:54:47 -0000 Wojciech Puchar wrote: >> >> I played around with the quirks and found that it needs both >> these to create the >> device and make it mountable:- >> NO_TEST_UNIT_READY | NO_SYNCHRONIZE_CACHE >> >> Works fine now >> > please make patch with diff -u > > diff -u usbdevs.orig usbdevs >/tmp/patch.txt > diff -u umass.c.orig umass.c >>/tmp/patch.txt > > and do sent-pr (by sent-pr program or FreeBSD webpage), describe a > problem and attach /tmp/patch.txt > > so maintainers can put this in FreeBSD sources. > _______________________________________________ > 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 just saw this post and need a link to the thread and a definition of the term "played around with the quirks". I have a just-re-installed 7.2-RELEASE system (a bad SCSI cable trashed the original geom mirror install) and dmesg mentions at boot: sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled and, later: ... GEOM_LABEL: Label ufsid/4a259f5253bef8ae removed. uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed uhub2: port 2 reset failed If I plug in a Lexar usb key I get: Jun 7 19:27:24 bimbo kernel: uhub2: port 2 reset failed Jun 7 19:27:56 bimbo last message repeated 30 times The port number varies depending on which USB jack I have the cable plugged in to. My Canon Powershot A630 fails as well. As a probably unrelated aside, when trying to initialize and then talk to a serial interfaced temperature monitoring device, I get: bimbo [103] [7:30pm] [/export/digitemp-3.4.0]$ ./digitemp_DS9097U -i -s/dev/cuad0 DigiTemp v3.4.0 Copyright 1996-2005 by Brian C. Lane GNU Public License v2.0 - http://www.digitemp.com Error 5: DS2480B Adapter Not Detected Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed Error 10: Read COM Failed My point here is that all of this worked properly before the reinstall. The only difference was that the earlier 7.2 install was an upgraded 7.1 install which was itself once 7.0. The new install is from the 7.2 Release CD. It fails using GENERIC as well as my kernel. CPU is an AMD X3 720 black on an Asus M4A79T motherboard running i386. This too might help somebody: bimbo [106] [7:40pm] [/export/digitemp-3.4.0]$ dmesg | grep usb usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 usb1: OHCI version 1.0, legacy support usb1: SMM does not respond, resetting usb1: on ohci1 usb1: USB revision 1.0 uhub1: on usb1 usb2: EHCI version 1.0 usb2: companion controllers, 3 ports each: usb0 usb1 usb2: on ehci0 usb2: USB revision 2.0 uhub2: on usb2 usb3: OHCI version 1.0, legacy support usb3: SMM does not respond, resetting usb3: on ohci2 usb3: USB revision 1.0 uhub3: on usb3 usb4: OHCI version 1.0, legacy support usb4: SMM does not respond, resetting usb4: on ohci3 usb4: USB revision 1.0 uhub4: on usb4 usb5: EHCI version 1.0 usb5: companion controllers, 3 ports each: usb3 usb4 usb5: on ehci1 usb5: USB revision 2.0 uhub5: on usb5 usb6: OHCI version 1.0, legacy support usb6: SMM does not respond, resetting usb6: on ohci4 usb6: USB revision 1.0 uhub6: on usb6 bimbo [107] [7:40pm] [/export/digitemp-3.4.0]$ Apologies for the shotgun, I'm pretty tired and frustrated. r From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 03:00:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A9D8106566C for ; Mon, 8 Jun 2009 03:00:04 +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 BB7038FC15 for ; Mon, 8 Jun 2009 02:59:58 +0000 (UTC) (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.13.1) with ESMTP id n582tgGn018063 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 8 Jun 2009 09:55:43 +0700 (ICT) (envelope-from on@cs.ait.ac.th) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.14.3/8.14.3/Submit) id n582xtVg024068; Mon, 8 Jun 2009 09:59:55 +0700 (ICT) (envelope-from on) Date: Mon, 8 Jun 2009 09:59:55 +0700 (ICT) Message-Id: <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> From: Olivier Nicole To: tajudd@gmail.com In-reply-to: (message from Tim Judd on Sun, 7 Jun 2009 13:18:31 -0600) References: <273384.34545.qm@web81206.mail.mud.yahoo.com> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org, redtick@sbcglobal.net Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 03:00:04 -0000 Hi, > Samba is still only a NT4-type > DC, no Active Directory type of function (Group Policies, user@domain > logins, kerberos, ldap, etc) I am not sure if I understand you well, but my samba is authenticating users agaiinst LDAP. Best regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 03:11:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FE44106566B for ; Mon, 8 Jun 2009 03:11:28 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id BB02E8FC18 for ; Mon, 8 Jun 2009 03:11:27 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qyk3 with SMTP id 3so3838753qyk.3 for ; Sun, 07 Jun 2009 20:11:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=6i3JK2YQXx4y8e6qgJIw6mMd5CadC6U1zxA3USZtuQ4=; b=aqO4a4VbKJFix8Jdv4g1MMFS9sxr609Z3xSMlzoSV7Puui/yeCmspmRcajvwDIOcu8 4c+Z6zWJ/n7idhuQEiWmXjPE8HCYoKtnreN4gdVEOgAWK1V2iDpiV2f5Q23gRM8slSUL llqn/28fXRRuB8PYvChZTnZ1NwpQVsjRBRzrk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=dOdLE+2sXiSrF6+X51g5LFiP3OSeevextWuZIYa+rWyyybHugMutKIMk2GlqfaJqDo rglPGAXFnEMYGS0Za535a7ZvyxxwuTiSCTUUlzAHGsQwRqCZ1Ggcc26dUDf1w976gok5 WjQSuCZle/UzRlNFSsJlYNKWyU3f1GwRg1wG4= MIME-Version: 1.0 Received: by 10.220.90.3 with SMTP id g3mr3355959vcm.20.1244430687126; Sun, 07 Jun 2009 20:11:27 -0700 (PDT) In-Reply-To: <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> References: <273384.34545.qm@web81206.mail.mud.yahoo.com> <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> Date: Sun, 7 Jun 2009 21:11:26 -0600 Message-ID: From: Tim Judd To: Olivier Nicole Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, redtick@sbcglobal.net Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 03:11:28 -0000 yes, you are mis-understanding samba itself is a NT4-type domain. samba can use authentication backends that include passwd files, LDAP and kerberos. Active directory is a requirement to use LDAP, whereas samba is offering it as a auth backend only. fine line, I know. IOW, whereas Active Directory - as a technology: Uses kerberos for authorization Uses LDAP for a storage backend for Kerberos Uses user@domain logins (thanks to Kerberos), Uses other techs not related to this thread NT4-style domains - as a technology: Not using Kerberos Not using LDAP storage Samba allows it's authorization backend to offer more possibilities than NT4's own methods. Such as passwd files, LDAP, Kerberos, etc. It's technology vs technology, not product vs product. On 6/7/09, Olivier Nicole wrote: > Hi, > >> Samba is still only a NT4-type >> DC, no Active Directory type of function (Group Policies, user@domain >> logins, kerberos, ldap, etc) > > I am not sure if I understand you well, but my samba is authenticating > users agaiinst LDAP. > > Best regards, > > Olivier > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 03:27:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44CF91065680 for ; Mon, 8 Jun 2009 03:27:21 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.153]) by mx1.freebsd.org (Postfix) with ESMTP id C533A8FC13 for ; Mon, 8 Jun 2009 03:27:20 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by fg-out-1718.google.com with SMTP id 22so947210fge.12 for ; Sun, 07 Jun 2009 20:27:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=BFlUj0MH8QmZVU7qbau74+bblkMXibTvonTHpzHNpSw=; b=tjY3FT21hb9jC78eahJXYX86forSiBHnf5cWflrGIt/829SqIZj/zfcmzzuG6QJtrU bw1WbdNomu5enJw4AQvLcTwF1uHRuWHrOml21IEICK0KTIgyXJvEl8ysKp6OQbzaNuTF XsyCmj2NrzKvTaJ1RU/nidhdGrBXTWR8NwQek= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=QvsJLrbcei2w0ryL3iJcQQzUgU/E+PO94FL3BgKprcCtuhk6ZhOJ/1qsqFHhmET+dn vFj29IxW7dzp5P1CeZh+ew5SxoKzc5D+buBpsfD31MlKqX45ESPl0wg4/FSJbJtv/t7h wsKc4d7UUPcTIV9N/AaKNpjF5xwVmd/Nz4vh0= Received: by 10.86.33.9 with SMTP id g9mr6676368fgg.41.1244431639555; Sun, 07 Jun 2009 20:27:19 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id d4sm753631fga.26.2009.06.07.20.27.14 (version=SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 20:27:15 -0700 (PDT) Date: Mon, 8 Jun 2009 04:27:12 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090608042712.43c87019@gumby.homeunix.com> In-Reply-To: References: X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 03:27:21 -0000 On Sun, 07 Jun 2009 20:13:30 -0400 Michael Powell wrote: > The nv can easily be installed along with Xorg. The nvidia driver is > more complex as it relies on the linuxolator to function, so there is > a larger number of dependencies. I think that's misleading, AFAIK it's more a case that it can optionally support OpenGL for Linux binaries, in which case it acquires some Linux dependencies. > Sometimes with laptop built-in chips it can be difficult to get > things going because of a non-standard resolution requiring a > non-standard modeline. In such situations the nv xorg driver will > probably be easier to get going. The ultimate fallback is VESA mode, > but nobody wants that if it can be avoided. I've never had a problem with either, they both have their own configuration program to generate xorg.conf From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 03:36:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09C98106566B for ; Mon, 8 Jun 2009 03:36:00 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.157]) by mx1.freebsd.org (Postfix) with ESMTP id 882508FC0C for ; Mon, 8 Jun 2009 03:35:59 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by fg-out-1718.google.com with SMTP id e12so654164fga.12 for ; Sun, 07 Jun 2009 20:35:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=o50NDfMe7X+aFYYLUhZk0ZZDrlSWB+L1c+xuiQxTJ+g=; b=tfJM4lorxABWIWGpITy+a6c8+5rG1rL3pvguDpNMxoEspOCowTciFuPjC5MtJidj2O XpEDJzxUh0c1+Ia1EozWBc1iMr5U0ouQhd2yLpxx5R66LFpmxkfsqBReQHp9kqFcszWQ YVRUanq6gy9r2VNqqOGBNz7g0Rdh+zYhogLr4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=fm9FJEWAbtSiiOdBNnFp8TLNtyxX4chgiATe+jkvgIPKVoLRxp1ZHY+ygBegV+K81F TzwLD9iPHzOPtFAv7aXCAVwDFlcoTfu9Bj0uHYGyAC8Wk4K0SM4FHodsa9J7uCCkpaD0 9O9u9VVoQMzDjVGvh2uydXuzSdlSjUTkn7zZM= Received: by 10.86.80.17 with SMTP id d17mr6711135fgb.27.1244432158628; Sun, 07 Jun 2009 20:35:58 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id e20sm935755fga.15.2009.06.07.20.35.57 (version=SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 20:35:57 -0700 (PDT) Date: Mon, 8 Jun 2009 04:35:55 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090608043555.70d09b27@gumby.homeunix.com> In-Reply-To: References: X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 03:36:00 -0000 On Sun, 7 Jun 2009 21:11:58 -0400 (EDT) Chuck Bacon wrote: > Is there a better tool than burncd? I've used burncd for CD's, but for DVDs I follow the handbook, and have never had any problems: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-dvds.html From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 04:56:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36C99106564A for ; Mon, 8 Jun 2009 04:56:17 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id D34D18FC16 for ; Mon, 8 Jun 2009 04:56:16 +0000 (UTC) (envelope-from lars@larseighner.com) Received: by mail.team1internet.com (Postfix, from userid 12346) id 3EBF416B5F5; Sun, 7 Jun 2009 23:56:16 -0500 (CDT) Received: from larseighner.com (unknown [216.110.13.94]) by mail.team1internet.com (Postfix) with SMTP id EA22916B5EE for ; Sun, 7 Jun 2009 23:56:14 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Sun, 7 Jun 2009 23:52:18 -0500 (CDT) Date: Sun, 7 Jun 2009 23:52:17 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@debranded.6dollardialup.com To: freebsd-questions@freebsd.org Message-ID: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Sanitizer: Anomy and SpamAssassin mail filter - see http://www.6dollardialup.com/support/spaminfo.html Subject: General and specific make 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, 08 Jun 2009 04:56:17 -0000 What I need most is to find (a) make tutorial(s) that do not suppose make is being used for compling c/c++ programs. Yes, I know, that is mostly why make exists, but many tutorials plunge right into C examples with implicit C rules, while -- it seems to me -- make could be much more useful for a variety of things, and I could sure use more of the general and arbitrary examples. Second, it appears to me that the pmake document in the books section of the documentation is not longer in sync with make as actually installed in FreeBSD 7.x. In particular, the pmake doc refers to switches which make no longer recognizes and which do not have clear replacements in man make. Now for my particular question. I have some sources which may or may not exist. My target should be rebuilt if a source exists that is younger than the target. But sources that do not exist should be ignored and make should not be perplexed over how to create them. How do I express that kind of relationship? -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 05:01:38 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 566D5106566C for ; Mon, 8 Jun 2009 05:01:38 +0000 (UTC) (envelope-from thenudnik@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id 074258FC15 for ; Mon, 8 Jun 2009 05:01:37 +0000 (UTC) (envelope-from thenudnik@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1466776qwe.7 for ; Sun, 07 Jun 2009 22:01:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=VosUN5a1Z0YCeQDN5fV/NMNEBy/ORJ/6x33WBN9I60M=; b=BK2yc0uJ/4+JikrSozRE0+KA1K5Un5TKnzjP7z4Zj9iubS6pMuLf/XwiI2J1PbVKHA wJRynAOqSC9uFGh4pYELcOIGnRY6cUZNC+569cguOA56ChKhM2pURCQ+isfZnTz74Vvx BeAC+m/RYccxqmWN1i1aOWWFD9fbSXsKZm2IM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=XDiKBBkdO0TuWMpEcH2ABjCL1Mjkz6Dc63+mqqii0YX/UYCLKiSBgED7fNiSyPnL3T E39Luki3DE5sZXuE9MmKxbB9z5oShrvuVKAC3zU61JK+vcdLIjSAHcVjUe5el5nsq1OI anWafeSLhu8OR8BdQZy8wfWqgtbv73O3KtWBg= Received: by 10.224.54.83 with SMTP id p19mr6247283qag.130.1244436046283; Sun, 07 Jun 2009 21:40:46 -0700 (PDT) Received: from ?192.168.2.2? (fl-67-233-177-119.dhcp.embarqhsd.net [67.233.177.119]) by mx.google.com with ESMTPS id 2sm5637508qwi.53.2009.06.07.21.40.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 07 Jun 2009 21:40:45 -0700 (PDT) Message-ID: <4A2C964C.807@gmail.com> Date: Mon, 08 Jun 2009 00:40:44 -0400 From: "David M. Patronis" User-Agent: Thunderbird 2.0.0.21 (X11/20090409) MIME-Version: 1.0 To: RW References: <20090608043555.70d09b27@gumby.homeunix.com> In-Reply-To: <20090608043555.70d09b27@gumby.homeunix.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 05:01:38 -0000 RW wrote: > On Sun, 7 Jun 2009 21:11:58 -0400 (EDT) > Chuck Bacon wrote: > > > >> Is there a better tool than burncd? >> > > I've used burncd for CD's, but for DVDs I follow the handbook, and have > never had any problems: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-dvds.html > > _______________________________________________ > > I second that, cdrecord and growisofs (part of the dvd+rw-tools package) are essential for modern machines. Although using burncd works well enough on my ancient rigs, a recent attempt to use burncd with a SATA optical drive resulted in a kernel panic. I suspect, unlike cdrecord and growisofs, that burncd is no longer a modern utility, and is in serious need of an overhaul. David From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 05:59:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82FBB106564A; Mon, 8 Jun 2009 05:59:09 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id CF8A38FC08; Mon, 8 Jun 2009 05:59:08 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: by ewy8 with SMTP id 8so3799485ewy.43 for ; Sun, 07 Jun 2009 22:59:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=Uh9RJm5G+foRibOjCFevjD8E6i6lUAOHhGEcg7G2t6E=; b=K5tDWwL7rUmiPQ6v8gjuujyOhjH/GmBRWNqW1jbS87An0Ldw9RayQ14uMPXRWWUYWC NqvYGzB5Viim12KjhzplIa8XnyC5IGZJbl0IGggHlFcq72J/8Zig6bcxlcnrMKKlqUjA Ju9O7X72N+17d6Pk8guz/2UHO0ouuUbAFU04Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=vv7RxKqScdNilgihNEFVESOXT9slnc+ijDE/WzOVgKNgk+ETg+2i96H7VlKvbi/Xed GHqz96dEEP4GNJJvErR9H+whnYeaZfDf6flQg8x7h7QDDZ4J5m4dygBsj14DWN77/l9b k+NH/RTTfDg6BYKPQB2vMwmK4oW7/3xsSH4S4= MIME-Version: 1.0 Received: by 10.216.11.213 with SMTP id 63mr2135435wex.176.1244440747867; Sun, 07 Jun 2009 22:59:07 -0700 (PDT) In-Reply-To: <4A2C3073.3020700@quip.cz> References: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> <4f760c6a0906071306g129a0b81sd41a2f84000c2609@mail.gmail.com> <4A2C3073.3020700@quip.cz> Date: Mon, 8 Jun 2009 07:59:07 +0200 Message-ID: <4f760c6a0906072259j6d2d2c6ese55769f58e58e11a@mail.gmail.com> From: claudiu vasadi To: Miroslav Lachman <000.fbsd@quip.cz> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: IBM TSM server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 05:59:10 -0000 On Sun, Jun 7, 2009 at 11:26 PM, Miroslav Lachman <000.fbsd@quip.cz> wrote: > claudiu vasadi wrote: > >> On Sun, Jun 7, 2009 at 9:38 PM, Wojciech Puchar < >> wojtek@wojtek.tensor.gdynia.pl> wrote: >> >> >> Jun 7 21:10:47 da1 kernel: ad6: detached >>> >>> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86540058624, >>>> length=16384)]error = 6 >>>> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1e[READ(offset=63203147776, >>>> length=16384)]error = 6 >>>> Jun 7 21:10:47 da1 kernel: g_vfs_done():ad6s1d[READ(offset=86539010048, >>>> length=16384)]error = 6 >>>> >>>> >>> >>> isn;t it trying to read past the end of disk? >>> >>> >> >> Hmm.. I guess you are correct. The question is why is it doing this ? >> > > It can be caused by wrong disk label (partitioning). Some partition made > bigger then real media [disk]. > You can see the label by command disklabel ad6s1 and then compare size & > offset values with `diskinfo -v ad6` Here is the ad2: [da1@da1.ro /home/da1]# disklabel ad2s1 # /dev/ad2s1: 8 partitions: # size offset fstype [fsize bsize bps/cpg] a: 1048576 0 4.2BSD 2048 16384 8 b: 4125328 1048576 swap c: 41929587 0 unused 0 0 # "raw" part, don't edit d: 4159488 5173904 4.2BSD 2048 16384 28552 e: 1048576 9333392 4.2BSD 2048 16384 8 f: 31547619 10381968 4.2BSD 2048 16384 28552 [da1@da1.ro /home/da1]# diskinfo -v ad2 ad2 512 # sectorsize 80060424192 # mediasize in bytes (75G) 156368016 # mediasize in sectors 155127 # Cylinders according to firmware. 16 # Heads according to firmware. 63 # Sectors according to firmware. ad:S00JJ30X533937 # Disk ident. And the ad6: [da1@da1.ro /home/da1]# disklabel ad6s1 # /dev/ad6s1: 8 partitions: # size offset fstype [fsize bsize bps/cpg] c: 490223412 0 unused 0 0 # "raw" part, don't edit d: 251658240 0 4.2BSD 0 0 0 e: 167772160 251658240 4.2BSD 0 0 0 f: 70793012 419430400 4.2BSD 0 0 0 [da1@da1.ro /home/da1]# diskinfo -v ad6 ad6 512 # sectorsize 251000193024 # mediasize in bytes (234G) 490234752 # mediasize in sectors 486344 # Cylinders according to firmware. 16 # Heads according to firmware. 63 # Sectors according to firmware. ad:WD-WCANY2281832 # Disk ident. [da1@da1.ro /home/da1]# From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 06:24:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4876B106566B for ; Mon, 8 Jun 2009 06:24:58 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id C9C3B8FC1B for ; Mon, 8 Jun 2009 06:24:57 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDYHv-0005Fp-GN for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 06:24:55 +0000 Received: from pool-71-166-155-203.washdc.east.verizon.net ([71.166.155.203]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 06:24:55 +0000 Received: from nightrecon by pool-71-166-155-203.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 06:24:55 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 08 Jun 2009 02:26:34 -0400 Lines: 40 Message-ID: References: <20090608042712.43c87019@gumby.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-71-166-155-203.washdc.east.verizon.net Sender: news Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 06:24:58 -0000 RW wrote: > On Sun, 07 Jun 2009 20:13:30 -0400 > Michael Powell wrote: > >> The nv can easily be installed along with Xorg. The nvidia driver is >> more complex as it relies on the linuxolator to function, so there is >> a larger number of dependencies. This is incorrect: > I think that's misleading, AFAIK it's more a case that it can optionally > support OpenGL for Linux binaries, in which case it acquires some Linux > dependencies. > [snip] To install the nvidia-driver port a kernel module named nvidia.ko is compiled. This module requires linux.ko to be loaded first. The reason is the nvidia-driver itself is a linux binary blob, and consequently must utilize the linuxolator to run. Very simple concept. The OpenGL support is part of the install. It is not related to any so called 'optional support for Linux binaries'. Ask yourself this: when you run glxgears is glxgears a linux binary or was it compiled as a FreeBSD binary? For example, you will see much improved performance in KDE with the nvidia- driver installed. When you compiled and installed KDE it built FreeBSD binaries, not Linux ones. Enabling the use of the 3D hardware acceleration engineered into modern graphics cards works for things other than just linux binaries and/or OpenGL. But since the nvidia-driver is itself a Linux binary blob pre-compiled by Nvidia, you must have linuxolator support to use it. That does not mean that only Linux (e.g. - non FreeBSD) binaries will be able to take advantage. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:06:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 860EF1065672 for ; Mon, 8 Jun 2009 07:06:26 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from b.mail.ru.ac.za (b.mail.ru.ac.za [IPv6:2001:4200:1010::25:2]) by mx1.freebsd.org (Postfix) with ESMTP id C011C8FC16 for ; Mon, 8 Jun 2009 07:06:25 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:52444) by b.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDYw4-000Lfs-7i for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 09:06:24 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDYw4-0006o6-35 for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 09:06:24 +0200 From: "DA Forsyth" Organization: IWR To: freebsd-questions@freebsd.org Date: Mon, 08 Jun 2009 09:06:23 +0200 MIME-Version: 1.0 Message-ID: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> Priority: normal X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: b.mail.ru.ac.za (146.231.129.34) Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:06:26 -0000 > I think my file/print/mail server is a bit overkill: > http://w3.mutehq.net:8008/sysinfo/ Nice, esp when you compile world. Last year I upgraded our server to a Core 2 Duo 1.8Ghz, Intel DG965 board. 2GB RAM. Previous board was an ASUS P3 1.1GHz, which now hosts my backup server. Both ran FreeBSD file/print/email/web services perfectly. I upgraded to get the onboard SATA sockets so I could increase our available disk space (4x500GB in RAID5 for data). However, a nice benefit is that the Core2 will compile world in 1/4 the time, and user don't notice the server is 'busy'. SO, to the original question, yes that motherboard will work just fine. What are you doing for system backups? A single drive is not enough. I recommend a mirror pair at least, and suggest a second box for backups. -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:06:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 826C71065677 for ; Mon, 8 Jun 2009 07:06:47 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) Received: from b.mail.ru.ac.za (b.mail.ru.ac.za [IPv6:2001:4200:1010::25:2]) by mx1.freebsd.org (Postfix) with ESMTP id 073A48FC24 for ; Mon, 8 Jun 2009 07:06:47 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ru-msa; d=ru.ac.za; h=Received:From:Organization:To:Subject:Date:User-Agent:References:In-Reply-To:X-Face:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id:X-Virus-Scanned:X-Authenticated-User; b=VVIpB4bN2QlliVbTMXJxTxmLsaBJLHgYXssyOJMKmzXTzizZUoc+iQY6LqUUWYSVzF+gFm9kf9DNKBRdwNtvf0WCEm3NOtsOzQGymVwfquDVXvKY9Wy+Q4WB8l55FBDA; Received: from vorkosigan.ru.ac.za ([2001:4200:1010:1058:219:d1ff:fe9f:a932]:49795) by b.mail.ru.ac.za with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDYwP-000Lg0-Qh for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 09:06:45 +0200 From: Jonathan McKeown Organization: Rhodes University To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 09:06:45 +0200 User-Agent: KMail/1.9.10 References: <20090530160540.C5BCD106575F@hub.freebsd.org> <20090605220640.GA30463@it.ca> <20090606034315.GA82099@comcast.net> In-Reply-To: <20090606034315.GA82099@comcast.net> X-Face: $@VrUx^RHy/}yu]jKf/<4T%/d|F+$j-Ol2"2J$q+%OK1]&/G_S9(=?utf-8?q?HkaQ*=60!=3FYOK=3FY!=27M=60C=0A=09aP=5C9nVPF8Q=7DCilHH8l=3B=7E!4?= =?utf-8?q?2HK6=273lg4J=7Daz?=@1Dqqh:J]M^"YPn*2IWrZON$1+G?oX3@ =?utf-8?q?k=230=0A=0954XDRg=3DYn=5FF-etwot4U=24b?=dTS{i X-Virus-Scanned: b.mail.ru.ac.za (2001:4200:1010::25:2) X-Authenticated-User: s0900137 from vorkosigan.ru.ac.za (2001:4200:1010:1058:219:d1ff:fe9f:a932) using auth_plaintext Subject: Re: What's wrong with this picture? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 07:06:47 -0000 On Saturday 06 June 2009 05:43:15 Charlie Kester wrote: > On Fri 05 Jun 2009 at 15:06:40 PDT Paul Chvostek wrote: > >If you elect to filter this person's traffic, and are concerned that > >you'll continue to be inundated with replies, I'd like to suggest a > >small procmail script I wrote years ago. > > > > http://www.it.ca/~paul/s/procmail-filter-msgid > > > >It caches the message-id of the troll's posts and filters the message > >(redirect or bitbucket). It then caches the message-id of any message > >that includes a cached message-id in its headers (i.e. In-Reply-To, > >Refererences) and filters that too. The effect is to hide not just the > >troll's mail, but all the conversations he starts. > > > >I haven't actively used this thing since 2003, but procmail hasn't > >changed much in that time either. Hope it helps. > > Thanks, I'll give it a try. > > One thought however. If I'd already filtered this thread, I would have > missed helpful tips like yours. I guess that's the price that has to be > paid. Unless you're absolutely certain someone is never going to talk sense, I reckon the backscatter is quite useful, to keep an eye on what the killfiled person is talking about and how people are reacting. Killfiling whole threads automatically because a particular person has joined in is a drastic step. Jonathan From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:13:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57CCD106566B; Mon, 8 Jun 2009 07:13:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 8BB688FC17; Mon, 8 Jun 2009 07:13:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n587DeZt003578; Mon, 8 Jun 2009 09:13:40 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n587DeaY003570; Mon, 8 Jun 2009 09:13:40 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 09:13:40 +0200 (CEST) From: Wojciech Puchar To: claudiu vasadi In-Reply-To: <4f760c6a0906071306g129a0b81sd41a2f84000c2609@mail.gmail.com> Message-ID: References: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> <4f760c6a0906071306g129a0b81sd41a2f84000c2609@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: IBM TSM server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:13:47 -0000 > > isn;t it trying to read past the end of disk? > > > Hmm.. I guess you are correct. The question is why is it doing this ? because partition/slice table is wrong? From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:15:38 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 951A3106566C for ; Mon, 8 Jun 2009 07:15:38 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D14208FC18 for ; Mon, 8 Jun 2009 07:15:37 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n587FI4b003591; Mon, 8 Jun 2009 09:15:18 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n587FGnL003588; Mon, 8 Jun 2009 09:15:18 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 09:15:16 +0200 (CEST) From: Wojciech Puchar To: Reed Loefgren In-Reply-To: <4A2C6D1A.8040709@forethought.net> Message-ID: References: <49020.1244377853@clix.pt> <4A2C6D1A.8040709@forethought.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: jdbca@clix.pt, freebsd-questions@freebsd.org Subject: Re: usb device not recognised X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 07:15:39 -0000 > > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > > and, later: > > ... > GEOM_LABEL: Label ufsid/4a259f5253bef8ae removed. > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed > uhub2: port 2 reset failed already here is a problem, not with device but usb controller/hub support. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:18:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76D6210656B0 for ; Mon, 8 Jun 2009 07:18:17 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id A155E8FC17 for ; Mon, 8 Jun 2009 07:18:16 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n587IB7W003619; Mon, 8 Jun 2009 09:18:11 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n587IA4E003616; Mon, 8 Jun 2009 09:18:11 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 09:18:09 +0200 (CEST) From: Wojciech Puchar To: DA Forsyth In-Reply-To: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> Message-ID: References: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:18:17 -0000 > the onboard SATA sockets so I could increase our available disk space > (4x500GB in RAID5 for data). > > However, a nice benefit is that the Core2 will compile world in 1/4 > the time, and user don't notice the server is 'busy'. Core2 is actually only a bit faster per clock cycle than PIII, but you have 2 processors (cores) and much more cache and faster memory... > SO, to the original question, yes that motherboard will work just > fine. What are you doing for system backups? A single drive is not > enough. I recommend a mirror pair at least, and suggest a second box why? it's a backup system not main system. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:19:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A057C10656AB for ; Mon, 8 Jun 2009 07:19:51 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 1E37F8FC15 for ; Mon, 8 Jun 2009 07:19:50 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz17 with SMTP id 17so26708bwz.43 for ; Mon, 08 Jun 2009 00:19:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=vc4yV1XRttXT0PaqxVEoR4C3F43Fe6xBRrvggXz/exM=; b=DP7cQj7nGxd7wZx8CIyGA6Csv24WRFKmQxsAIFNpX+XHZO4o8YY/hJmhg6wPfHxiEZ HUXHoD5hFyuVQrrjv+4yKB3ScZ/+bolD5stbtO8n2/76cX3OIiN5CajonJDApTLP+kuX QOK28NaA1xw0L2gbM0gADE8RCmbRJ1AI6KYV4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=dHf0FJG5zOlz39xs9I7yL1kqgn+77eUKrG28IrN9KykM4SGQKXaZGUrd3/lO87mH5M fEQs+Q0pl1DXxOs/gr/Uw4exSbPqLctGcdQbqljXpFvVRK2f5zRAC08QbDDJ4r2NdGay 0oqKczdDHDB5rgkr1ypq87/4G1prbXnhTY2ec= MIME-Version: 1.0 Received: by 10.223.111.211 with SMTP id t19mr3567794fap.64.1244445588190; Mon, 08 Jun 2009 00:19:48 -0700 (PDT) In-Reply-To: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> References: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> From: Valentin Bud Date: Mon, 8 Jun 2009 10:19:28 +0300 Message-ID: <139b44430906080019w639541a7g28b5c1240bfc21d5@mail.gmail.com> To: d.forsyth@ru.ac.za Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:19:52 -0000 On Mon, Jun 8, 2009 at 10:06 AM, DA Forsyth wrote: > > I think my file/print/mail server is a bit overkill: > > http://w3.mutehq.net:8008/sysinfo/ > > Nice, esp when you compile world. Last year I upgraded our server > to a Core 2 Duo 1.8Ghz, Intel DG965 board. 2GB RAM. Previous board > was an ASUS P3 1.1GHz, which now hosts my backup server. Both ran > FreeBSD file/print/email/web services perfectly. I upgraded to get > the onboard SATA sockets so I could increase our available disk space > (4x500GB in RAID5 for data). > > However, a nice benefit is that the Core2 will compile world in 1/4 > the time, and user don't notice the server is 'busy'. > > SO, to the original question, yes that motherboard will work just > fine. What are you doing for system backups? A single drive is not > enough. I recommend a mirror pair at least, and suggest a second box > for backups. Hello community, Thanks everybody for their thoughts. After reading your posts and some articles over the weekend I will take the gmirror(8) + gjournal(8) road. The backups will be done offsite because the company which I'm doing this for is a friend of my boss and we do have a lot of spare space or our servers. thanks once again, v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:21:03 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83AFB1065674 for ; Mon, 8 Jun 2009 07:21:03 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id 02F4C8FC1F for ; Mon, 8 Jun 2009 07:21:02 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by fxm10 with SMTP id 10so85345fxm.43 for ; Mon, 08 Jun 2009 00:21:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=Osk4YeqUBIWprIna7aGTrvD6wFntpyAG42ZNkcPhxKY=; b=ExipsZNQQCLAlEBLtvRqrBtYPohkpZXRAiiXw/ntW0xyw3gXe6cLa6vblQVg1vMml5 DF3iCcHsgohTCxJ4vyVzpADQIpD/oAmypx0BT9aiXOOk/fVmBrJB9s2tC/UQ8zy9xUoJ guy3Bh7xQXoqtTokZ68kjZQXn+N/z6424S7RQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=FmvWr+bblGbBPvGv9DWQesxLOl5sZdpKcSWANYFYIXnWFRl6F1TWSK/dpSMKgoiXAx AKIIsYcUZ+YtZTsbg34XwVSIlWj4LSrYInoWYzpeQDzVZl+F5p85oD/udDNU6oamakS3 7mAnQOyUZX6RMH5u0pZ0ByflHy0F/Tqk9A13Y= MIME-Version: 1.0 Received: by 10.223.117.194 with SMTP id s2mr3555789faq.83.1244445661186; Mon, 08 Jun 2009 00:21:01 -0700 (PDT) In-Reply-To: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> References: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> From: Valentin Bud Date: Mon, 8 Jun 2009 10:20:41 +0300 Message-ID: <139b44430906080020h39595ddsc8315435ec5e2086@mail.gmail.com> To: d.forsyth@ru.ac.za Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:21:04 -0000 On Mon, Jun 8, 2009 at 10:06 AM, DA Forsyth wrote: > > I think my file/print/mail server is a bit overkill: > > http://w3.mutehq.net:8008/sysinfo/ > > Nice, esp when you compile world. Last year I upgraded our server > to a Core 2 Duo 1.8Ghz, Intel DG965 board. 2GB RAM. Previous board > was an ASUS P3 1.1GHz, which now hosts my backup server. Both ran > FreeBSD file/print/email/web services perfectly. I upgraded to get > the onboard SATA sockets so I could increase our available disk space > (4x500GB in RAID5 for data). > > However, a nice benefit is that the Core2 will compile world in 1/4 > the time, and user don't notice the server is 'busy'. > > SO, to the original question, yes that motherboard will work just > fine. What are you doing for system backups? A single drive is not > enough. I recommend a mirror pair at least, and suggest a second box > for backups. The system will have 2x1TB HDD in mirroring and 500 GB HDD for another use requested by the client. v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:49:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D30A106566B; Mon, 8 Jun 2009 07:49:52 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from sola.nimnet.asn.au (paqi.nimnet.asn.au [220.233.188.227]) by mx1.freebsd.org (Postfix) with ESMTP id D91688FC08; Mon, 8 Jun 2009 07:49:51 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (localhost [127.0.0.1]) by sola.nimnet.asn.au (8.14.2/8.14.2) with ESMTP id n587nmLb051948; Mon, 8 Jun 2009 17:49:49 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 8 Jun 2009 17:49:48 +1000 (EST) From: Ian Smith To: Brooks Davis In-Reply-To: <20090605224132.GB24364@lor.one-eyed-alien.net> Message-ID: <20090608164419.G38006@sola.nimnet.asn.au> References: <20090603190455.811E01065687@hub.freebsd.org> <20090605233731.W38006@sola.nimnet.asn.au> <20090605224132.GB24364@lor.one-eyed-alien.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Ghirai , freebsd-questions@freebsd.org Subject: Re: phidgets for FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:49:52 -0000 On Fri, 5 Jun 2009, Brooks Davis wrote: > On Sat, Jun 06, 2009 at 01:25:09AM +1000, Ian Smith wrote: > > On Wed, 3 Jun 2009 15:07:53 +0300 Ghirai wrote: > > > Is there any (native) FreeBSD supoprt for Phidgets > > > (http://www.phidgets.com? > > > > > > Someone seems to have attempted (and succeeded) to run things on 7.0, > > > some time ago, but there doesn't seem to be any further info > > > (http://www.phidgets.com/phorum/viewtopic.php?f=2&t=507). > > > > > > Any ideas? > > > > No, but colour me interested too. Thanks for the pointer. > > > > Copying this to Brooks, who started that thread in 2005 with a patch for > > phidgets 2.0, which left me wondering if anything has become of that in > > the 2.1 linux sources, which I'm just grabbing. > > I've not really found time to do much since then. I think I've still > got an ancient port around somewhere. All my patch did was refactor the > error handling which caused basic stuff to work for me. Hi, 'scuse delay, been bogged down trying to (learn how to) resuccitate several old debian linux servers for a community radio station (eek!) The thread mentioned above points to your patch, is that all of it? I tried poking around your p4 area but didn't spot anything else related. > > I'm generally interested in whether linux applications using libusb are > > more likely than not to work on FreeBSD, operational differences between > > libusb on FreeBSD and linux, and whether our new USB stack has changed > > anything in that equation at all? > > As a rule, libusb stuff will work. Historically the function to allow > a kernel driver (usually hid) to be detached hasn't been supported, but > otherwise it's functional. Thanks, but please humour my ignorance - would one install linux libusb in /compat/linux for linux apps, as well as the freebsd port for native? Looks like I need to hang out in freebsd-emulation@ and read lots. Any other pointers (anyone)? I'm really hoping to use a FreeBSD box to talk and listen at 400kHz(+) iicbus with a small gadget we're designing, and everything I've seen, eg the Aardvark, is (apart from 'doze of course) linux-only using libusb, including phidgets. cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 07:55:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80D551065670; Mon, 8 Jun 2009 07:55:52 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id DC8728FC0A; Mon, 8 Jun 2009 07:55:51 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: by ewy8 with SMTP id 8so3853097ewy.43 for ; Mon, 08 Jun 2009 00:55:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=UfEDSvbss7U7nEyYezJU9WIqwk7BEeOOrAemmP0cy8E=; b=XhU9ZA2/8OiyrhdnwO2zji7QkdUwnacT3o2PCzj3rVV/Aq+ma9bO2efFTnEFwcODjd zum830RzZBChJrtQwcZw9hMXJbO/+aNwhQG6FKKLdZChi7LtT12uGULln/KgFwHfa6zH M2hDybm8+v525VrKXg1FviYZP8CPOlG3UlqNw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=x90g/dO++R3cir8PcMv05z/gYxBkdg/vE0WTGT0x1VwZSHVFV+Q6KfAwFSID3HmPH+ X/eVYZ6rub11WCigLkgt+X8cNgN5BoVtxezzZCT3I5uH5it041tvbhJsVMFzvtBKfIfz 7DJjoRFAa3J04kgq+zsxUtgnSokoKKb8GhZFA= MIME-Version: 1.0 Received: by 10.216.3.195 with SMTP id 45mr2243539weh.8.1244447750997; Mon, 08 Jun 2009 00:55:50 -0700 (PDT) In-Reply-To: References: <4f760c6a0906071130k7fb7d738hcd0d109868fd9631@mail.gmail.com> <4f760c6a0906071306g129a0b81sd41a2f84000c2609@mail.gmail.com> <4A2C3073.3020700@quip.cz> <4f760c6a0906072259j6d2d2c6ese55769f58e58e11a@mail.gmail.com> Date: Mon, 8 Jun 2009 09:55:50 +0200 Message-ID: <4f760c6a0906080055p481cb61dm94c7a6ca9e267e0a@mail.gmail.com> From: claudiu vasadi To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: IBM TSM server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 07:55:53 -0000 On Mon, Jun 8, 2009 at 9:16 AM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > > the type fdisk /dev/da1 and then compare the sectors values with what dmesg > says > > fdisk /dev/ad2 : ******* Working on device /dev/ad2 ******* parameters extracted from in-core disklabel are: cylinders=155127 heads=16 sectors/track=63 (1008 blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1 parameters to be used for BIOS calculations are: cylinders=155127 heads=16 sectors/track=63 (1008 blks/cyl) Media sector size is 512 Warning: BIOS sector numbering starts with sector 1 Information from DOS bootblock is: The data for partition 1 is: sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD) start 63, size 41929587 (20473 Meg), flag 80 (active) beg: cyl 0/ head 1/ sector 1; end: cyl 1023/ head 254/ sector 63 The data for partition 2 is: sysid 165 (0xa5),(FreeBSD/NetBSD/386BSD) start 41929650, size 114430995 (55874 Meg), flag 0 beg: cyl 1023/ head 255/ sector 63; end: cyl 1023/ head 254/ sector 63 dmesg doesn't say anything usefull. only: ad2: 76351MB at ata1-master UDMA100 I'm not pretty good at this but it seams ok. the disk has been 99% full before and no problems. The slices were created a long time ago and ran some random test that all came out ok. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 08:24:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA010106564A for ; Mon, 8 Jun 2009 08:24:19 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s20.blu0.hotmail.com (blu0-omc4-s20.blu0.hotmail.com [65.55.111.159]) by mx1.freebsd.org (Postfix) with ESMTP id 82D068FC19 for ; Mon, 8 Jun 2009 08:24:19 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP55 ([65.55.111.136]) by blu0-omc4-s20.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 01:24:19 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP55.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 01:24:18 -0700 Date: Mon, 8 Jun 2009 04:24:11 -0400 From: Carmel To: freebsd-questions@freebsd.org In-Reply-To: References: Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 08 Jun 2009 08:24:18.0928 (UTC) FILETIME=[84A5BF00:01C9E812] Subject: Re: Which nVidea driver to install 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, 08 Jun 2009 08:24:20 -0000 On Sun, 07 Jun 2009 20:13:30 -0400 Michael Powell wrote: [snip] >The nv can easily be installed along with Xorg. The nvidia driver is >more complex as it relies on the linuxolator to function, so there is >a larger number of dependencies. But when it comes time to change from >nv to nvidia it is just a line or two in the xorg.conf. Thanks for you assistance. BTW, what lines should I modify if I do decide to install the nVidia driver at some point? I will install the NV driver and get the desktop working. -- Carmel From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 08:46:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C328D106566B for ; Mon, 8 Jun 2009 08:46:02 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp102.prem.mail.ac4.yahoo.com (smtp102.prem.mail.ac4.yahoo.com [76.13.13.41]) by mx1.freebsd.org (Postfix) with SMTP id 67CDF8FC12 for ; Mon, 8 Jun 2009 08:46:02 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 22551 invoked from network); 8 Jun 2009 08:46:01 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=sJDoEhFUAbj0+m4Zfm6DmIiEvKr9rCkAW1ihHxvyi/MSF26sU6y87d24aQ8TQCX3V7MI8BZBElXgU3zwGURoWxFzPhMFxlXfRbfplUTYvKpO4CU85TYzoX6PqgEUMdEnBc5VaNRJXPnU4dEcAU40pM2zSgn6Buq0V+N7E0SY0yE= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp102.prem.mail.ac4.yahoo.com with SMTP; 08 Jun 2009 01:46:01 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: ADhag_4VM1lhX2LJs8UKyv_rlgK10HCehbP1YfWPSdQPDX8_HpzzzMrJDQM8Mz6nCrL9kCeYPedVJ1wewfB5tjMEF0nqRGSjYEch1BaeWCAM0qdgmrhhl8eQ8Unovktq1D8QkOQ_JG2X8.PO5mJmrdUV8Ye7RGi6mC0hvduqrizAZnWXy76REQW2p9NvwmuuGqe8N0IQucWoUaHrp.zZyp0dlzvBDrabAZvpElRCqph1m.sc2AfjzD5oY5syy0mojGEkFgZQsGnRoWcsfUcCX6ThsywQROwjf4f9tvBVMgINZOMn0SeX9skO9prhbbvqngcvyWIVosTd X-Yahoo-Newman-Property: ymail-3 Date: Mon, 8 Jun 2009 04:45:43 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090608044543.0c6d4602@scorpio> In-Reply-To: <20090608014629.GA9091@kokopelli.hydra> References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/xCmdckSMaLbeGg7ypIaP0Sc"; protocol="application/pgp-signature" Subject: Re: ISP questions 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, 08 Jun 2009 08:46:03 -0000 --Sig_/xCmdckSMaLbeGg7ypIaP0Sc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Sun, 7 Jun 2009 19:46:29 -0600 Chad Perrin wrote: >On Thu, Jun 04, 2009 at 11:50:35PM -0400, itsemu wrote: >> if your dealing with a isp such as a cable/dsl company, remember the >> requirements to work there, they arent trained on anything besides >> windows.. probably dont really know what a static ip is or have any >> idea what hardware each different county they are supporting has in >> there headend because its all different, reverse dns will probably >> be a waste of ip space because of the way its assigned in classes >> and i seriously doubt they will do it via a ticket if its not that >> way. named registration if im catching that right godaddys probably >> going to be cheaper maybe im wrong who knows.. > >Use a better registrar than GoDaddy. Price isn't everything, and >GoDaddy will as soon screw you over as look at you. > >When searching for registrars to use, the first thing I do is look for >registrars that have donated domain registration and/or hosting >services to open source projects, because that always says something >nice about their level of customer service and knowledgeability. The >second thing I look for is their conflict resolution policy, because I >never want to be in the position of having my service halted on >someone else's say-so for something that isn't my fault without anyone >letting me know there's a problem in time to fix it before service is >cut off -- and I *definitely* don't want to pay a >severeal-hundred-dollar ransom to get my domain name back (a favorite >dirty trick of GoDaddy's). > >Price is somewhere down around concern five or six when I'm choosing a >domain name registrar. I have used GoDaddy for 7 years now without a single problem. Maybe I am just lucky. I have only contacted them twice; however, I received a quick and courteous response to my inquiry. I know nothing about their philanthropic practices, nor does it concern me, unless I happen to be the beneficiary of such acts. --=20 Jerry gesbbb@yahoo.com O'Reilly's Law of the Kitchen: Cleanliness is next to impossible --Sig_/xCmdckSMaLbeGg7ypIaP0Sc Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkosz8gACgkQBvaKIJWWCO2MlgCgnYmNW9TjvCwUdtjwVy4phZlI 2pkAnRjL1qCpIz+C/W/4CBIFn7Qsc1lk =QdLJ -----END PGP SIGNATURE----- --Sig_/xCmdckSMaLbeGg7ypIaP0Sc-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 10:16:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 801651065670 for ; Mon, 8 Jun 2009 10:16:34 +0000 (UTC) (envelope-from jmc-freebsd2@milibyte.co.uk) Received: from relay.pcl-ipout01.plus.net (relay.pcl-ipout01.plus.net [212.159.7.99]) by mx1.freebsd.org (Postfix) with ESMTP id 101C08FC18 for ; Mon, 8 Jun 2009 10:16:33 +0000 (UTC) (envelope-from jmc-freebsd2@milibyte.co.uk) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApoEAIOBLErUnw4U/2dsb2JhbADKH4QKBQ Received: from pih-relay08.plus.net ([212.159.14.20]) by relay.pcl-ipout01.plus.net with ESMTP; 08 Jun 2009 11:16:31 +0100 Received: from [84.92.153.232] (helo=curlew.milibyte.co.uk) by pih-relay08.plus.net with esmtp (Exim) id 1MDbsr-0000JH-4p; Mon, 08 Jun 2009 11:15:17 +0100 Received: by curlew.milibyte.co.uk with local (Exim 4.69) (envelope-from ) id 1MDbsq-00010D-MI; Mon, 08 Jun 2009 11:15:16 +0100 From: Mike Clarke To: Carmel , freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 11:15:16 +0100 User-Agent: KMail/1.9.10 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: <200906081115.16536.jmc-freebsd2@milibyte.co.uk> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: jmc-freebsd2@milibyte.co.uk X-SA-Exim-Scanned: No (on curlew.milibyte.co.uk); SAEximRunCond expanded to false X-Plusnet-Relay: a6ad2db7452500756f436f1f0ec1936f Cc: Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 10:16:34 -0000 On Monday 08 June 2009, Michael Powell wrote: > As to which of the ports you need - the regular nvidia-driver and not > either of the 'legacy' versions should probably be used I found that I had to use the legacy nvidia-driver-96 port to get my GeForce 6150 to function, as described in my post a couple of days ago in the "Driver for nVidia Geforce 6150LE" thread . I don't know if the problem will apply to other 6150 based systems or if it's just unique to my particular setup. -- Mike Clarke From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 11:18:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11C411065691 for ; Mon, 8 Jun 2009 11:18:19 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id 8BFFB8FC13 for ; Mon, 8 Jun 2009 11:18:18 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: by fxm10 with SMTP id 10so227730fxm.43 for ; Mon, 08 Jun 2009 04:18:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=hPTZgA5SXSSHU8ZwEesjEo2s715+OjlptNL9ZJc4xXA=; b=MwOFmC0OUPxv74ZNw3+qkj+tRGKoe2+3QSCATfRqw17dzlbCqdTra91CCzgvRYrd5T qsBORaPdinW5Ui3KA8xmT+PN9w/o+d2GY37kDKLiAvDPNKK8KJJYOquYNLsCnpb49POd NkMBUyB9xdiqCu2c2xEvwOWtjnnN1Lf3R3djU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=Kkj9CI/dWYQHoFRXzxlyONRDW7Wc4KAiaImX6A7IKg+dG42+DDjMAoHgmiDcbGirs4 p2ZQMj2CwuFln6x9GY9ZRAOC8fwLg4SzyLZvtO/WdqzNuqlDpOz5OgNhmCAiKcw1Skd5 ZgIRzP0Rjm0LAUu46FL/zeOUctWt7IeKjmHVE= Received: by 10.86.49.16 with SMTP id w16mr7129827fgw.4.1244459897582; Mon, 08 Jun 2009 04:18:17 -0700 (PDT) Received: from ?192.168.220.101? (Yb1a7.y.pppool.de [89.60.177.167]) by mx.google.com with ESMTPS id 12sm132565fgg.10.2009.06.08.04.18.16 (version=SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 04:18:17 -0700 (PDT) From: Mister Olli To: Tim Judd In-Reply-To: References: <273384.34545.qm@web81206.mail.mud.yahoo.com> <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> Content-Type: text/plain Date: Mon, 08 Jun 2009 13:18:13 +0200 Message-Id: <1244459893.12252.17.camel@phoenix.blechhirn.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 Content-Transfer-Encoding: 7bit Cc: Olivier Nicole , freebsd-questions@freebsd.org, redtick@sbcglobal.net Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mister.olli@googlemail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 11:18:19 -0000 hi, > yes, you are mis-understanding > > samba itself is a NT4-type domain. not quite right. It depends on the samba version your using. - samba3 only provides NT4-type domains - samba4 provides active directory domain types including GPO (I have such a setup running in 7. with around 10 users. It works quite good, beside the fact that samba segfaults from time to time (which I covered by running samba4 in foreground within an endless bash.-loop)). there is even a new build-option that creates the 'samba franky' release which uses samba3 & samba4 at the same time to make nearly all samba3 feature in combination with AD environments available, but it didn't have the time to look into that. But it sounds quite promising, since samba4 lacks some features samba3 already has. Regards, --- Mr. Olli > samba can use authentication backends that include passwd files, LDAP > and kerberos. Active directory is a requirement to use LDAP, whereas > samba is offering it as a auth backend only. > > fine line, I know. > > IOW, whereas Active Directory - as a technology: > Uses kerberos for authorization > Uses LDAP for a storage backend for Kerberos > Uses user@domain logins (thanks to Kerberos), > Uses other techs not related to this thread > > NT4-style domains - as a technology: > Not using Kerberos > Not using LDAP storage > > Samba allows it's authorization backend to offer more possibilities > than NT4's own methods. Such as passwd files, LDAP, Kerberos, etc. > > > It's technology vs technology, not product vs product. > > > On 6/7/09, Olivier Nicole wrote: > > Hi, > > > >> Samba is still only a NT4-type > >> DC, no Active Directory type of function (Group Policies, user@domain > >> logins, kerberos, ldap, etc) > > > > I am not sure if I understand you well, but my samba is authenticating > > users agaiinst LDAP. > > > > Best regards, > > > > Olivier > > > _______________________________________________ > 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 8 11:40:33 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D1D41065679 for ; Mon, 8 Jun 2009 11:40:33 +0000 (UTC) (envelope-from friedrich.locke@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.242]) by mx1.freebsd.org (Postfix) with ESMTP id 1A87E8FC29 for ; Mon, 8 Jun 2009 11:40:32 +0000 (UTC) (envelope-from friedrich.locke@gmail.com) Received: by an-out-0708.google.com with SMTP id c3so1796268ana.13 for ; Mon, 08 Jun 2009 04:40:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=qyscNrAYLMEQkZlb8se/qQcoIkuyjVuq34J4gTPi5KU=; b=jU9PYWC35qjYhjBGrgLWd+XdHuipA+RIf4XELuuKsgHrdaONAirsTrQnVo7/LbiK/r K0BqHofcnsNYnA7andNArUFSvNNHYotnvvdvTg8GXVYMSaqgsAqA8vFJoG5eeha/8YzW ocKyUsXuEiVwIlpvyvFcyvR6T4SaU65qMbli4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=kRI2cZhHgGyg3XwDUJ2lB85iP9RAIxgQkRSIzyuenJ/h5x2YOiFhni+yARuWqcxu/w eMFjtIqnCp9WfK4opepfNT1j0uTBaHiyEOsCPsIMjMzsblOJ1z1ZUn/9z7kR7/PZr3m8 TvqZVMyWJ65PDlDNvZNGKa7rNN3FluOT1Wkus= MIME-Version: 1.0 Received: by 10.100.120.9 with SMTP id s9mr5864595anc.190.1244459450454; Mon, 08 Jun 2009 04:10:50 -0700 (PDT) Date: Mon, 8 Jun 2009 08:10:50 -0300 Message-ID: From: Friedrich Locke To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: SAN FreeBSD Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 11:40:34 -0000 Dear gentleman, i would like to configure a FreeBSD installation as storage server solution. Iwould like to use iSCSI. Is it possible to configure a server running FreeBSD as a iSCSI server (i.e., i mean as a target)? Thanks a lot for your time and cooperation. Best regards, FL. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 11:50:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8ACC2106566B for ; Mon, 8 Jun 2009 11:50:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id AAA408FC14 for ; Mon, 8 Jun 2009 11:50:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n58BokmN005034; Mon, 8 Jun 2009 13:50:46 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n58BojtF005031; Mon, 8 Jun 2009 13:50:46 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 13:50:45 +0200 (CEST) From: Wojciech Puchar To: Friedrich Locke In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: SAN FreeBSD Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 11:50:54 -0000 > solution. Iwould like to use iSCSI. > Is it possible to configure a server running FreeBSD as a iSCSI server > (i.e., i mean as a target)? > /usr/ports/net/iscsi-target From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 11:54:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60321106564A for ; Mon, 8 Jun 2009 11:54:15 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) by mx1.freebsd.org (Postfix) with ESMTP id DF88F8FC15 for ; Mon, 8 Jun 2009 11:54:14 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by fg-out-1718.google.com with SMTP id e12so726822fga.12 for ; Mon, 08 Jun 2009 04:54:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=DD1BXrdWO2RMSgR2VeHQcWd6y5R4kFAymmaJu468nxQ=; b=es4f52i9jP3uoLIr2F4GG1Mt0GuxXX+ROqC+Kb4CecDE8iWh9R5MSN2FX/oS01Estr XeejJCruor8Xzq4gObZ1RANM5vNe/RyyUxG+AFAiVtUMEwnuJdYtmgkRE22BCNwnQONj +Ao248rpTqUlb2M8DFT5LFBkjx31KiKTjtm3o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=lc9U7RCTsvGEJxDilr9CjU49Z22Np8MlBrso8bTEoY5uFQq6kHpIN+f0gPuiQZgDU6 CUXBu9tJtjNlAsce6Gms6VWt+TGVdolcNxbcmu17EWlm/KdO3zFR6Kxh4yMTn4HgaIP9 oP1phy0ZhL9xUMP+wIrGRIybmJjekJN3lylxU= Received: by 10.86.27.6 with SMTP id a6mr7137847fga.18.1244462054586; Mon, 08 Jun 2009 04:54:14 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id l19sm92591fgb.2.2009.06.08.04.54.12 (version=SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 04:54:14 -0700 (PDT) Date: Mon, 8 Jun 2009 12:54:10 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090608125410.4cd9c45a@gumby.homeunix.com> In-Reply-To: References: <20090608042712.43c87019@gumby.homeunix.com> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 11:54:15 -0000 On Mon, 08 Jun 2009 02:26:34 -0400 Michael Powell wrote: > To install the nvidia-driver port a kernel module named nvidia.ko is > compiled. This module requires linux.ko to be loaded first. The > reason is the nvidia-driver itself is a linux binary blob, and > consequently must utilize the linuxolator to run. Very simple > concept. Simple, but wrong. The driver is not a Linux driver, if you go to the nVidia site you will see that there are separate Linux and FreeBSD drivers. You don't need to load linux.ko at all if you built nvidia.ko without Linux support. > The OpenGL support is part of the install. It is not related to any > so called 'optional support for Linux binaries'. Ask yourself this: > when you run glxgears is glxgears a linux binary or was it compiled > as a FreeBSD binary? Clearly you don't need Linux support to run the native glxgears, but you would if you wanted to run a Linux glxgears binary. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 11:55:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EDE7610656AC for ; Mon, 8 Jun 2009 11:55:42 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from unsane.co.uk (unsane-pt.tunnel.tserv5.lon1.ipv6.he.net [IPv6:2001:470:1f08:110::2]) by mx1.freebsd.org (Postfix) with ESMTP id 70D9B8FC1D for ; Mon, 8 Jun 2009 11:55:42 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from vhoffman.lon.namesco.net (150.117-84-212.staticip.namesco.net [212.84.117.150]) (authenticated bits=0) by unsane.co.uk (8.14.3/8.14.0) with ESMTP id n58BwMJA019386 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 8 Jun 2009 12:58:23 +0100 (BST) (envelope-from vince@unsane.co.uk) Message-ID: <4A2CFC3C.6000509@unsane.co.uk> Date: Mon, 08 Jun 2009 12:55:40 +0100 From: Vincent Hoffman User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-GB; rv:1.9.1b3pre) Gecko/20081204 Thunderbird/3.0b1 MIME-Version: 1.0 To: Friedrich Locke References: In-Reply-To: X-Enigmail-Version: 0.96a Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: SAN FreeBSD Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 11:55:43 -0000 On 8/6/09 12:10, Friedrich Locke wrote: > Dear gentleman, > > i would like to configure a FreeBSD installation as storage server > solution. Iwould like to use iSCSI. > Is it possible to configure a server running FreeBSD as a iSCSI server > (i.e., i mean as a target)? > Indeed it is, although as yet I've never needed to. (12:46:14 ) [jhary@crab] 0 $ make search key=iscsi Port: iscsi-target-20080207_2 Path: /usr/ports/net/iscsi-target Info: Implementation of userland ISCSI target (from NetBSD) Maint: mark@foster.cc B-deps: R-deps: WWW: http://www.netbsd.org/ Port: istgt-20090428 Path: /usr/ports/net/istgt Info: An iSCSI target for FreeBSD 7.x with ZFS Maint: aoyama@peach.ne.jp B-deps: R-deps: WWW: http://shell.peach.ne.jp/aoyama/ > Thanks a lot for your time and cooperation. > > Best regards, > > FL. > _______________________________________________ > 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 8 12:07:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6188A106566C for ; Mon, 8 Jun 2009 12:07:49 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from a.mail.ru.ac.za (a.mail.ru.ac.za [IPv6:2001:4200:1010::25:1]) by mx1.freebsd.org (Postfix) with ESMTP id 8D8118FC0C for ; Mon, 8 Jun 2009 12:07:48 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:51429) by a.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDddh-000K9V-Ny; Mon, 08 Jun 2009 14:07:45 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDddh-000PXH-Mz; Mon, 08 Jun 2009 14:07:45 +0200 From: "DA Forsyth" Organization: IWR To: freebsd-questions@freebsd.org Date: Mon, 08 Jun 2009 14:07:45 +0200 MIME-Version: 1.0 Message-ID: <4A2D1B31.26776.ED3DE30@d.forsyth.ru.ac.za> Priority: normal In-reply-to: <20090608120030.7F44E106568E@hub.freebsd.org> References: <20090608120030.7F44E106568E@hub.freebsd.org> X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: a.mail.ru.ac.za (146.231.129.33) Cc: friedrich.locke@gmail.com Subject: Re: freebsd-questions Digest, Vol 262, Issue 2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:07:49 -0000 > Message: 22 > Date: Mon, 8 Jun 2009 08:10:50 -0300 > From: Friedrich Locke > Subject: SAN FreeBSD Server > To: freebsd-questions@freebsd.org > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > Dear gentleman, > > i would like to configure a FreeBSD installation as storage server > solution. Iwould like to use iSCSI. > Is it possible to configure a server running FreeBSD as a iSCSI server > (i.e., i mean as a target)? indeed it is as others have said. However, if all you need is a bunch of disk space accessible over the network, then FreeNAS would be a lot simpler to setup and maintain. Based on FreeBSD, iSCSI service built in, WEbGUI interface (but you can ssh in if you want to). one caveat, don't use it with USB external drives as it will lose connections as soon as you mount the 2nd USB drive. -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 12:11:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A6F481065672 for ; Mon, 8 Jun 2009 12:11:39 +0000 (UTC) (envelope-from beni.brinckman@edpnet.be) Received: from edpnet.org (lpopmail02.edpnet.net [212.71.1.131]) by mx1.freebsd.org (Postfix) with ESMTP id 216078FC13 for ; Mon, 8 Jun 2009 12:11:38 +0000 (UTC) (envelope-from beni.brinckman@edpnet.be) Received: from edpnet.org (unverified [127.0.0.1]) by EDPnet Mailserver (EDPnet Mailserver www.edpnet.be) with ESMTP id 1645181-1886285 for multiple; Mon, 08 Jun 2009 13:55:33 +0200 Received: from 193.191.216.25 by HTTP Sender: beni.brinckman@edpnet.be From: beni@brinckman.info To: Friedrich Locke ,freebsd-questions@freebsd.org X-Mailer: Quality Web Email v3.1t X-Originating-IP: 193.191.216.25 Date: Mon, 08 Jun 2009 13:55:32 +0200 Priority: normal Message-id: <4a2cfc34.34b.40c2.307575143@edpnet.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Authenticated-User: beni.brinckman@edpnet.be X-IP-stats: Incoming Last 0, First 363, in=1240, out=0, spam=0 ip=193.191.216.25 Cc: Subject: Re: SAN FreeBSD Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: beni@brinckman.info List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:11:40 -0000 Hi, Maybe FreeNAS is something ? From http://www.freenas.org/ : FreeNAS is a free NAS (Network-Attached Storage) server, supporting: CIFS (samba), FTP, NFS, AFP, RSYNC, iSCSI protocols, S.M.A.R.T., local user authentication, Software RAID (0,1,5) with a Full WEB configuration interface. And also : http://www.novell.com/communities/node/3447/using-freenas-netware-iscsi-target-aka-cheap-mass-storage Beni. ----- Original Message Follows ----- From: Friedrich Locke To: freebsd-questions@freebsd.org Subject: SAN FreeBSD Server Date: Mon, 8 Jun 2009 08:10:50 -0300 > Dear gentleman, > > i would like to configure a FreeBSD installation as > storage server solution. Iwould like to use iSCSI. > Is it possible to configure a server running FreeBSD as a > iSCSI server (i.e., i mean as a target)? > > Thanks a lot for your time and cooperation. > > Best regards, > > FL. > _______________________________________________ > 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 8 12:16:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C8471065677 for ; Mon, 8 Jun 2009 12:16:24 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from c.mail.ru.ac.za (c.mail.ru.ac.za [IPv6:2001:4200:1010::25:3]) by mx1.freebsd.org (Postfix) with ESMTP id B14038FC22 for ; Mon, 8 Jun 2009 12:16:22 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:58899) by c.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDdm0-000OIw-HU for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 14:16:20 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDdm0-000PqX-GM for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 14:16:20 +0200 From: "DA Forsyth" Organization: IWR To: freebsd-questions@freebsd.org Date: Mon, 08 Jun 2009 14:16:20 +0200 MIME-Version: 1.0 Message-ID: <4A2D1D34.30423.EDBB90D@d.forsyth.ru.ac.za> Priority: normal In-reply-to: <20090608120030.7F44E106568E@hub.freebsd.org> References: <20090608120030.7F44E106568E@hub.freebsd.org> X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: c.mail.ru.ac.za (146.231.129.35) Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:16:24 -0000 On 8 Jun 2009 , freebsd-questions-request@freebsd.org entreated about "freebsd-questions Digest, Vol 262, Issue 2": > Message: 13 > Date: Mon, 8 Jun 2009 09:18:09 +0200 (CEST) > From: Wojciech Puchar > > SO, to the original question, yes that motherboard will work just > > fine. What are you doing for system backups? A single drive is not > > enough. I recommend a mirror pair at least, and suggest a second box > > why? it's a backup system not main system. >From his original it seemd he would be using a single drive for the system and a mirror pair for data. Seems I got it wrong and the single drive will be for 'some other purpose'. Fine, but all the more reason to back it up. A backup server is not the place to avoid data security. From personal experience I can tell you that life is hell when your backup drives are needed but don't work. My backup server has a mirror pair for the data, and that gets copied to an external drive which lives off site. And I'm not sure I've got enough backups.... yet (-: -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 12:27:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A77221065674 for ; Mon, 8 Jun 2009 12:27:31 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id 2B7F28FC16 for ; Mon, 8 Jun 2009 12:27:30 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: by fxm10 with SMTP id 10so273111fxm.43 for ; Mon, 08 Jun 2009 05:27:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=C0k9ut8djfpndg3AWYF0cARIK/8lcCAsLmM3Zswfs9s=; b=aRGTM1UiL2bnAE7uymBI+HyQwEIwKmURHfL3nRXvoHjTsU47nx0kX77eO98CMsAeqz /nw6gTdrWO5HHW5DikZ18d/7T3VMxipxe/4RoIbWdPHg4Tz2+e9TBgqh1rrQ3J3puc0w mPGQyNhyCb6+tryVutQixXKPFGE94ttdsperE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=T8aYHnuOKx+qX9txbV6/D5wkPSqtqIo9rM8n5E77Da0sx5NoSpO9+YFVbURRi4D0LY pZOPBmB8LZXtbOvccnvjlm8ULbzxfTTB9+wFWJdM4XZaK70zOO2DLfoc82/53riVunwT R5WSIfDkOK0XWfBWyy5B/+wurwdjFZS5WqO4E= Received: by 10.86.59.18 with SMTP id h18mr7125016fga.71.1244464050220; Mon, 08 Jun 2009 05:27:30 -0700 (PDT) Received: from ?192.168.220.101? (Yb1a7.y.pppool.de [89.60.177.167]) by mx.google.com with ESMTPS id e11sm81687fga.11.2009.06.08.05.27.29 (version=SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 05:27:29 -0700 (PDT) From: Mister Olli To: dave.mehler@gmail.com In-Reply-To: <1765BE3D07864F69AB4F9D3874BCBC64@hades> References: <273384.34545.qm@web81206.mail.mud.yahoo.com> <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> <1244459893.12252.17.camel@phoenix.blechhirn.net> <1765BE3D07864F69AB4F9D3874BCBC64@hades> Content-Type: text/plain Date: Mon, 08 Jun 2009 14:27:26 +0200 Message-Id: <1244464046.12252.28.camel@phoenix.blechhirn.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: RE: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mister.olli@googlemail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:27:32 -0000 Hi, I used the following procedure to install samba4 on a freebsd box: http://wiki.samba.org/index.php/Samba4/HOWTO in my current setup (which is about 4 months old) the following this do not work: - active directory groups did somehow not work as expected, but I didn't had the time to look deeper into it - updating DNS records within named, as the version freebsd comes with does not support the GSSAPI. if someone finds a way to replace builtin named with a newer version please drop me an email. - stability (didn't had the time to examine the segfaults further.) I already had contact about this issue with andrew bartlett from the developer team and they are willing to fix this issues when they have enough informations. look here (http://wiki.samba.org/index.php/Franky) for informations about the 'franky' release and how to compile it. seems to be simple if you're a little bit familiar with samba. I didn't had the time to look and test, and surely won't have any until mid-august. so it would be great to hear your experiences :-) Regards, --- Mr. Olli On Mon, 2009-06-08 at 07:40 -0400, Dave wrote: > Hi, > Do you have a procedure for getting samba4 going? If it can do active > directory i'd like to try it. And get it all going, with samba3 as well. > Thanks. > Dave. > > > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Mister Olli > Sent: Monday, June 08, 2009 7:18 AM > To: Tim Judd > Cc: Olivier Nicole; freebsd-questions@freebsd.org; redtick@sbcglobal.net > Subject: Re: Samba3 domain controller howto? > > hi, > > > yes, you are mis-understanding > > > > samba itself is a NT4-type domain. > not quite right. It depends on the samba version your using. > - samba3 only provides NT4-type domains > - samba4 provides active directory domain types including GPO (I have such a > setup running in 7. with around 10 users. It works quite good, > beside the fact that samba segfaults from time to time (which I covered by > running samba4 in foreground within an endless bash.-loop)). > > there is even a new build-option that creates the 'samba franky' release > which uses samba3 & samba4 at the same time to make nearly all samba3 > feature in combination with AD environments available, but it didn't have > the time to look into that. But it sounds quite promising, since > samba4 lacks some features samba3 already has. > > > Regards, > --- > Mr. Olli > > > > samba can use authentication backends that include passwd files, LDAP > > and kerberos. Active directory is a requirement to use LDAP, whereas > > samba is offering it as a auth backend only. > > > > fine line, I know. > > > > IOW, whereas Active Directory - as a technology: > > Uses kerberos for authorization > > Uses LDAP for a storage backend for Kerberos > > Uses user@domain logins (thanks to Kerberos), > > Uses other techs not related to this thread > > > > NT4-style domains - as a technology: > > Not using Kerberos > > Not using LDAP storage > > > > Samba allows it's authorization backend to offer more possibilities > > than NT4's own methods. Such as passwd files, LDAP, Kerberos, etc. > > > > > > It's technology vs technology, not product vs product. > > > > > > On 6/7/09, Olivier Nicole wrote: > > > Hi, > > > > > >> Samba is still only a NT4-type > > >> DC, no Active Directory type of function (Group Policies, > > >> user@domain logins, kerberos, ldap, etc) > > > > > > I am not sure if I understand you well, but my samba is > > > authenticating users agaiinst LDAP. > > > > > > Best regards, > > > > > > Olivier > > > > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 12:32:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C83A106566B for ; Mon, 8 Jun 2009 12:32:40 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id B345B8FC13 for ; Mon, 8 Jun 2009 12:32:39 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: by fxm10 with SMTP id 10so276479fxm.43 for ; Mon, 08 Jun 2009 05:32:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=PlqIEvLZvyjI6DqtL+PXk7wtlwM33ZTQ3qDexCzXs8E=; b=F6tFdIjHYS0qnQ3V2iQ8SA6LzxpuhtzW6tKyIi9+OfngjZlxVlSM6PwX3Y6cwEQm+p tErz464G0sNpXLOtOMkPJ9/DnblBB/K76rs0uWzX3ZwClaYuEDDpEGbaA0HZceF3n4xc 32ZA12SBhh4sOBGzKLm7LifJ2D/9l/IFaI9LE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=gcmcWe3r5QBquO6AhLKCpC7BUMvkfloGPoG3UJRgEMEePwHmn/bPT/1OJbZnH6q0Yy wjxDPVg2rqXl169/KmvzMvaNLOxIJUjkUeFcXr6PAkTQ5S9s2Uv9ThJieF2VCJcWDb6B HMsAYgmGzq4RSmiarwDEbzl+LHKKMebDIzzEI= Received: by 10.86.83.15 with SMTP id g15mr7124675fgb.64.1244464358613; Mon, 08 Jun 2009 05:32:38 -0700 (PDT) Received: from ?192.168.220.101? (Yb1a7.y.pppool.de [89.60.177.167]) by mx.google.com with ESMTPS id l19sm61567fgb.22.2009.06.08.05.32.37 (version=SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 05:32:38 -0700 (PDT) From: Mister Olli To: Odhiambo =?UTF-8?Q?=E3=83=AF=E3=82=B7=E3=83=B3=E3=83=88=E3=83=B3?= In-Reply-To: <991123400906080451h4d3b55dcqb07d9a49f0aac47e@mail.gmail.com> References: <273384.34545.qm@web81206.mail.mud.yahoo.com> <200906080259.n582xtVg024068@banyan.cs.ait.ac.th> <1244459893.12252.17.camel@phoenix.blechhirn.net> <991123400906080451h4d3b55dcqb07d9a49f0aac47e@mail.gmail.com> Content-Type: text/plain Date: Mon, 08 Jun 2009 14:32:35 +0200 Message-Id: <1244464355.12252.34.camel@phoenix.blechhirn.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Samba3 domain controller howto? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mister.olli@googlemail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:32:40 -0000 hi, > Where did you get samba4? How did you download? > How did you compile on FreeBSD? You can share your ./configure args? have a look into the mail I just posted on freebsd-questions, it includes links to the samba wiki where installation is explained in detail. > And your smb.conf and loop script? the loop script is a bash with the following command running: 'while (true); do samba -i -M single; done' this restarts samba4 whenever it crashes immediately. my smb.conf is very simplistic as there aren't that may options you can choose in samba4 (due to being in heavy development). maybe one thing that you should be aware of is, that UFS does not support extend file attributes as linux does. so you need to save this informations into a file. the correct procedure is described in the samba4 howto article within the samba wiki (http://wiki.samba.org/index.php/Samba4/HOWTO). sorry for not providing my smb.conf, but the server is out of my reach at the moment. If you have any questions about the setup drop me an email, maybee I can help you. Regards, --- Mr. Olli From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 12:55:48 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44FC61065673 for ; Mon, 8 Jun 2009 12:55:48 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 074648FC1A for ; Mon, 8 Jun 2009 12:55:47 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 43FFA5086C for ; Mon, 8 Jun 2009 14:55:47 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 27D0550865 for ; Mon, 8 Jun 2009 14:55:47 +0200 (CEST) Message-ID: <4A2D0A5C.8010809@webrz.net> Date: Mon, 08 Jun 2009 14:55:56 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 12:55:48 -0000 I would like to execute a script on every last day of the month in my crontab. Can someone tell me how I should solve that as it doesn't know which month day is the last day of the month? Solving this in the script to be executed is no option. Thanks, Jos From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 12:58:07 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CC9D1065678; Mon, 8 Jun 2009 12:58:07 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.157]) by mx1.freebsd.org (Postfix) with ESMTP id 7EA1A8FC12; Mon, 8 Jun 2009 12:58:00 +0000 (UTC) (envelope-from mister.olli@googlemail.com) Received: by fg-out-1718.google.com with SMTP id 22so1033405fge.12 for ; Mon, 08 Jun 2009 05:58:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=2JfEHAc/pWLfH4RYo11qkev4YFCyzL1sWT9HaQcJTmc=; b=gOaHd/pqmjE3z7nCMNYv6+QIF6BpfNnl8EZTOtzHbm1HysJD948FmaNH3D4n9l3OQh nHDvTjfcfXHsecG3bxQcs+DneIl4jeNZuFtKGfzB/vSQgrqrga7whRs7zeGdDIveImpy +wmJSwxZ1nY6NiaYBsQs21CAq2vJQyfqMyMxc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :date:message-id:mime-version:x-mailer:content-transfer-encoding; b=GQSVg6PWEmImfKz/eFCnPhL+IyYSPt2vvCOTm1BOEQ2i/2azrnTxNsY8rTISOo+wCv SkqOeebfkPDfjhT7OCXUKdjUKQ4+rPeHLgmHZCZAuSX3WnQD71FdzDEZNUcS8wpaqW/h r4deD9IwgolYDkqtuBFFtKiv2Y2eA/Y5rvW9I= Received: by 10.86.59.18 with SMTP id h18mr7192059fga.44.1244465879167; Mon, 08 Jun 2009 05:57:59 -0700 (PDT) Received: from ?192.168.220.101? (Yb1a7.y.pppool.de [89.60.177.167]) by mx.google.com with ESMTPS id 12sm228411fgg.15.2009.06.08.05.57.57 (version=SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 05:57:57 -0700 (PDT) From: Mister Olli To: Bob Bishop In-Reply-To: <57A9FCBA-CBCB-45D2-9B95-5E5DBC0DB964@gid.co.uk> References: <1241623255.12407.6.camel@phoenix.blechhirn.net> <57A9FCBA-CBCB-45D2-9B95-5E5DBC0DB964@gid.co.uk> Content-Type: text/plain Date: Mon, 08 Jun 2009 14:57:52 +0200 Message-Id: <1244465872.12252.39.camel@phoenix.blechhirn.net> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, "freebsd-questions@freebsd.org" Subject: Re: Assign IP address and hostname via kernel parameter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: mister.olli@googlemail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 12:58:08 -0000 Hi, thanks for the hint, this brought me to a (IMHO) good way to accomplish this. When using FreeBSD as domU and configuring the kernel in the domU config file (rather than using pygrub) it's possible to append kernel parameters, by defining them in the variable 'extras' within the domU config file. With 'kenv' I can read them from within the bootet domU, so this should be just a simple shell script to setup all parameters. Currently I'm not sure where this script should hook into freebsd's internas. The greatest thing would be having a 'rc.conf' parameter to enable configuration from the kernel parameters. Setting this to 'true' would simply fire up the shell script to do all the stuff. Any suggestions or hints on this??? Regards, --- Mr. Olli On Wed, 2009-05-06 at 17:52 +0100, Bob Bishop wrote: > Hi, > > On 6 May 2009, at 16:20, Mister Olli wrote: > > > is there a way to configure IP address and hostname on freebsd systems > > via kernel command line parameters? [etc] > > When running diskless, the loader sets kernel variables like: > > boot.netif.gateway="192.168.198.1" > boot.netif.hwaddr="00:15:17:47:14:fc" > boot.netif.ip="192.168.198.8" > boot.netif.netmask="255.255.255.0" > > to values obtained from BOOTP or DHCP, and the right things happen. I > guess you could just set these in loader.conf or at the loader prompt. > > -- > Bob Bishop > rb@gid.co.uk > > > > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 13:03:35 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0351410656E0 for ; Mon, 8 Jun 2009 13:03:35 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.169]) by mx1.freebsd.org (Postfix) with ESMTP id CB7628FC23 for ; Mon, 8 Jun 2009 13:03:34 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1110717wfg.7 for ; Mon, 08 Jun 2009 06:03:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=0VEnAPS9Awr5Jds1BhAbrn2reFFqz3juIWpr5EhYPeQ=; b=M9vzd+LreSiZryv+TIlTFH/poe+sEtjbNhQxOAzdJYPGUZebN98OcIAEaHfjz/fIy5 RHGmtTFFE04MdmuAFI9GBasHFqyAsUjnGZJROwbdDv3lnbSy3Vnu9OcI3Df/UJW5jF80 DBH96ICp3K+TT76gLTErZu/wkH1XBKRs+SQbg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=T9xmD4ekxpDY5+NisCSipLzfnJPXnQnPwZCosHxqAhmZRB7NIGwWbEzNU54rSAYu7y +goJhrNnPPC6HgYrwrD4QH0VgRx9ZRYmMIFPlFzUVMcnES4/RcPMOmDix/rQv4fvVTDL DL/LXrUtNFQInBIL93ScrAIKIxh3RfS/YAIIc= MIME-Version: 1.0 Received: by 10.142.253.19 with SMTP id a19mr2508395wfi.161.1244466214376; Mon, 08 Jun 2009 06:03:34 -0700 (PDT) In-Reply-To: <4A2D0A5C.8010809@webrz.net> References: <4A2D0A5C.8010809@webrz.net> Date: Mon, 8 Jun 2009 08:03:34 -0500 Message-ID: From: Neal Hogan To: Jos Chrispijn Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD Questions Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 13:03:35 -0000 On Mon, Jun 8, 2009 at 7:55 AM, Jos Chrispijn wrote: > I would like to execute a script on every last day of the month in my > crontab. > Can someone tell me how I should solve that as it doesn't know which month > day is the last day of the month? If it really needs to be done on the last day of each month (eg, the 28th of Feb . . . the 31st of Oct . . . etc.), I suppose you could set up 12 different jobs. Be aware of the dreaded leap year, though! > > Solving this in the script to be executed is no option. > > Thanks, Jos > > _______________________________________________ > 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 8 13:08:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 136961065672 for ; Mon, 8 Jun 2009 13:08:53 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from cohiba.eagle.ca (cohiba.eagle.ca [208.70.104.203]) by mx1.freebsd.org (Postfix) with ESMTP id 3F1038FC35 for ; Mon, 8 Jun 2009 13:08:51 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 77229 invoked by uid 89); 8 Jun 2009 13:08:49 -0000 Received: from unknown (HELO ?192.168.1.114?) (steveb@eagle.ca@208.70.104.100) by cohiba.eagle.ca with ESMTPA; 8 Jun 2009 13:08:49 -0000 Message-ID: <4A2D0D65.4060704@ibctech.ca> Date: Mon, 08 Jun 2009 09:08:53 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Jos Chrispijn References: <4A2D0A5C.8010809@webrz.net> In-Reply-To: <4A2D0A5C.8010809@webrz.net> X-Enigmail-Version: 0.95.7 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms030205020905020006020607" Cc: FreeBSD Questions Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 13:08:53 -0000 This is a cryptographically signed message in MIME format. --------------ms030205020905020006020607 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Jos Chrispijn wrote: > I would like to execute a script on every last day of the month in my > crontab. > Can someone tell me how I should solve that as it doesn't know which > month day is the last day of the month? > Solving this in the script to be executed is no option. I've done this before. My script was in Perl. Essentially, the script ran once every day. At the top of the script, it did a DateTime check to see if tomorrow was the 1st of the month. If it was, the script proceeded, else it exited. Steve --------------ms030205020905020006020607 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 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCC AtowggJDoAMCAQICEEs5xg/J3t77QWJ4SatV1HcwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDUwNzIzMTYxMFoX DTEwMDUwNzIzMTYxMFowQjEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEfMB0G CSqGSIb3DQEJARYQc3RldmVAaWJjdGVjaC5jYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBAJSTRAjP1RVa87/mnZn+PBTbENgyhhBJ4rWApmaNcthzRdk2DB/49KrXx3EQP60w Lj4KU0DFkiGNVj9BnVxRAx/WDXKxGC3uGGEG6gjyWv8KFMWMsH9mL7y7uNow1HueT6pZUf9o yY8Ewd+01QpGi7FfXOae7lGHhbEwnEJGwz08ytRfLmH0KtEzlZanZZhwDGX5s1kIHnyxdACh 3byXY6Z2bOrx0rcrQHCnHJppxddR60F7igjaMuBFstE51h9XTgXDNKJbglqTug5ghGihNuP6 VsBN7ue62y96UGIE22TvKEcAQ665vQGjHqZeSzZYy+hWNOa27pWFmhlqFjx0x8MCAwEAAaMt MCswGwYDVR0RBBQwEoEQc3RldmVAaWJjdGVjaC5jYTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3 DQEBBQUAA4GBAMOmjxjp2Xzk6ZHLwTgFDzVhm98RjRT3UXotKjNIR7SgwfWF5wkJrx4I+dXu ui5ztMEq4bTTRgJ344MqE6uZiZlg+tBIFHZGCJfKdzsX4QuV2jmw0sR5dMaYxG6tlDB0YUMv gTqzV7ZDpiusTMOZe9pP1PdxFhOcIJXtMQDj5LhuMIIC2jCCAkOgAwIBAgIQSznGD8ne3vtB YnhJq1XUdzANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDkwNTA3MjMxNjEwWhcNMTAwNTA3MjMxNjEwWjBCMR8wHQYD VQQDExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzdGV2ZUBpYmN0 ZWNoLmNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJNECM/VFVrzv+admf48 FNsQ2DKGEEnitYCmZo1y2HNF2TYMH/j0qtfHcRA/rTAuPgpTQMWSIY1WP0GdXFEDH9YNcrEY Le4YYQbqCPJa/woUxYywf2YvvLu42jDUe55PqllR/2jJjwTB37TVCkaLsV9c5p7uUYeFsTCc QkbDPTzK1F8uYfQq0TOVlqdlmHAMZfmzWQgefLF0AKHdvJdjpnZs6vHStytAcKccmmnF11Hr QXuKCNoy4EWy0TnWH1dOBcM0oluCWpO6DmCEaKE24/pWwE3u57rbL3pQYgTbZO8oRwBDrrm9 AaMepl5LNljL6FY05rbulYWaGWoWPHTHwwIDAQABoy0wKzAbBgNVHREEFDASgRBzdGV2ZUBp YmN0ZWNoLmNhMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAw6aPGOnZfOTpkcvB OAUPNWGb3xGNFPdRei0qM0hHtKDB9YXnCQmvHgj51e66LnO0wSrhtNNGAnfjgyoTq5mJmWD6 0EgUdkYIl8p3OxfhC5XaObDSxHl0xpjEbq2UMHRhQy+BOrNXtkOmK6xMw5l72k/U93EWE5wg le0xAOPkuG4wggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEs5xg/J3t77QWJ4SatV 1HcwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDkwNjA4MTMwODUzWjAjBgkqhkiG9w0BCQQxFgQUQmfERNRj9xGlbGT1I3RBMgxq gscwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0Fi eEmrVdR3MIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0FieEmrVdR3MA0GCSqGSIb3DQEBAQUABIIB AFp83wuZt1ybcM5WVuapVxotOyrZveA+fhlFyoB/yEPPdSVaeV5D2o7m3+fWmrzfsHU5hoLM 0WZ7tF95pTJsyDxV1cW3LDSeHFyaxQD5C7kcdpP63MnqQ8D0ZC/Pmhq3hOP/2ooaubQJ1JcH 0hXzF2mkyMI9AzMsxnlmplVV40obrIJrdlQESTrrb0GTuvYy1t94oKO15xlY5f44cAOt3dtf T31KgGvIlx80X83MI1W3aUkYPG/VHnThhvBVIVF807dldBt9P4RFGssbL6GC00Y+2PxjI52U GvJjvyN6//navVu1O1Xs5PvWoydl6uF/0WOobMPRUPyitOgsc/suP/QAAAAAAAA= --------------ms030205020905020006020607-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 13:15:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B7D5C106566B for ; Mon, 8 Jun 2009 13:15:58 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id BB21A8FC1E for ; Mon, 8 Jun 2009 13:15:57 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n58DFpFC005480; Mon, 8 Jun 2009 15:15:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n58DFoPB005477; Mon, 8 Jun 2009 15:15:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 15:15:50 +0200 (CEST) From: Wojciech Puchar To: Jos Chrispijn In-Reply-To: <4A2D0A5C.8010809@webrz.net> Message-ID: References: <4A2D0A5C.8010809@webrz.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Questions Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 13:15:59 -0000 put 12 lines, for each month and with the last day. On Mon, 8 Jun 2009, Jos Chrispijn wrote: > I would like to execute a script on every last day of the month in my > crontab. > Can someone tell me how I should solve that as it doesn't know which month > day is the last day of the month? > Solving this in the script to be executed is no option. > > Thanks, Jos > > _______________________________________________ > 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 8 13:48:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB285106564A for ; Mon, 8 Jun 2009 13:48:44 +0000 (UTC) (envelope-from glavoie@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 304EA8FC08 for ; Mon, 8 Jun 2009 13:48:43 +0000 (UTC) (envelope-from glavoie@gmail.com) Received: by bwz17 with SMTP id 17so267866bwz.43 for ; Mon, 08 Jun 2009 06:48:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=BRyQBa6axhbc2hMmb/XVmDmPlTvfiHjJl7ec++KocBE=; b=EHReOVkboRHS/TeMnE2RM1ldPFD5TgDBN0BbfoU4sEpJlScADAiBpGXSXIf9ysHge5 eLF961yuVWhus9YCT61Ojyjs3aeYnkyuSy1cJ5VuYViICgGZyYxbsgXkBenl8BGQRXbF zB2sDotShtbTb3WHk7LPPIdOyvgCy6w+4/Xi0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=W7bGAq1QnTCHmQyX6X1DDH9ZWNZPeJ3oy/UMWFn748WgLhYV30/oPqKAA+mhXbo/E0 FxEGPPaxrdBOPQwycsYD8NPkUv0eSKuJnDAoGX+G5BqMS6vblkSb3R3OLzqgZ5O5ehV0 rHjVf04EI+1FzDKfrYf6JSipeIK2Lt2zLyUFM= MIME-Version: 1.0 Received: by 10.216.8.209 with SMTP id 59mr2339161wer.18.1244468922580; Mon, 08 Jun 2009 06:48:42 -0700 (PDT) In-Reply-To: <139b44430906080019w639541a7g28b5c1240bfc21d5@mail.gmail.com> References: <4A2CD48F.7988.DBFF763@d.forsyth.ru.ac.za> <139b44430906080019w639541a7g28b5c1240bfc21d5@mail.gmail.com> Date: Mon, 8 Jun 2009 09:48:42 -0400 Message-ID: From: Gabriel Lavoie To: Valentin Bud Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: d.forsyth@ru.ac.za, freebsd-questions@freebsd.org Subject: Re: Opinion request about a file server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 13:48:44 -0000 If you want to use gmirror + gjournal on the root filesystem (/), be sure to use FreeBSD 7.2. A bug prevented the system to boot on unclean shutdown because the replay of the journal took too much time and FreeBSD wanted to mount non-existant (yet) devices. It caused me a lot of trouble when I installed my server and finally I had to leave the root filesystem without gjournal as a workaround. Gabriel 2009/6/8 Valentin Bud : > On Mon, Jun 8, 2009 at 10:06 AM, DA Forsyth wrote: > >> > I think my file/print/mail server is a bit overkill: >> > http://w3.mutehq.net:8008/sysinfo/ >> >> Nice, esp when you compile world. =C2=A0 Last year I upgraded our server >> to a Core 2 Duo 1.8Ghz, Intel DG965 board. =C2=A02GB RAM. =C2=A0Previous= board >> was an ASUS P3 1.1GHz, which now hosts my backup server. =C2=A0Both ran >> FreeBSD file/print/email/web services perfectly. =C2=A0I upgraded to get >> the onboard SATA sockets so I could increase our available disk space >> (4x500GB in RAID5 for data). >> >> However, a nice benefit is that the Core2 will compile world in 1/4 >> the time, and user don't notice the server is 'busy'. >> >> SO, to the original question, yes that motherboard will work just >> fine. =C2=A0 What are you doing for system backups? =C2=A0A single drive= is not >> enough. =C2=A0I recommend a mirror pair at least, and suggest a second b= ox >> for backups. > > > > Hello community, > > =C2=A0Thanks everybody for their thoughts. After reading your posts and s= ome > articles over the > weekend I will take the gmirror(8) + gjournal(8) road. > > =C2=A0The backups will be done offsite because the company which I'm doin= g this > for > is a friend of my boss and we do have a lot of spare space or our servers= . > > thanks once again, > v > > > > -- > network warrior since 2005 > _______________________________________________ > 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 Gabriel Lavoie glavoie@gmail.com From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 14:27:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88EEA106564A for ; Mon, 8 Jun 2009 14:27:14 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from kuber.nabble.com (kuber.nabble.com [216.139.236.158]) by mx1.freebsd.org (Postfix) with ESMTP id 3B6888FC0A for ; Mon, 8 Jun 2009 14:27:14 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1MDfof-0003Lu-EV for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 07:27:13 -0700 Message-ID: <23925088.post@talk.nabble.com> Date: Mon, 8 Jun 2009 07:27:13 -0700 (PDT) From: davetbo To: freebsd-questions@freebsd.org In-Reply-To: <20080919123750.GA84143@mech-cluster238.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: dave@itstrategypartners.com References: <20080919123750.GA84143@mech-cluster238.men.bris.ac.uk> Subject: Re: rsync colon in filename to MSWin fails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 14:27:14 -0000 Here's a good workaround. This works for me from Linux to Win32. In your rsync script, before the rsync, do either find ./ -name '*:*' | xargs tar -czvf colon_files.tgz or (if you're doing the whole box as an rsync backup, like I am) do updatedb locate : | xargs tar -czvf colon_files.tgz Make sure that colon_files.tgz is in the path that's getting backed up by rsync. Then you can do the --exclude '*:*' in your rsync job to skip the files you just tarred. I tested this with the locate version above and it works. Also, updatedb & locate should go much faster than find if you want to do the whole box. I'm not sure if there's a way to use locate to just search a subdirectory, though. Best, Dave Anton Shterenlikht wrote: > > I cannot trasfer a file with a colon via rsync to a Win box. > I've rsync-3.0.4 on the FBSD (sending side) and rsync-2.6.9 > under cygwin on Win (receiving side). I'm not sure what the > error message means: > > % rsync ./http:__en.wikipedia.org_favicon.ico mexas@xxx.xxx.xxx.xxx: > rsync: rename "/cygdrive/c/Documents and Settings/mexas/My > Documents/work/.http:__en.wikipedia.org_favicon.ico.8dBX2K" -> > "http:__en.wikipedia.org_favicon.ico": No such file or directory (2) > rsync error: some files/attrs were not transferred (see previous errors) > (code 23) at main.c(1040) [sender=3.0.4] > > Note the extra dot before the file name, and extra suffix at the > end. Is this the expected behaviour? > > However, to another FBSD box transfer is fine: > > % rsync ./http:__en.wikipedia.org_favicon.ico mexas@zzz.zzz.zzz.zzz: > % > > Is this something to do with Windows, or old rsync version on cygwin? > > Even more bizzare, I get the same error even if I "--exclude" all > such files from transfer. > > many thanks > anton > > -- > Anton Shterenlikht > Room 2.6, Queen's Building > Mech Eng Dept > Bristol University > University Walk, Bristol BS8 1TR, UK > Tel: +44 (0)117 928 8233 > Fax: +44 (0)117 929 4423 > _______________________________________________ > 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" > > -- View this message in context: http://www.nabble.com/rsync-colon-in-filename-to-MSWin-fails-tp19571614p23925088.html Sent from the freebsd-questions mailing list archive at Nabble.com. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 14:36:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14EA510656A5 for ; Mon, 8 Jun 2009 14:36:16 +0000 (UTC) (envelope-from paul+fbsd@it.ca) Received: from mail.it.ca (mail.it.ca [216.235.7.67]) by mx1.freebsd.org (Postfix) with ESMTP id C8B708FC1E for ; Mon, 8 Jun 2009 14:36:12 +0000 (UTC) (envelope-from paul+fbsd@it.ca) Received: from mail.it.ca (paul@mail [216.235.7.67]) by mail.it.ca (8.13.3/8.13.3) with ESMTP id n58EaAZJ010344; Mon, 8 Jun 2009 10:36:11 -0400 (EDT) (envelope-from paul+fbsd@it.ca) DomainKey-Signature: a=rsa-sha1; s=a; d=it.ca; c=nofws; q=dns; h=received:x-authentication-warning:date:from:to:cc:subject: message-id:reply-to:references:mime-version:content-type: content-disposition:in-reply-to:user-agent; b=xcQCf0vHOBda+56KmqhCdbE7pApArvIAT+r7vOQjcFnXTu4GXGRaxDJscQcddeBsO xRib+YfQVSdGaH81VNmTKwVZVhR+6JMlyXaAslnYkXovymauvg9Zf9nX5HVqfMq Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id n58EaAxw010342; Mon, 8 Jun 2009 10:36:10 -0400 (EDT) (envelope-from paul+fbsd@it.ca) X-Authentication-Warning: mail.it.ca: paul set sender to paul+fbsd@it.ca using -f Date: Mon, 8 Jun 2009 10:36:09 -0400 From: Paul Chvostek To: Jos Chrispijn Message-ID: <20090608143609.GA5108@it.ca> References: <4A2D0A5C.8010809@webrz.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A2D0A5C.8010809@webrz.net> User-Agent: Mutt/1.5.12-2006-07-14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.it.ca [216.235.7.67]); Mon, 08 Jun 2009 10:36:11 -0400 (EDT) Cc: FreeBSD Questions Subject: Re: Cronjob 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, 08 Jun 2009 14:36:16 -0000 Hi Jos, On Mon, Jun 08, 2009 at 02:55:56PM +0200, Jos Chrispijn wrote: > > I would like to execute a script on every last day of the month in my > crontab. > Can someone tell me how I should solve that as it doesn't know which > month day is the last day of the month? > Solving this in the script to be executed is no option. The only solutions I see are the three-cronjob approach: 0 1 31 1,3,5,7,8,10,12 * /path/to/script 0 1 28 2 * /path/to/script 0 1 30 4,6,9,11 * /path/to/script Alternately, you could do this with a single cronjob by putting a little scripting intelligence into the crontab itself: 0 1 28-31 * * test `date -v+1d '+%d'` -eq 1 && /path/to/script That may be your easiest option. The script only gets run on the correct dates, but the cron job still gets run more frequently. p -- Paul Chvostek it.canada http://www.it.ca/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 14:59:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6F3E5106567F for ; Mon, 8 Jun 2009 14:59:46 +0000 (UTC) (envelope-from andreev.peter@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 038AB8FC13 for ; Mon, 8 Jun 2009 14:59:45 +0000 (UTC) (envelope-from andreev.peter@gmail.com) Received: by ewy8 with SMTP id 8so4176855ewy.43 for ; Mon, 08 Jun 2009 07:59:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=MP5cVajMg6D/Eoa62jb2jH2cKK/vhzsY70u9tWpECF4=; b=NhdlCVjB6Xy22Mb2J6sOVMlSvHycgnemCbekSgFvVxhlHSIyUgoh1uLLIDCrl5Wyo/ 7zdV9/XReQoPeupVsOs75Op2XME1AmEzfwMy+vvB/VaH8zgjps/8VW3yyJ0b8EM8DYfR muG5/a3tiDi6EdDNkebyAH8NafF2d7CAdALhA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=nVrogPCvjJAw1xTyrG6sFhqUL71j8Ibjnn9xCY5+fMsgi2xS26mjweFbXBvaDrIO1P EANA8yJK9jwS5AjzNrnV1CJNVXfzlNp7NAOtBU3UbrUEZ9zfG/JNIuKhFqFvnt31bRlt tddXJmNYA1xpQnuUWFDcFgwDBSnBCpelBDW+A= MIME-Version: 1.0 Received: by 10.216.7.209 with SMTP id 59mr2396030wep.213.1244471517656; Mon, 08 Jun 2009 07:31:57 -0700 (PDT) In-Reply-To: <4A2D0A5C.8010809@webrz.net> References: <4A2D0A5C.8010809@webrz.net> Date: Mon, 8 Jun 2009 18:31:57 +0400 Message-ID: From: Peter Andreev To: Jos Chrispijn Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 14:59:47 -0000 may be this solution will help you: * * 31 jan,mar,may,jul,aug,oct,dec * * * 30 apr,jun,sep,nov * * * 28 feb * or: * * 31 1/2 * * * 30 4/2 * * * 28 2 * 2009/6/8 Jos Chrispijn > I would like to execute a script on every last day of the month in my > crontab. > Can someone tell me how I should solve that as it doesn't know which month > day is the last day of the month? > Solving this in the script to be executed is no option. > > Thanks, Jos > > _______________________________________________ > 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 8 15:00:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2746106568E for ; Mon, 8 Jun 2009 15:00:32 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s10.blu0.hotmail.com (blu0-omc4-s10.blu0.hotmail.com [65.55.111.149]) by mx1.freebsd.org (Postfix) with ESMTP id 7A5C78FC4F for ; Mon, 8 Jun 2009 15:00:32 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP96 ([65.55.111.136]) by blu0-omc4-s10.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 08:00:32 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP96.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Mon, 8 Jun 2009 08:00:31 -0700 Date: Mon, 8 Jun 2009 11:00:23 -0400 From: Carmel To: freebsd-questions@freebsd.org In-Reply-To: <200906081115.16536.jmc-freebsd2@milibyte.co.uk> References: <200906081115.16536.jmc-freebsd2@milibyte.co.uk> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 08 Jun 2009 15:00:31.0495 (UTC) FILETIME=[DE339970:01C9E849] Subject: Re: Which nVidea driver to install 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, 08 Jun 2009 15:00:33 -0000 On Mon, 8 Jun 2009 11:15:16 +0100 Mike Clarke wrote: >On Monday 08 June 2009, Michael Powell wrote: > >> As to which of the ports you need - the regular nvidia-driver and not >> either of the 'legacy' versions should probably be used > >I found that I had to use the legacy nvidia-driver-96 port to get my >GeForce 6150 to function, as described in my post a couple of days ago >in the "Driver for nVidia Geforce 6150LE" thread >. >I don't know if the problem will apply to other 6150 based systems or >if it's just unique to my particular setup. > One last question; if I install the AMD 64 bit version of FBSD, will the NV driver work? I know that the regular one won't since it doesn't support 64 bit systems. -- Carmel From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 15:29:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1EF4106566B for ; Mon, 8 Jun 2009 15:29:49 +0000 (UTC) (envelope-from faust64@gmail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id 37F1F8FC0C for ; Mon, 8 Jun 2009 15:29:49 +0000 (UTC) (envelope-from faust64@gmail.com) Received: by fxm10 with SMTP id 10so412729fxm.43 for ; Mon, 08 Jun 2009 08:29:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=UmuFMQsWhN63gawgu0ne+n6zKIun9ug8yTCKoX6x0eA=; b=GoM0Eia+uABVz8Ll2ow2RxfJlC/dF93FQhLmHSq1Ir7haHJ4tI+bqOCbn3I0fo7vUu 3sZHmSJKWHvVWeyjMbKFxL60LaUQjJ5S8SFNlI1D/nwYUNBBZ7y0ag0hedQQPjA3x9iZ HtPCqQjkhqrczgkupdIEkJWUbS30Smq5DdOKE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=MnvuNhmxbtHVTM4a2XDv5SLZytde666EI4ijn6gpCjxtnYJDH9CPInSEdBk6vxFZoA +JX4QkTLiJLpoUloo63WpfeRj1GYwONQoNwgud8fOOKrmlaQpfLJF52I1pLvWp9BUUcW HbvU1eGEkRIrbNduQkqSeNq/yeCE2Id+OTh8o= MIME-Version: 1.0 Received: by 10.86.86.10 with SMTP id j10mr7376051fgb.37.1244474988292; Mon, 08 Jun 2009 08:29:48 -0700 (PDT) From: =?ISO-8859-1?Q?Samuel_Mart=EDn_Moro?= Date: Mon, 8 Jun 2009 17:29:28 +0200 Message-ID: To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: mkntfs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 15:29:49 -0000 Hi all. I'm trying to format an USB key with mkntfs (I tried with 1.13.1_5 and 2.0.0). Whatever I do, it never works. Some of results I got: (with 2.0.0) ~# mkntfs -F -p 63 -H 255 -S 63 /dev/da0s1 /dev/da0s1 is not a block device. mkntfs forced anyway. Cluster size has been automatically set to 4096 bytes. Initializing device with zeroes: 99%Failed to complete writing to /dev/da0s= 1 after three retries. This should not happen. ~#mkntfs -f -F -p 63 -H 255 -S 63 /dev/da0s1/dev/da0s1 is not a block device. mkntfs forced anyway. Cluster size has been automatically set to 4096 bytes. Creating NTFS volume structures. ^C ~# the only difference I noticed between 1.13.1_5 and 2.0.0 is that cluster size is automaticaly set to 2048 instead of 4096. when I tried fast format (-f), mkntfs print 'Creating NTFS volume', then I wait for 40 minutes, before killing the process (1 minute is already too long, for a 2G USB stick...). during a fast format (with both versions), a truss -p `ps ax | awk '/[m]kntfs /{print $1}'` gives me preadv(0x3,0x28229800,0x1,0x76a40000,0x0,0x2808a600) =3D 26112 (0x6600) preadv(0x3,0x28229800,0x1,0x76a40000,0x0,0x2808a600) =3D 26112 (0x6600) preadv(0x3,0x28229800,0x1,0x76a40000,0x0,0x2808a600) =3D 26112 (0x6600) preadv(0x3,0x28229800,0x1,0x76a40000,0x0,0x2808a600) =3D 26112 (0x6600) preadv(0x3,0x28229800,0x1,0x76a40000,0x0,0x2808a600) =3D 26112 (0x6600) ......... So... Is there a way to format a disk into NTFS ?! Thanks all ! Samuel Mart=EDn Moro CamTrace {EPITECH.} tek3 From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 15:39:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51E0C1065792 for ; Mon, 8 Jun 2009 15:39:43 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id 18CC28FC21 for ; Mon, 8 Jun 2009 15:39:42 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id n58FbE5i059373; Mon, 8 Jun 2009 11:37:15 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id n58FbEJd059372; Mon, 8 Jun 2009 11:37:14 -0400 (EDT) (envelope-from jerrymc) Date: Mon, 8 Jun 2009 11:37:14 -0400 From: Jerry McAllister To: Peter Andreev Message-ID: <20090608153714.GA59348@gizmo.acns.msu.edu> References: <4A2D0A5C.8010809@webrz.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: Jos Chrispijn , freebsd-questions@freebsd.org Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 15:39:44 -0000 On Mon, Jun 08, 2009 at 06:31:57PM +0400, Peter Andreev wrote: > may be this solution will help you: > > * * 31 jan,mar,may,jul,aug,oct,dec * > * * 30 apr,jun,sep,nov * > * * 28 feb * > > or: > > * * 31 1/2 * > * * 30 4/2 * > * * 28 2 * Don't forget leapyear. ////jerry > > 2009/6/8 Jos Chrispijn > > > I would like to execute a script on every last day of the month in my > > crontab. > > Can someone tell me how I should solve that as it doesn't know which month > > day is the last day of the month? > > Solving this in the script to be executed is no option. > > > > Thanks, Jos > > > _______________________________________________ > 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 8 16:05:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA7B9106564A for ; Mon, 8 Jun 2009 16:05:45 +0000 (UTC) (envelope-from jmc-freebsd2@milibyte.co.uk) Received: from relay.pcl-ipout02.plus.net (relay.pcl-ipout02.plus.net [212.159.7.100]) by mx1.freebsd.org (Postfix) with ESMTP id 835BB8FC0A for ; Mon, 8 Jun 2009 16:05:45 +0000 (UTC) (envelope-from jmc-freebsd2@milibyte.co.uk) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApoEACrTLErUnw4S/2dsb2JhbADONIQKBQ Received: from pih-relay05.plus.net ([212.159.14.18]) by relay.pcl-ipout02.plus.net with ESMTP; 08 Jun 2009 17:05:44 +0100 Received: from [84.92.153.232] (helo=curlew.milibyte.co.uk) by pih-relay05.plus.net with esmtp (Exim) id 1MDhLz-0000l7-Ik; Mon, 08 Jun 2009 17:05:43 +0100 Received: by curlew.milibyte.co.uk with local (Exim 4.69) (envelope-from ) id 1MDhLz-0001SN-1n; Mon, 08 Jun 2009 17:05:43 +0100 From: Mike Clarke To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 17:05:42 +0100 User-Agent: KMail/1.9.10 References: <200906081115.16536.jmc-freebsd2@milibyte.co.uk> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081705.42989.jmc-freebsd2@milibyte.co.uk> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: jmc-freebsd2@milibyte.co.uk X-SA-Exim-Scanned: No (on curlew.milibyte.co.uk); SAEximRunCond expanded to false X-Plusnet-Relay: 39475288d992525e16fc8e3e77b715f4 Cc: Carmel Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 16:05:46 -0000 On Monday 08 June 2009, Carmel wrote: > One last question; if I install the AMD 64 bit version of FBSD, will > the NV driver work? I know that the regular one won't since it > doesn't support 64 bit systems. I'm using i386 so have no direct experience of this but package versions of the xf86-video-nv port are available for both i386 and amd64 so you should have no problem. -- Mike Clarke From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 16:12:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C196106564A for ; Mon, 8 Jun 2009 16:12:25 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [64.156.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 0D3218FC13 for ; Mon, 8 Jun 2009 16:12:25 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from eggman.experts-exchange.com (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with ESMTP id B7A4B4169DFC; Mon, 8 Jun 2009 08:09:26 -0700 (PDT) Received: by eggman.experts-exchange.com (sSMTP sendmail emulation); Mon, 8 Jun 2009 09:12:22 -0700 Date: Mon, 8 Jun 2009 09:12:22 -0700 From: Jason Helfman To: Mike Clarke Message-ID: <20090608161220.GA33275@eggman.experts-exchange.com> References: <200906081115.16536.jmc-freebsd2@milibyte.co.uk> <200906081705.42989.jmc-freebsd2@milibyte.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <200906081705.42989.jmc-freebsd2@milibyte.co.uk> X-Operating-System: FreeBSD 7.1-RELEASE-p4 GENERIC X-Living-The-Dream: I love the SLO Life! User-Agent: Mutt/1.5.18 (2008-05-17) Cc: Carmel , freebsd-questions@freebsd.org Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 16:12:25 -0000 I am not exactly sure which driver I am using between these two, however I have found that setting up the driver and display are great with these packages installed. I guess I would be using the most recent :) nvidia-driver-173.14.12 nvidia-driver-71.86.06 nvidia-settings-173.14.09 nvidia-xconfig-1.0_2 After you use the "nvidia" driver in your Xorg.conf file, I would suggest running, nvidia-xconfig, and then nvidia-settings while in X to configure the card. -Jason On Mon, Jun 08, 2009 at 05:05:42PM +0100, Mike Clarke thus spake: >On Monday 08 June 2009, Carmel wrote: > >> One last question; if I install the AMD 64 bit version of FBSD, will >> the NV driver work? I know that the regular one won't since it >> doesn't support 64 bit systems. > >I'm using i386 so have no direct experience of this but package versions >of the xf86-video-nv port are available for both i386 and amd64 so you >should have no problem. > >-- >Mike Clarke >_______________________________________________ >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 8 16:43:35 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FB69106566C for ; Mon, 8 Jun 2009 16:43:35 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp106.prem.mail.ac4.yahoo.com (smtp106.prem.mail.ac4.yahoo.com [76.13.13.45]) by mx1.freebsd.org (Postfix) with SMTP id A8ACA8FC12 for ; Mon, 8 Jun 2009 16:43:34 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 84801 invoked from network); 8 Jun 2009 16:43:34 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=EXxU8MapIuAkkJsNyg31L4eDjFb5cyu+4vMXPeeybKX3x26zLmWGpWGIyVjkqKPLZ9QFj8QPznlg5K+dcqE17JUTf0cjgtsUsWgH7kDnLPz8qKxjG8YsWHGnq65I1BFZ52z8R7aPWoh8izTJrcnH5HLFTK5Sh8yGBL3emSeVDMo= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp106.prem.mail.ac4.yahoo.com with SMTP; 08 Jun 2009 09:43:33 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: n13kV38VM1l_50OJP7eG7NKAorPm_5MsMAQblNXo3Y6KRYFXsGsQOOzf8.b..e6n5CcKxBUz3DhsitjGREQ1nPnXDLtrlqroPAx07JPYCDYw5m61keo9Iunh9A_9bdCxPgBtBjGQ4fBJyKKvKZIAg4TCRl15N3Hnc8wrM7pbySbDXyh9IUFvQd2Q77ZC2xzdV9LH1_01f2wyLpuayDcSIedlbxUm7MnyUtQUCQBgCoAPy_Gy.lSKC8xQDcCVy_RjJ_rSwVPnb.o.npHWxKi9oLcpoLhA6nDMby5RF6nKicoQuto- X-Yahoo-Newman-Property: ymail-3 Date: Mon, 8 Jun 2009 12:43:23 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090608124323.1e422575@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/T76h40P+Bvg+g9UruM0BowB"; protocol="application/pgp-signature" Subject: NO_PROFILE option in FBSD-7.2 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, 08 Jun 2009 16:43:35 -0000 --Sig_/T76h40P+Bvg+g9UruM0BowB Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Unless I am missing it, I do not see any mention of "NO_PROFILE" listed in the examples "make.conf" file. Has it been depreciated? --=20 Jerry gesbbb@yahoo.com Serving coffee on an aircraft causes turbulence. --Sig_/T76h40P+Bvg+g9UruM0BowB Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotP7QACgkQBvaKIJWWCO236QCfUDU5OGbEqhTj/fqwyDfcuMr7 xhMAnit9Dw5dXrLrzAumVrJiNX+i06Wc =psTg -----END PGP SIGNATURE----- --Sig_/T76h40P+Bvg+g9UruM0BowB-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 16:59:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 713F0106566B for ; Mon, 8 Jun 2009 16:59:32 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id 47BC38FC27 for ; Mon, 8 Jun 2009 16:59:32 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by pzk33 with SMTP id 33so2826256pzk.3 for ; Mon, 08 Jun 2009 09:59:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=4bC3JNsFlLMb3jTD+mnt8HMG/GOJ4sdi3yQg9RLPm30=; b=BmBters6nStsrEc78KjZkMkdSxKyu7Q5AK0zEKw9VwD4MofaRieNeZzscgeKB0O6ji dIchMfq/g0vKVilIAF57zmASENosRBBA2sfxq9fXq3H3UAKdSoPukr2peo/ZAtblDlxv /1BKRZHo+c4q6ZB75zFnX3NgnXa9Lo5X7jQ7c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=VJGr1nrB40Nks+fEWt+/71/dyEfjyU+FsNxOod8xTBv4CyIAOk7uiSl8FTBFQbuqMI cDCb4L0ZdB9HtCGtBTA8dxx8eRB1M9M86i/5uSVCOTZOCwutMXM6vej1aywZD5L6MXsL oIHhVr0qI4JYbScsiX+1bhESIw54jFfdEZOmQ= MIME-Version: 1.0 Received: by 10.220.92.204 with SMTP id s12mr3817469vcm.17.1244480370858; Mon, 08 Jun 2009 09:59:30 -0700 (PDT) In-Reply-To: <20090608124323.1e422575@scorpio> References: <20090608124323.1e422575@scorpio> Date: Mon, 8 Jun 2009 10:59:30 -0600 Message-ID: From: Tim Judd To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: NO_PROFILE option in FBSD-7.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: Mon, 08 Jun 2009 16:59:32 -0000 If that's related to 'world', all world-related build options should be placed in src.conf now. What make.conf was to world+ports, is now src.conf = world, make.conf = ports Was a new feature in 7.0, IIRC On 6/8/09, Jerry wrote: > Unless I am missing it, I do not see any mention of "NO_PROFILE" listed > in the examples "make.conf" file. Has it been depreciated? > > -- > Jerry > gesbbb@yahoo.com > > Serving coffee on an aircraft causes turbulence. > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:05:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F7C11065670 for ; Mon, 8 Jun 2009 17:05:00 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id 58F278FC25 for ; Mon, 8 Jun 2009 17:04:54 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.3/8.14.3) with ESMTP id n58H4s1t029787; Mon, 8 Jun 2009 11:04:54 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.3/8.14.3/Submit) with ESMTP id n58H4sBe029784; Mon, 8 Jun 2009 11:04:54 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Mon, 8 Jun 2009 11:04:53 -0600 (MDT) From: Warren Block To: Jerry McAllister In-Reply-To: <20090608153714.GA59348@gizmo.acns.msu.edu> Message-ID: References: <4A2D0A5C.8010809@webrz.net> <20090608153714.GA59348@gizmo.acns.msu.edu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.2 (wonkity.com [127.0.0.1]); Mon, 08 Jun 2009 11:04:54 -0600 (MDT) Cc: Jos Chrispijn , Peter Andreev , freebsd-questions@freebsd.org Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 17:05:00 -0000 On Mon, 8 Jun 2009, Jerry McAllister wrote: > On Mon, Jun 08, 2009 at 06:31:57PM +0400, Peter Andreev wrote: > >> may be this solution will help you: >> >> * * 31 jan,mar,may,jul,aug,oct,dec * >> * * 30 apr,jun,sep,nov * >> * * 28 feb * >> >> or: >> >> * * 31 1/2 * >> * * 30 4/2 * >> * * 28 2 * > > Don't forget leapyear. 0 0 1 * * -Warren Block * Rapid City, South Dakota USA From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:22:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 605861065672 for ; Mon, 8 Jun 2009 17:22:19 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.235]) by mx1.freebsd.org (Postfix) with ESMTP id 1D7E68FC1A for ; Mon, 8 Jun 2009 17:22:19 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by rv-out-0506.google.com with SMTP id k40so1495888rvb.43 for ; Mon, 08 Jun 2009 10:22:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=DfFGKgb4c3YrTQuGuLQ4I0YX5ODJqM5PzfKcofx5TlY=; b=AVvzJEw14+NaeQMiyRfXYmdB2tL/Ns1Y+6NI1+KG8YMF7X21X8OzGfpCO0zCZZdtzl 26/IN9Q9m8Qbf7LpoP4CZpAj9As9KdnRZB1NHMErgRzwgNOmtXEz2mkNkUG080AxK1WK 4/S5GZ7HGMi84LeFkR4IyWKzXrZ3d6G1j5GrY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=WI1oOLaJiNwQ/ZnXoWeaOBGYub3ke3vMwQ850p/andp3D7y5tZE7GtT81FKAg134He zP7mqwIxL/7tAUtysyKG6uUH6WNvUfj54R8LMw9l1DCl+RYKj2sjZeOrPacTBx8BARt3 ZAukQbQnknBxfzxXa105HQqT2573Bcb/r/y78= MIME-Version: 1.0 Received: by 10.220.97.13 with SMTP id j13mr3854735vcn.35.1244481737992; Mon, 08 Jun 2009 10:22:17 -0700 (PDT) In-Reply-To: <740109F1ED7BA14EB02307DEF26487AB1B554BB6@ZABRYSVISEX04.af.didata.local> References: <740109F1ED7BA14EB02307DEF26487AB1B554BB6@ZABRYSVISEX04.af.didata.local> Date: Mon, 8 Jun 2009 11:22:17 -0600 Message-ID: From: Tim Judd To: Vikash Badal Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: growing a graid3 array and growfs not growing .... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 17:22:20 -0000 Sorry to revive an old thread.. I am working with raid3 vs raid5 at home to understand the difference better. And this might help the OP. RAID3 has a dedicated parity drive, and the number of consumers must be (2^n)+1 (2^1)+1 = 3 (2^2)+1 = 5 (2^3)+1 = 9 RAID5 is a distributed parity, and what seems an unlimited number of consumers. And about the fdisk error. See under providers the line: "sectorsize: 2048" - means that /boot/mbr (512 bytes) does not match the sectorsize of the provider, 2048 bytes. You'll have to append out the MBR file with zeros to fit the provider's sectorsize before fdisk will even consider placing it into the provider. Now -- A RAID array will only be as big as it's smallest member/consumer. 5x drives are probably rebuilding as the original size because of the other 4 consumers being the smaller size. Hope this helps paint a bigger picture for the OP. On 5/29/09, Vikash Badal wrote: > Can someone please advise why growfs would return: > growfs: we are not growing (8388607->4194303) ? > > > I have a FreeBSD 7.2 server in a VM. > I initially had 5 x 4G disks > > Created a raid > graid3 label datavol da2 da3 da4 da5 da6 > > I upgraded them to 5 x 8g disks > > swopped out the virtual disks one at a time > > graid3 remove -n 0 datavol > graid3 insert -n 0 datavol da2 > [wait] > ...... > graid3 remove -n 4 datavol > graid3 insert -n 4 datavol da6 > [wait] > > graid3 stop datavol > growfs /dev/raid3/datavol > > error message: growfs: we are not growing (8388607->4194303) ? > > vix-sw-raid# graid3 list > Geom name: datavol > State: COMPLETE > Components: 5 > Flags: NONE > GenID: 0 > SyncID: 1 > ID: 2704170828 > Zone64kFailed: 0 > Zone64kRequested: 0 > Zone16kFailed: 0 > Zone16kRequested: 0 > Zone4kFailed: 0 > Zone4kRequested: 524 > Providers: > 1. Name: raid3/datavol > Mediasize: 34359736320 (32G) > Sectorsize: 2048 > Mode: r0w0e0 > Consumers: > 1. Name: da2 > Mediasize: 8589934592 (8.0G) > Sectorsize: 512 > Mode: r1w1e1 > State: ACTIVE > Flags: NONE > GenID: 0 > SyncID: 1 > Number: 0 > Type: DATA > 2. Name: da3 > Mediasize: 8589934592 (8.0G) > Sectorsize: 512 > Mode: r1w1e1 > State: ACTIVE > Flags: NONE > GenID: 0 > SyncID: 1 > Number: 1 > Type: DATA > 3. Name: da4 > Mediasize: 8589934592 (8.0G) > Sectorsize: 512 > Mode: r1w1e1 > State: ACTIVE > Flags: NONE > GenID: 0 > SyncID: 1 > Number: 2 > Type: DATA > 4. Name: da5 > Mediasize: 8589934592 (8.0G) > Sectorsize: 512 > Mode: r1w1e1 > State: ACTIVE > Flags: NONE > GenID: 0 > SyncID: 1 > Number: 3 > Type: DATA > 5. Name: da6 > Mediasize: 8589934592 (8.0G) > Sectorsize: 512 > Mode: r1w1e1 > State: ACTIVE > Flags: NONE > GenID: 0 > SyncID: 1 > Number: 4 > Type: PARITY > > > fdisk /dev/raid3/datavol > ******* Working on device /dev/raid3/datavol ******* > parameters extracted from in-core disklabel are: > cylinders=1044 heads=255 sectors/track=63 (16065 blks/cyl) > > Figures below won't work with BIOS for partitions not in cyl 1 > parameters to be used for BIOS calculations are: > cylinders=1044 heads=255 sectors/track=63 (16065 blks/cyl) > > fdisk: invalid fdisk partition table found > fdisk: /boot/mbr: length must be a multiple of sector size > > > what am I missing ? > > > > > > > > > > Please note: This email and its content are subject to the disclaimer as > displayed at the following link > http://www.is.co.za/legal/E-mail+Confidentiality+Notice+and+Disclaimer.htm. > Should you not have Web access, send a mail to disclaimers@is.co.za and a > copy will be emailed to you. > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:48:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4369C106566C for ; Mon, 8 Jun 2009 17:48:31 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp108.prem.mail.ac4.yahoo.com (smtp108.prem.mail.ac4.yahoo.com [76.13.13.47]) by mx1.freebsd.org (Postfix) with SMTP id DC9908FC17 for ; Mon, 8 Jun 2009 17:48:30 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 97160 invoked from network); 8 Jun 2009 17:48:30 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=zNni6aVPBsH1Gl396bwUdQA633TXKa4rAZ70wlmKBPKJHI0DxWOrJlQsR3aW0P/Dw3PcB7QFPmXFA0TiG8N99Bp8NxKFxkUeVryeoKHF84LFdx9yGCIkvSyX+4xysDok62Y1Dr53wudvi0Xp6v8YjPIz1NZ5ps32qBV44X1BBDk= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp108.prem.mail.ac4.yahoo.com with SMTP; 08 Jun 2009 10:48:30 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: 4HFWg5YVM1k.rH8KGmgSKM_9H9jDu.l.7ImGqyZ8VhUFkk50LA9jTnl3tdRY66Xk6RIJyeUzbooZlOZfnEoZUENThovDX2MEnc_zxHD452qbzQ5hoTafSgy4pfRv9Y5EtbhtW1KP5Mzf6vSHXfxWcKYT3oglxa1_MOCztcXKLof9fe4JTADPNbg.xkZmVujXoWg37RnZCJ3MTinGdh5eV1JCIXFZdJzcRukm9Jdy0gMe19Q6uuNNNB4ZVH5eQGwEUQDjswQkkiQsXgeOr7GTDz6MGSlK5z1OgI41Hxyp_Ena5kLealorIbw9kOA8CFKqCq0cRqzk X-Yahoo-Newman-Property: ymail-3 Date: Mon, 8 Jun 2009 13:48:27 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090608134827.51c25950@scorpio> In-Reply-To: References: <20090608124323.1e422575@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/r4OIqBsDFMzHYwV.YePKGvz"; protocol="application/pgp-signature" Subject: Re: NO_PROFILE option in FBSD-7.2 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, 08 Jun 2009 17:48:31 -0000 --Sig_/r4OIqBsDFMzHYwV.YePKGvz Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Mon, 8 Jun 2009 10:59:30 -0600 Tim Judd wrote: >If that's related to 'world', all world-related build options should >be placed in src.conf now. What make.conf was to world+ports, is now >src.conf =3D world, make.conf =3D ports Please don't top post. It makes following a thread a lot harder than necessary. I all ready know about 'src.conf'; it was the NO_PROFILE option that I was inquiring about. I just did some Googling and found this: WITHOUT_PROFILE=3Dtrue I am wondering if that is a replacement for NO_PROFILE? Interestingly enough, there does not seem to be a '/usr/share/examples/etc/src.conf' file either. --=20 Jerry gesbbb@yahoo.com Your wig steers the gig. Lord Buckley --Sig_/r4OIqBsDFMzHYwV.YePKGvz Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotTuwACgkQBvaKIJWWCO0G7wCfXqtzLVWjZwl28yuFqNii6OGJ hL0AnRhA0n5XasH7eBP/mSNwdVuWqIru =ZWqn -----END PGP SIGNATURE----- --Sig_/r4OIqBsDFMzHYwV.YePKGvz-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:50:23 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFDE3106566C for ; Mon, 8 Jun 2009 17:50:23 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 852A68FC0A for ; Mon, 8 Jun 2009 17:50:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDizD-00029k-UX for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 17:50:19 +0000 Received: from pool-68-239-70-200.res.east.verizon.net ([68.239.70.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 17:50:19 +0000 Received: from nightrecon by pool-68-239-70-200.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 17:50:19 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 08 Jun 2009 13:51:53 -0400 Lines: 24 Message-ID: References: <20090608042712.43c87019@gumby.homeunix.com> <20090608125410.4cd9c45a@gumby.homeunix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-68-239-70-200.res.east.verizon.net Sender: news Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 17:50:24 -0000 RW wrote: [snip] > > Simple, but wrong. > > The driver is not a Linux driver, if you go to the nVidia site you will > see that there are separate Linux and FreeBSD drivers. You don't need > to load linux.ko at all if you built nvidia.ko without Linux support. > [snip] Aha! You're right! Something has changed. I was describing how things used to be, not how they are now. Shows how long it's been since I was paying attention. Since I never even bothered to look at the Makefile in a long time I never noticed the WITHOUT_LINUX=yes, which is new and since the default is to build the Linux support it just passed by me. But I stand corrected. Hadn't noticed how it had changed. Thanks for waking me up :-) -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:58:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 203091065674 for ; Mon, 8 Jun 2009 17:58:39 +0000 (UTC) (envelope-from chuckr@telenix.org) Received: from mail5.sea5.speakeasy.net (mail5.sea5.speakeasy.net [69.17.117.7]) by mx1.freebsd.org (Postfix) with ESMTP id F0FC48FC0A for ; Mon, 8 Jun 2009 17:58:38 +0000 (UTC) (envelope-from chuckr@telenix.org) Received: (qmail 2669 invoked from network); 8 Jun 2009 17:58:38 -0000 Received: from april.chuckr.org (HELO april.telenix.org) (chuckr@[66.92.151.30]) (envelope-sender ) by mail5.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 8 Jun 2009 17:58:37 -0000 Message-ID: <4A2D5161.7050406@telenix.org> Date: Mon, 08 Jun 2009 13:58:57 -0400 From: Chuck Robey User-Agent: Thunderbird 2.0.0.19 (X11/20090121) MIME-Version: 1.0 To: Lars Eighner References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> In-Reply-To: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: General and specific make 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, 08 Jun 2009 17:58:39 -0000 Lars Eighner wrote: > > What I need most is to find (a) make tutorial(s) that do not suppose > make is > being used for compling c/c++ programs. Yes, I know, that is mostly why > make exists, but many tutorials plunge right into C examples with > implicit C > rules, while -- it seems to me -- make could be much more useful for a > variety of things, and I could sure use more of the general and arbitrary > examples. > > Second, it appears to me that the pmake document in the books section of > the > documentation is not longer in sync with make as actually installed in > FreeBSD 7.x. In particular, the pmake doc refers to switches which make no > longer recognizes and which do not have clear replacements in man make. > > Now for my particular question. > > I have some sources which may or may not exist. My target should be > rebuilt > if a source exists that is younger than the target. But sources that do > not exist should be ignored and make should not be perplexed over how to > create them. How do I express that kind of relationship? > OK, first, about those docs in /usr/share/doc/{psd|smm|usd|others}, they all come from the original papers written by the CSRG folks well before FreeBSD was created. They are somewhat useful, so for that (and sheer historical interest) they're kept around, but they aren't updated. If you wanted to see updated stuff, try the man page, which is both constantly updated and complete in it's coverage. OK, for your "particular question", it's honestly not real clear what you're asking ... are you asking how to tell make NOT to make something? I'll make a guess here, and lay the guess out for you to comment on, maybe asking you to reconsider your question might have the side effect of making the answer be obvious? Anyhow, maybe you have a target that has a dependency listed for it, but make(1) doesn't have rules on how to remake that dependency, and either make(1) can't find it, or does find it, but finds that the time stamps of that dependency shows it has to be remade. One easy way to fix that would be to do a "touch" (read the man page on touch for info) that dependency, which should cause make(1) to lose interest in rebuilding it. I couldn't get more exact without having a better idea of what's happening. Oh, BTW, about applications of make for other than C progs. Using make(1) to compile other things, like maybe python progs, or whatever, is fairly obvious that it can be handled just like the C progs. Yes, you CAN use make(1) for non-compilation tasks, but I've never seen any documentation for that beyond the make(1) man page. In fact, the only example of doing that which I've even seen was helping NIS to maintain itself. Two things about make(1): first, it's very widely terrified programmers, but (secondly) it's really not all that complex, so it's actually frightening everyone based upon it's reputation. Well, that, and the one truly poor makefile I've ever seen, that one defaulted to by all of the autoconf tools (the gcc Makefile is an example of this, it's too bad to be described without using foul language). It doesn't have to be that way, but it does a fine job of scaring everyone away from make(1). From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 17:58:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 452241065689 for ; Mon, 8 Jun 2009 17:58:46 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id D275F8FC13 for ; Mon, 8 Jun 2009 17:58:45 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDj7J-0002UY-DT for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 17:58:41 +0000 Received: from pool-68-239-70-200.res.east.verizon.net ([68.239.70.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 17:58:41 +0000 Received: from nightrecon by pool-68-239-70-200.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 17:58:41 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 08 Jun 2009 14:00:22 -0400 Lines: 30 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-68-239-70-200.res.east.verizon.net Sender: news Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 17:58:46 -0000 Carmel wrote: > On Sun, 07 Jun 2009 20:13:30 -0400 > Michael Powell wrote: > > [snip] > >>The nv can easily be installed along with Xorg. The nvidia driver is >>more complex as it relies on the linuxolator to function, so there is >>a larger number of dependencies. But when it comes time to change from >>nv to nvidia it is just a line or two in the xorg.conf. > > Thanks for you assistance. BTW, what lines should I modify if I do > decide to install the nVidia driver at some point? I will install the > NV driver and get the desktop working. > Section "Device" # Driver "nv" Driver "nvidia" Just change "nv" to "nvidia", and perhaps in Section "Module" Load "glx" if you need to. Also notice what RW said; I am behind the times wrt to how things have changed. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 18:22:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BCA9D106564A for ; Mon, 8 Jun 2009 18:22:31 +0000 (UTC) (envelope-from erobison@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id 76C6A8FC08 for ; Mon, 8 Jun 2009 18:22:31 +0000 (UTC) (envelope-from erobison@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so1901445ywe.13 for ; Mon, 08 Jun 2009 11:22:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=6pLcxMdsmjU3AnXDJvBGNAuD8vRcRBmm/mzF8W+gIuk=; b=HpVg8HizoSzbifggkYDLJqTkN8llBzfGdhbWTrX3VED7qQWgvBHMGJYJ3ImSf14AUX XM22iSH4bag2Aydpxmi6QBjaqqIC/2+rhZqIxgUChiWhPIkelBbC4NuJAnzkS+FVyqpz jkroruXO9/AVm5HzDbtp5KFbGtKQ5Txqf4Nv0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=s0k8kf+ZY1rt4vS/HFCxib3rEFsU3eZmVGzoUbZz7FL08ZRUDMtT6i4IEcXlP1mO1m ATD9NsMLkOU9JUAvzh7bR0EcXazgI4P3Lnr320n6P4XGsmNIWtYfZA+vasxk8ak5JuJY Yl1t170f742MiEndxlGkUSm1Xkxo7SDGmknC0= MIME-Version: 1.0 Received: by 10.90.66.10 with SMTP id o10mr248382aga.90.1244483816456; Mon, 08 Jun 2009 10:56:56 -0700 (PDT) From: ericr Date: Mon, 8 Jun 2009 11:56:35 -0600 Message-ID: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 18:22:32 -0000 Hi, I need to buy some new servers, and mgmt has decreed that we get them from someplace which will provide service contracts with on-site h/w suppport, which means HP, Dell, Sun, IBM, etc. Has anyone bought servers from one of the big manufacturers lately and had good luck with them? It seems hard to get them to tell you what controllers and chipsets they're using in servers, to compare against the supported hardware list. What I'm looking for isn't all that exotic: rack mountable RAID-5 controller 4-6 or more disks (hot swappable would be nice, but not mandatory) dual power supplies (hot swappable would be nice, but not mandatory) CDROM 2 ethernet ports some RAM a video card an Intel or AMD CPU - single, two CPU, or multicore doesn't really matter. and the all-important onsite service. These things need to be pretty reliable, both of the data centers they're going into are a couple of hours from my house, so I don't want a dead power supply to take out the server. We've used SuperMicro's in the past, and they've been wildly variable. Some of them have run ok for years, some died within weeks, and kept dying no matter what parts we put in. (yes, I checked the power, it was clean. My guess is just a bad run of motherboards). I've got 3 servers that have never been able to stay up for more than a couple of days, we don't even use them. Regardless, any one have suggestions on what current models of servers are out there that run? Thanks! - ericr From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 18:31:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3243F1065670 for ; Mon, 8 Jun 2009 18:31:05 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id CFA718FC1A for ; Mon, 8 Jun 2009 18:31:04 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n58IV3Hk015273 for ; Mon, 8 Jun 2009 14:31:03 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n58IV33d015271; Mon, 8 Jun 2009 14:31:03 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id F1B08BED8; Mon, 8 Jun 2009 14:30:45 -0400 (EDT) To: freebsd-questions@freebsd.org In-reply-to: <4A2D0A5C.8010809@webrz.net> (message from Jos Chrispijn on Mon, 08 Jun 2009 14:55:56 +0200) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090608183045.F1B08BED8@kev.msw.wpafb.af.mil> Date: Mon, 8 Jun 2009 14:30:45 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 18:31:05 -0000 >> On Mon, 08 Jun 2009 14:55:56 +0200, >> Jos Chrispijn said: J> I would like to execute a script on every last day of the month in my J> crontab. Can someone tell me how I should solve that as it doesn't know J> which month day is the last day of the month? Solving this in the script J> to be executed is no option. I have two scripts for this; one handles the last day of the month, and the other handles the last work/business day of the month. http://www.hcst.net/~vogelke/src/lastday/ -- Karl Vogel I don't speak for the USAF or my company Liberty means responsibility. That is why most men dread it. --G. B. Shaw From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 18:37:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2B271065675 for ; Mon, 8 Jun 2009 18:37:53 +0000 (UTC) (envelope-from frederique@isafeelin.org) Received: from progress.isafeelin.org (progress.isafeelin.org [84.244.146.92]) by mx1.freebsd.org (Postfix) with ESMTP id 4ADAA8FC18 for ; Mon, 8 Jun 2009 18:37:53 +0000 (UTC) (envelope-from frederique@isafeelin.org) Received: from progress.isafeelin.org (localhost [127.0.0.1]) by progress.isafeelin.org (Postfix) with ESMTP id D8B47130DDA; Mon, 8 Jun 2009 20:37:51 +0200 (CEST) Received: from s55919a03.adsl.wanadoo.nl (s55919a03.adsl.wanadoo.nl [85.145.154.3]) (using SSLv3 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by progress.isafeelin.org (Postfix) with ESMTPSA id 88157130DD7; Mon, 8 Jun 2009 20:37:51 +0200 (CEST) Received: from [192.168.1.15] (unknown [192.168.1.15]) by s55919a03.adsl.wanadoo.nl (Postfix) with ESMTP id EFCB0103B55; Mon, 8 Jun 2009 20:37:50 +0200 (CEST) Message-ID: <4A2D5A7E.7030907@isafeelin.org> Date: Mon, 08 Jun 2009 20:37:50 +0200 From: Frederique Rijsdijk User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: ericr References: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> In-Reply-To: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 18:37:54 -0000 ericr wrote: > I need to buy some new servers, and mgmt has decreed that we get them from > someplace which will provide service contracts with on-site h/w suppport, > which means HP, Dell, Sun, IBM, etc. We use Dell almost exclusively. Although Dell doesn't officially support FreeBSD, Dell hardware is tier-1 for FreeBSD. I think their hardware is quite OK. The machines are built well. Haven't had too much to deal with their onsite service (which is a good sign), but the times that I did I think they handled it quite well, the parts were in house within 4 hours and in a case where a motherboard had to be replaced, a Dell technician was sent in as well and did his job fine. Dell's RAID controllers (Perc/5i and Perc/6i) work fine in BSD, and some tools are available although with Linux emulation which kind of sucks. Here's a sample dmesg of a 1950: > Copyright (c) 1992-2009 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 is a registered trademark of The FreeBSD Foundation. > FreeBSD 7.1-RELEASE-p4 #0: Fri Apr 3 10:28:13 CEST 2009 > root@hostname:/usr/obj/usr/src/sys/GENERIC > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: Intel(R) Xeon(R) CPU 5148 @ 2.33GHz (2327.52-MHz K8-class CPU) > Origin = "GenuineIntel" Id = 0x6fb Stepping = 11 > Features=0xbfebfbff > Features2=0x4e3bd > AMD Features=0x20100800 > AMD Features2=0x1 > Cores per package: 2 > usable memory = 4276400128 (4078 MB) > avail memory = 4114935808 (3924 MB) > ACPI APIC Table: > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs > cpu0 (BSP): APIC ID: 0 > cpu1 (AP): APIC ID: 1 > ioapic0: Changing APIC ID to 2 > ioapic0 irqs 0-23 on motherboard > kbd1 at kbdmux0 > ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) > acpi0: on motherboard > acpi0: [ITHREAD] > acpi0: Power Button (fixed) > Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 > acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 > Timecounter "HPET" frequency 14318180 Hz quality 900 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > pcib1: at device 2.0 on pci0 > pci4: on pcib1 > pcib2: at device 0.0 on pci4 > pci5: on pcib2 > pcib3: at device 0.0 on pci5 > pci6: on pcib3 > pcib4: at device 0.0 on pci6 > pci7: on pcib4 > bce0: mem 0xf4000000-0xf5ffffff irq 16 at device 0.0 on pci7 > miibus0: on bce0 > brgphy0: PHY 1 on miibus0 > brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto > bce0: Ethernet address: 00:22:19:82:e8:45 > bce0: [ITHREAD] > bce0: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); F/W (0x04000305); Flags( MFW MSI ) > pcib5: at device 1.0 on pci5 > pci8: on pcib5 > pcib6: at device 0.3 on pci4 > pci9: on pcib6 > pcib7: at device 3.0 on pci0 > pci1: on pcib7 > mfi0: port 0xec00-0xecff mem 0xfc480000-0xfc4bffff,0xfc440000-0xfc47ffff irq 16 at device 0.0 on pci1 > mfi0: Megaraid SAS driver Ver 3.00 > mfi0: 2031 (292323270s/0x0020/info) - Shutdown command received from host > mfi0: 2032 (boot + 3s/0x0020/info) - Firmware initialization started (PCI ID 0060/1000/1f0c/1028) > mfi0: 2033 (boot + 3s/0x0020/info) - Firmware version 1.11.82-0473 > mfi0: 2034 (boot + 3s/0x0008/info) - Battery Present > mfi0: 2035 (boot + 3s/0x0020/info) - Package version 6.0.3-0002 > mfi0: 2036 (boot + 21s/0x0004/info) - Enclosure (SES) discovered on PD 20(c None/p0) > mfi0: 2037 (boot + 21s/0x0002/info) - Inserted: Encl PD 20 > mfi0: 2038 (boot + 21s/0x0002/info) - Inserted: PD 20(c None/p0) Info: enclPd=20, scsiType=d, portMap=09, sasAddr=5001e090e8810900,0000000000000000 > mfi0: 2039 (boot + 21s/0x0002/info) - Inserted: PD 00(e0x20/s0) > mfi0: 2040 (boot + 21s/0x0002/info) - Inserted: PD 00(e0x20/s0) Info: enclPd=20, scsiType=0, portMap=00, sasAddr=5000c5000d253121,0000000000000000 > mfi0: 2041 (boot + 21s/0x0002/info) - Inserted: PD 01(e0x20/s1) > mfi0: 2042 (boot + 21s/0x0002/info) - Inserted: PD 01(e0x20/s1) Info: enclPd=20, scsiType=0, portMap=01, sasAddr=5000c5000d25eb55,0000000000000000 > mfi0: 2043 (boot + 21s/0x0002/info) - Inserted: PD 02(e0x20/s2) > mfi0: 2044 (boot + 21s/0x0002/info) - Inserted: PD 02(e0x20/s2) Info: enclPd=20, scsiType=0, portMap=02, sasAddr=5000c5000d2420ed,0000000000000000 > mfi0: 2045 (292323299s/0x0020/info) - Time established as 04/06/09 8:54:59; (29 seconds since power on) > mfi0: 2046 (292323338s/0x0008/info) - Battery temperature is normal > mfi0: [ITHREAD] > pcib8: at device 4.0 on pci0 > pci10: on pcib8 > pcib9: at device 5.0 on pci0 > pci11: on pcib9 > pcib10: at device 6.0 on pci0 > pci12: on pcib10 > pcib11: at device 7.0 on pci0 > pci13: on pcib11 > pcib12: at device 28.0 on pci0 > pci2: on pcib12 > pcib13: at device 0.0 on pci2 > pci3: on pcib13 > bce1: mem 0xf8000000-0xf9ffffff irq 16 at device 0.0 on pci3 > miibus1: on bce1 > brgphy1: PHY 1 on miibus1 > brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto > bce1: Ethernet address: 00:22:19:82:e8:43 > bce1: [ITHREAD] > bce1: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); F/W (0x04000305); Flags( MFW MSI ) > uhci0: port 0xcce0-0xccff irq 21 at device 29.0 on pci0 > uhci0: [GIANT-LOCKED] > uhci0: [ITHREAD] > usb0: on uhci0 > usb0: USB revision 1.0 > uhub0: on usb0 > uhub0: 2 ports with 2 removable, self powered > uhci1: port 0xccc0-0xccdf irq 20 at device 29.1 on pci0 > uhci1: [GIANT-LOCKED] > uhci1: [ITHREAD] > usb1: on uhci1 > usb1: USB revision 1.0 > uhub1: on usb1 > uhub1: 2 ports with 2 removable, self powered > uhci2: port 0xcca0-0xccbf irq 21 at device 29.2 on pci0 > uhci2: [GIANT-LOCKED] > uhci2: [ITHREAD] > usb2: on uhci2 > usb2: USB revision 1.0 > uhub2: on usb2 > uhub2: 2 ports with 2 removable, self powered > uhci3: port 0xcc80-0xcc9f irq 20 at device 29.3 on pci0 > uhci3: [GIANT-LOCKED] > uhci3: [ITHREAD] > usb3: on uhci3 > usb3: USB revision 1.0 > uhub3: on usb3 > uhub3: 2 ports with 2 removable, self powered > ehci0: mem 0xfc500400-0xfc5007ff irq 21 at device 29.7 on pci0 > ehci0: [GIANT-LOCKED] > ehci0: [ITHREAD] > usb4: EHCI version 1.0 > usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 > usb4: on ehci0 > usb4: USB revision 2.0 > uhub4: on usb4 > uhub4: 8 ports with 8 removable, self powered > uhub5: on uhub4 > uhub5: multiple transaction translators > uhub5: 4 ports with 4 removable, self powered > pcib14: at device 30.0 on pci0 > pci14: on pcib14 > vgapci0: port 0xdc00-0xdcff mem 0xd8000000-0xdfffffff,0xfc2d0000-0xfc2dffff irq 19 at device 13.0 on pci14 > isab0: at device 31.0 on pci0 > isa0: on isab0 > atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 31.1 on pci0 > ata0: on atapci0 > ata0: [ITHREAD] > ata1: on atapci0 > ata1: [ITHREAD] > fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 > fdc0: does not respond > device_attach: fdc0 attach returned 6 > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 > sio0: type 16550A > sio0: [FILTER] > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 > sio1: type 16550A > sio1: [FILTER] > cpu0: on acpi0 > est0: on cpu0 > est: CPU supports Enhanced Speedstep, but is not recognized. > est: cpu_vendor GenuineIntel, msr 71f071f0600071f > device_attach: est0 attach returned 6 > p4tcc0: on cpu0 > cpu1: on acpi0 > est1: on cpu1 > est: CPU supports Enhanced Speedstep, but is not recognized. > est: cpu_vendor GenuineIntel, msr 71f071f0600071f > device_attach: est1 attach returned 6 > p4tcc1: on cpu1 > fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 > fdc0: does not respond > device_attach: fdc0 attach returned 6 > cryptosoft0: on motherboard > orm0: at iomem 0xc0000-0xc8fff,0xc9000-0xc9fff,0xec000-0xeffff on isa0 > atkbdc0: at port 0x60,0x64 on isa0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > atkbd0: [GIANT-LOCKED] > atkbd0: [ITHREAD] > ppc0: cannot reserve I/O port range > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > Timecounters tick every 1.000 msec > acd0: DVDROM at ata0-master UDMA33 > mfi0: 2047 (292323338s/0x0008/info) - Current capacity of the battery is above threshold > mfid0: on mfi0 > mfid0: 952832MB (1951399936 sectors) RAID volume '' is optimal > SMP: AP CPU #1 Launched! > Trying to mount root from ufs:/dev/mfid0s1a > ipfw2 (+ipv6) initialized, divert loadable, nat loadable, rule-based forwarding disabled, default to deny, logging disabled From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 18:45:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC8BF106564A for ; Mon, 8 Jun 2009 18:45:53 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id BC08C8FC0A for ; Mon, 8 Jun 2009 18:45:53 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by pzk33 with SMTP id 33so20975pzk.3 for ; Mon, 08 Jun 2009 11:45:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=9223fyVH5sUUQFXSOOpU6VejZ3XAbKPTYfQypr1cTaA=; b=vY7K9mJV9vd/BzJ8oWC3FNQRWm8Vlw56vlVn6oYYw/4d3SRXSwmKr6HYXVJO156zEb WxbmQlrxeBNRnFtSPzBRFNPXBak19HfErUsJvzNTuiA2ILSRexOphZNqcl7un9PGgFK/ gA7ILhS8rpiVMVkSXkEWxEgeXUpKLIA+8PJ3Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=JTofG7bO4EtEBGAnNlG4vkRR9QLQlJuIU54FmHiWKunvj1brXc4a1bBMPUFw/aCGQ4 ccfCC7hsITQk0hbu4aYZ1vSO3BGC2NLR5UfBOVf0cyAGkkCmlh/yVpemLcH2cZxBqe2x M17XXqC+z6Ff4oJFhj8fM4NuJns1EtfZHbh5M= Received: by 10.114.180.18 with SMTP id c18mr10797928waf.5.1244486753306; Mon, 08 Jun 2009 11:45:53 -0700 (PDT) Received: from ?131.230.191.52? (ee122.engr.siu.edu [131.230.191.52]) by mx.google.com with ESMTPS id l30sm6265539waf.0.2009.06.08.11.45.51 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 11:45:52 -0700 (PDT) Message-ID: <4A2D5C52.5020803@gmail.com> Date: Mon, 08 Jun 2009 13:45:38 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: nightrecon@verizon.net 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: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 18:45:54 -0000 Michael Powell wrote: > Section "Device" > # Driver "nv" > Driver "nvidia" > > Just change "nv" to "nvidia", and perhaps in Section "Module" > Load "glx" if you need to. > > > Also notice what RW said; I am behind the times wrt to how things have > changed. > > -Mike What I have found to work is to make the nvidia-driver port, but not install it (to get the dependencies). Then I would download the recent driver from nVidia's website (as of this email, 185.18.14), untar it and install that instead. If nvidia-xconfig doesn't work immediately, you can install it from ports w/o a problem (or do the configuration by hand). It's a little involved, but it gets the job done. nVidia's README for FreeBSD drivers: http://us.download.nvidia.com/freebsd/185.18.14/README/index.html -Joseph From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 18:56:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8B4E1065670 for ; Mon, 8 Jun 2009 18:56:22 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 78C008FC1A for ; Mon, 8 Jun 2009 18:56:22 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 346865086C for ; Mon, 8 Jun 2009 20:56:22 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 1849050865 for ; Mon, 8 Jun 2009 20:56:22 +0200 (CEST) Message-ID: <4A2D5EDF.2000508@webrz.net> Date: Mon, 08 Jun 2009 20:56:31 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: FreeBSD Questions References: <20090608183045.F1B08BED8@kev.msw.wpafb.af.mil> In-Reply-To: <20090608183045.F1B08BED8@kev.msw.wpafb.af.mil> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 18:56:23 -0000 Found another solution (for running @ 23:58): 58 23 * * * [ `date -d tomorrow +%d` -eq '01' ] && /myscript thanks for all other suggestions, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:00:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A14210656C9 for ; Mon, 8 Jun 2009 19:00:24 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id BB5158FC08 for ; Mon, 8 Jun 2009 19:00:23 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDk4z-00055q-Ru for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 19:00:21 +0000 Received: from pool-68-239-70-200.res.east.verizon.net ([68.239.70.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 19:00:21 +0000 Received: from nightrecon by pool-68-239-70-200.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 19:00:21 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 08 Jun 2009 15:02 -0400 Lines: 34 Message-ID: References: <4A2D5C52.5020803@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-68-239-70-200.res.east.verizon.net Sender: news Subject: Re: Which nVidea driver to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 19:00:39 -0000 LoH wrote: [snip] > What I have found to work is to make the nvidia-driver port, but not > install it (to get the dependencies). Then I would download the recent > driver from nVidia's website (as of this email, 185.18.14), untar it and > install that instead. If nvidia-xconfig doesn't work immediately, you > can install it from ports w/o a problem (or do the configuration by hand). > > It's a little involved, but it gets the job done. > > nVidia's README for FreeBSD drivers: > http://us.download.nvidia.com/freebsd/185.18.14/README/index.html > Yes - I agree that these utilities should be considered the more "proper" approach. Editing the xorg.conf by hand should be where one ends up after everything else hasn't worked. Generally speaking, most of these get it either right or so very close to right that only a minor tweak or two is needed. My config is somewhat non standard in that I use two monitors, one LCD flatscreen and the other an old 17" CRT. There are two methods for dual monitors, either multiple X screens or utilize the TwinView feature of the nvidia driver. Since the TwinView approach allows to drag windows from one monitor to the other with a mouse (what I wanted) I went that way. Ultimately in the end it took manual hackery to get it to work. But yes - use the utilities first, that's what they're made for. Only resort to hackery as a last resort. -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:04:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5AF471065670 for ; Mon, 8 Jun 2009 19:04:12 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 08CB88FC15 for ; Mon, 8 Jun 2009 19:04:11 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qyk3 with SMTP id 3so4480208qyk.3 for ; Mon, 08 Jun 2009 12:04:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=E9loA31V4L9+rzHtSRMEOQhzFbWx1hvDjqaNLMf59qw=; b=yAHsclyABvSPYQGQe8cjUXr2ggFM4b45K+5LACT8P/WixpeY4QP55nLTKIk37A75rL GzmpnDo7r5xk5jnHDj3NDX7E5i+qZ36bH1//VF97ipfKmZJ7dRj6h84QD8QQDpdK0gHH Xhh2zSOJmC69lIIQD2mX6e4Xo2Iyf1TcfdFl0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=n+MrVFvocHqv6Wdj7GHj3rg3UDqJe1irdsEmry+fcSWPOMIhvoRHMy5BB3GkkK2GMF ReLMvFcPBoRZG53nacfCq9OWFj9qEvkbueqtQltF6REK3Tt5DPdd+Nfh5GPqN8DdYpov uDBws6j2it+FuLvDKn0fqPak1zCRPtlQUu4vA= MIME-Version: 1.0 Received: by 10.220.73.5 with SMTP id o5mr3878223vcj.112.1244487851187; Mon, 08 Jun 2009 12:04:11 -0700 (PDT) In-Reply-To: <4A2D5A7E.7030907@isafeelin.org> References: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> <4A2D5A7E.7030907@isafeelin.org> Date: Mon, 8 Jun 2009 13:04:11 -0600 Message-ID: From: Tim Judd To: Frederique Rijsdijk Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ericr , freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:04:13 -0000 And I say you get what you pay for. My organization uses Dell exclusively and it's been a thorn in my side from day one. The AC power requirements (it seems) for Dells are about 3x as much as Gateways (I know, Gateway doesn't provide servers). The power draw for the Dells don't seem to be any better for them, in fact, they seem to run hotter. iXsystems, the PC-BSD guys, build components and provide hardware warranty like "the big companies". I would pick IBM or iXsystems. IBM's warranty policy is written out, the IBMs have had more overall success than any other big company brand, and we're talking the pioneers of the PCs.. "IBM or IBM compatible". IBMs are the highest priced units, but I've had zero problems with them. I dream big, only because I can. Good luck. On 6/8/09, Frederique Rijsdijk wrote: > ericr wrote: >> I need to buy some new servers, and mgmt has decreed that we get them from >> someplace which will provide service contracts with on-site h/w suppport, >> which means HP, Dell, Sun, IBM, etc. > > We use Dell almost exclusively. Although Dell doesn't officially support > FreeBSD, Dell hardware is tier-1 for FreeBSD. I think their hardware is > quite OK. The machines are built well. Haven't had too much to deal with > their onsite service (which is a good sign), but the times that I did I > think they handled it quite well, the parts were in house within 4 hours > and in a case where a motherboard had to be replaced, a Dell technician > was sent in as well and did his job fine. > > Dell's RAID controllers (Perc/5i and Perc/6i) work fine in BSD, and some > tools are available although with Linux emulation which kind of sucks. > > Here's a sample dmesg of a 1950: > >> Copyright (c) 1992-2009 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 is a registered trademark of The FreeBSD Foundation. >> FreeBSD 7.1-RELEASE-p4 #0: Fri Apr 3 10:28:13 CEST 2009 >> root@hostname:/usr/obj/usr/src/sys/GENERIC >> Timecounter "i8254" frequency 1193182 Hz quality 0 >> CPU: Intel(R) Xeon(R) CPU 5148 @ 2.33GHz (2327.52-MHz K8-class >> CPU) >> Origin = "GenuineIntel" Id = 0x6fb Stepping = 11 >> >> Features=0xbfebfbff >> >> Features2=0x4e3bd >> AMD Features=0x20100800 >> AMD Features2=0x1 >> Cores per package: 2 >> usable memory = 4276400128 (4078 MB) >> avail memory = 4114935808 (3924 MB) >> ACPI APIC Table: >> FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs >> cpu0 (BSP): APIC ID: 0 >> cpu1 (AP): APIC ID: 1 >> ioapic0: Changing APIC ID to 2 >> ioapic0 irqs 0-23 on motherboard >> kbd1 at kbdmux0 >> ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413) >> acpi0: on motherboard >> acpi0: [ITHREAD] >> acpi0: Power Button (fixed) >> Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 >> acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 >> acpi_hpet0: iomem 0xfed00000-0xfed003ff on >> acpi0 >> Timecounter "HPET" frequency 14318180 Hz quality 900 >> pcib0: port 0xcf8-0xcff on acpi0 >> pci0: on pcib0 >> pcib1: at device 2.0 on pci0 >> pci4: on pcib1 >> pcib2: at device 0.0 on pci4 >> pci5: on pcib2 >> pcib3: at device 0.0 on pci5 >> pci6: on pcib3 >> pcib4: at device 0.0 on pci6 >> pci7: on pcib4 >> bce0: mem >> 0xf4000000-0xf5ffffff irq 16 at device 0.0 on pci7 >> miibus0: on bce0 >> brgphy0: PHY 1 on miibus0 >> brgphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, >> 1000baseT-FDX, auto >> bce0: Ethernet address: 00:22:19:82:e8:45 >> bce0: [ITHREAD] >> bce0: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); F/W >> (0x04000305); Flags( MFW MSI ) >> pcib5: at device 1.0 on pci5 >> pci8: on pcib5 >> pcib6: at device 0.3 on pci4 >> pci9: on pcib6 >> pcib7: at device 3.0 on pci0 >> pci1: on pcib7 >> mfi0: port 0xec00-0xecff mem >> 0xfc480000-0xfc4bffff,0xfc440000-0xfc47ffff irq 16 at device 0.0 on pci1 >> mfi0: Megaraid SAS driver Ver 3.00 >> mfi0: 2031 (292323270s/0x0020/info) - Shutdown command received from host >> mfi0: 2032 (boot + 3s/0x0020/info) - Firmware initialization started (PCI >> ID 0060/1000/1f0c/1028) >> mfi0: 2033 (boot + 3s/0x0020/info) - Firmware version 1.11.82-0473 >> mfi0: 2034 (boot + 3s/0x0008/info) - Battery Present >> mfi0: 2035 (boot + 3s/0x0020/info) - Package version 6.0.3-0002 >> mfi0: 2036 (boot + 21s/0x0004/info) - Enclosure (SES) discovered on PD >> 20(c None/p0) >> mfi0: 2037 (boot + 21s/0x0002/info) - Inserted: Encl PD 20 >> mfi0: 2038 (boot + 21s/0x0002/info) - Inserted: PD 20(c None/p0) Info: >> enclPd=20, scsiType=d, portMap=09, >> sasAddr=5001e090e8810900,0000000000000000 >> mfi0: 2039 (boot + 21s/0x0002/info) - Inserted: PD 00(e0x20/s0) >> mfi0: 2040 (boot + 21s/0x0002/info) - Inserted: PD 00(e0x20/s0) Info: >> enclPd=20, scsiType=0, portMap=00, >> sasAddr=5000c5000d253121,0000000000000000 >> mfi0: 2041 (boot + 21s/0x0002/info) - Inserted: PD 01(e0x20/s1) >> mfi0: 2042 (boot + 21s/0x0002/info) - Inserted: PD 01(e0x20/s1) Info: >> enclPd=20, scsiType=0, portMap=01, >> sasAddr=5000c5000d25eb55,0000000000000000 >> mfi0: 2043 (boot + 21s/0x0002/info) - Inserted: PD 02(e0x20/s2) >> mfi0: 2044 (boot + 21s/0x0002/info) - Inserted: PD 02(e0x20/s2) Info: >> enclPd=20, scsiType=0, portMap=02, >> sasAddr=5000c5000d2420ed,0000000000000000 >> mfi0: 2045 (292323299s/0x0020/info) - Time established as 04/06/09 >> 8:54:59; (29 seconds since power on) >> mfi0: 2046 (292323338s/0x0008/info) - Battery temperature is normal >> mfi0: [ITHREAD] >> pcib8: at device 4.0 on pci0 >> pci10: on pcib8 >> pcib9: at device 5.0 on pci0 >> pci11: on pcib9 >> pcib10: at device 6.0 on pci0 >> pci12: on pcib10 >> pcib11: at device 7.0 on pci0 >> pci13: on pcib11 >> pcib12: at device 28.0 on pci0 >> pci2: on pcib12 >> pcib13: at device 0.0 on pci2 >> pci3: on pcib13 >> bce1: mem >> 0xf8000000-0xf9ffffff irq 16 at device 0.0 on pci3 >> miibus1: on bce1 >> brgphy1: PHY 1 on miibus1 >> brgphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, >> 1000baseT-FDX, auto >> bce1: Ethernet address: 00:22:19:82:e8:43 >> bce1: [ITHREAD] >> bce1: ASIC (0x57081020); Rev (B2); Bus (PCI-X, 64-bit, 133MHz); F/W >> (0x04000305); Flags( MFW MSI ) >> uhci0: port >> 0xcce0-0xccff irq 21 at device 29.0 on pci0 >> uhci0: [GIANT-LOCKED] >> uhci0: [ITHREAD] >> usb0: on uhci0 >> usb0: USB revision 1.0 >> uhub0: on usb0 >> uhub0: 2 ports with 2 removable, self powered >> uhci1: port >> 0xccc0-0xccdf irq 20 at device 29.1 on pci0 >> uhci1: [GIANT-LOCKED] >> uhci1: [ITHREAD] >> usb1: on uhci1 >> usb1: USB revision 1.0 >> uhub1: on usb1 >> uhub1: 2 ports with 2 removable, self powered >> uhci2: port >> 0xcca0-0xccbf irq 21 at device 29.2 on pci0 >> uhci2: [GIANT-LOCKED] >> uhci2: [ITHREAD] >> usb2: on uhci2 >> usb2: USB revision 1.0 >> uhub2: on usb2 >> uhub2: 2 ports with 2 removable, self powered >> uhci3: port >> 0xcc80-0xcc9f irq 20 at device 29.3 on pci0 >> uhci3: [GIANT-LOCKED] >> uhci3: [ITHREAD] >> usb3: on uhci3 >> usb3: USB revision 1.0 >> uhub3: on usb3 >> uhub3: 2 ports with 2 removable, self powered >> ehci0: mem 0xfc500400-0xfc5007ff irq 21 >> at device 29.7 on pci0 >> ehci0: [GIANT-LOCKED] >> ehci0: [ITHREAD] >> usb4: EHCI version 1.0 >> usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 >> usb4: on ehci0 >> usb4: USB revision 2.0 >> uhub4: on usb4 >> uhub4: 8 ports with 8 removable, self powered >> uhub5: on >> uhub4 >> uhub5: multiple transaction translators >> uhub5: 4 ports with 4 removable, self powered >> pcib14: at device 30.0 on pci0 >> pci14: on pcib14 >> vgapci0: port 0xdc00-0xdcff mem >> 0xd8000000-0xdfffffff,0xfc2d0000-0xfc2dffff irq 19 at device 13.0 on pci14 >> isab0: at device 31.0 on pci0 >> isa0: on isab0 >> atapci0: port >> 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 31.1 on pci0 >> ata0: on atapci0 >> ata0: [ITHREAD] >> ata1: on atapci0 >> ata1: [ITHREAD] >> fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on >> acpi0 >> fdc0: does not respond >> device_attach: fdc0 attach returned 6 >> sio0: configured irq 4 not in bitmap of probed irqs 0 >> sio0: port may not be enabled >> sio0: configured irq 4 not in bitmap of probed irqs 0 >> sio0: port may not be enabled >> sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on >> acpi0 >> sio0: type 16550A >> sio0: [FILTER] >> sio1: configured irq 3 not in bitmap of probed irqs 0 >> sio1: port may not be enabled >> sio1: configured irq 3 not in bitmap of probed irqs 0 >> sio1: port may not be enabled >> sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 >> sio1: type 16550A >> sio1: [FILTER] >> cpu0: on acpi0 >> est0: on cpu0 >> est: CPU supports Enhanced Speedstep, but is not recognized. >> est: cpu_vendor GenuineIntel, msr 71f071f0600071f >> device_attach: est0 attach returned 6 >> p4tcc0: on cpu0 >> cpu1: on acpi0 >> est1: on cpu1 >> est: CPU supports Enhanced Speedstep, but is not recognized. >> est: cpu_vendor GenuineIntel, msr 71f071f0600071f >> device_attach: est1 attach returned 6 >> p4tcc1: on cpu1 >> fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on >> acpi0 >> fdc0: does not respond >> device_attach: fdc0 attach returned 6 >> cryptosoft0: on motherboard >> orm0: at iomem >> 0xc0000-0xc8fff,0xc9000-0xc9fff,0xec000-0xeffff on isa0 >> atkbdc0: at port 0x60,0x64 on isa0 >> atkbd0: irq 1 on atkbdc0 >> kbd0 at atkbd0 >> atkbd0: [GIANT-LOCKED] >> atkbd0: [ITHREAD] >> ppc0: cannot reserve I/O port range >> sc0: at flags 0x100 on isa0 >> sc0: VGA <16 virtual consoles, flags=0x300> >> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 >> Timecounters tick every 1.000 msec >> acd0: DVDROM at ata0-master UDMA33 >> mfi0: 2047 (292323338s/0x0008/info) - Current capacity of the battery is >> above threshold >> mfid0: on mfi0 >> mfid0: 952832MB (1951399936 sectors) RAID volume '' is optimal >> SMP: AP CPU #1 Launched! >> Trying to mount root from ufs:/dev/mfid0s1a >> ipfw2 (+ipv6) initialized, divert loadable, nat loadable, rule-based >> forwarding disabled, default to deny, logging disabled > _______________________________________________ > 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 8 19:06:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B58210656A8 for ; Mon, 8 Jun 2009 19:06:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 422A38FC08 for ; Mon, 8 Jun 2009 19:06:22 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MDkAm-0005N3-8q for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 19:06:20 +0000 Received: from pool-68-239-70-200.res.east.verizon.net ([68.239.70.200]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 19:06:20 +0000 Received: from nightrecon by pool-68-239-70-200.res.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 08 Jun 2009 19:06:20 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Mon, 08 Jun 2009 15:08:01 -0400 Lines: 29 Message-ID: References: <20090608124323.1e422575@scorpio> <20090608134827.51c25950@scorpio> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-68-239-70-200.res.east.verizon.net Sender: news Subject: Re: NO_PROFILE option in FBSD-7.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 19:06:22 -0000 Jerry wrote: > On Mon, 8 Jun 2009 10:59:30 -0600 > Tim Judd wrote: > >>If that's related to 'world', all world-related build options should >>be placed in src.conf now. What make.conf was to world+ports, is now >>src.conf = world, make.conf = ports > > Please don't top post. It makes following a thread a lot harder than > necessary. I all ready know about 'src.conf'; it was the NO_PROFILE > option that I was inquiring about. > > I just did some Googling and found this: > > WITHOUT_PROFILE=true > > I am wondering if that is a replacement for NO_PROFILE? Yes. Just WITHOUT_PROFILE in /etc/src.conf is all you need. > Interestingly enough, there does not seem to be a > '/usr/share/examples/etc/src.conf' file either. The list can be found in man src.conf -Mike From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:06:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE4DF10656B9 for ; Mon, 8 Jun 2009 19:06:57 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr16.xs4all.nl (smtp-vbr16.xs4all.nl [194.109.24.36]) by mx1.freebsd.org (Postfix) with ESMTP id 646798FC16 for ; Mon, 8 Jun 2009 19:06:56 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr16.xs4all.nl (8.13.8/8.13.8) with ESMTP id n58J6txI018888; Mon, 8 Jun 2009 21:06:55 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 79495BA8B; Mon, 8 Jun 2009 21:06:55 +0200 (CEST) Date: Mon, 8 Jun 2009 21:06:55 +0200 From: Roland Smith To: Jerry Message-ID: <20090608190655.GB34213@slackbox.xs4all.nl> References: <20090608124323.1e422575@scorpio> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Pd0ReVV5GZGQvF3a" Content-Disposition: inline In-Reply-To: <20090608124323.1e422575@scorpio> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: NO_PROFILE option in FBSD-7.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: Mon, 08 Jun 2009 19:06:58 -0000 --Pd0ReVV5GZGQvF3a Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 08, 2009 at 12:43:23PM -0400, Jerry wrote: > Unless I am missing it, I do not see any mention of "NO_PROFILE" listed > in the examples "make.conf" file. Has it been depreciated? It has been moved to src.conf as WITHOUT_PROFILE. See src.conf(5).=20 Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --Pd0ReVV5GZGQvF3a Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotYU8ACgkQEnfvsMMhpyVHggCeMLvMGqovKG+zO/ue4AW56j/3 4X8An0Sy5BV2Jzr6TdIAXoC41wFsGo/G =huM6 -----END PGP SIGNATURE----- --Pd0ReVV5GZGQvF3a-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:20:33 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B1A3106564A for ; Mon, 8 Jun 2009 19:20:33 +0000 (UTC) (envelope-from kurt.buff@gmail.com) Received: from mail-px0-f199.google.com (mail-px0-f199.google.com [209.85.216.199]) by mx1.freebsd.org (Postfix) with ESMTP id 3E8598FC20 for ; Mon, 8 Jun 2009 19:20:33 +0000 (UTC) (envelope-from kurt.buff@gmail.com) Received: by pxi37 with SMTP id 37so2922798pxi.3 for ; Mon, 08 Jun 2009 12:20:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=3rhN+vqZ0BIyo6bFqq4LzVoFeNFCZ/0DPZzgsP8rB64=; b=cKcBAzfu9BnJjPQrkuqgxnSl+4t4qchVphsCjWneRzhKDEa2ehwx/tYcF2B6uGCHQZ pW+zXMXj9w7+9TUWpyEtduV/CTyI7T6nWmJKNyRS445bV0zTYTCYRBSHXUL0yLiAV1eM hIH27Zcy1dgNxH7DiqzyaEW2TLXFSHMxANcS8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=S+hqycZQoRNkqcxTu4o2tFW5wX5UHNYDbNrzm1VHGLNeNR+IsBpo0jFBMBoRRS1OaW PrqiiykB4dkbHMYHySKzC58NK2Z3xPPdtXAnlg7vmcMsUGnHrA9WIOHuk7nbiXTGwSH6 f4io+5jhojNoLiOqVKIw90EoL2ElOhipDdhH8= MIME-Version: 1.0 Received: by 10.143.165.9 with SMTP id s9mr2810276wfo.54.1244488832962; Mon, 08 Jun 2009 12:20:32 -0700 (PDT) In-Reply-To: References: <20080919123750.GA84143@mech-cluster238.men.bris.ac.uk> <87skrwjb9d.fsf@kobe.laptop> Date: Mon, 8 Jun 2009 12:20:32 -0700 Message-ID: From: Kurt Buff To: questions@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: Subject: Fwd: rsync colon in filename to MSWin fails X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:20:33 -0000 Dagnabbit! Meant to also send this to the list. Kurt On Fri, Sep 19, 2008 at 10:28, Giorgos Keramidas wrote: > On Fri, 19 Sep 2008 13:37:50 +0100, Anton Shterenlikht wrote: >> I cannot trasfer a file with a colon via rsync to a Win box. >> I've rsync-3.0.4 on the FBSD (sending side) and rsync-2.6.9 >> under cygwin on Win (receiving side). I'm not sure what the >> error message means: >> >> % rsync ./http:__en.wikipedia.org_favicon.ico mexas@xxx.xxx.xxx.xxx: >> rsync: rename "/cygdrive/c/Documents and Settings/mexas/My Documents/wor= k/.http:__en.wikipedia.org_favicon.ico.8dBX2K" -> "http:__en.wikipedia.org_= favicon.ico": No such file or directory (2) >> rsync error: some files/attrs were not transferred (see previous errors)= (code 23) at main.c(1040) [sender=3D3.0.4] >> >> Note the extra dot before the file name, and extra suffix at the >> end. Is this the expected behaviour? > > Yes, this is the expected broken behavior of Windows. =C2=A0The ':' chara= cter > cannot be used in a normal filename in Windows. =C2=A0The bug goes way ba= ck, > when DOS developers chose to use ':' to denote 'drive names'. > >> However, to another FBSD box transfer is fine: >> >> % rsync ./http:__en.wikipedia.org_favicon.ico mexas@zzz.zzz.zzz.zzz: >> % > > UNIX only reserves '/' as the path separator (and in some cases the '\0' > character for the end-of-fiename string marker). =C2=A0So the ':' charact= er > is valid for file names or directory names. > >> Is this something to do with Windows, or old rsync version on cygwin? > > Yes, it has to do with Windows. It does indeed have to do with Windows - see this article: http://msdn.microsoft.com/en-us/library/aa365247.aspx However, there's another thing to know about the use of colons in file names, and it's not simply to do with driver letters - NTFS has a facility called Alternate Data Streams, which was implemented to support Macintoshes, originally. See this article for a start: http://msdn.microsoft.com/en-us/library/aa364404(VS.85).aspx From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:22:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94A6C106566B for ; Mon, 8 Jun 2009 19:22:51 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 26BAD8FC20 for ; Mon, 8 Jun 2009 19:22:50 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: by bwz17 with SMTP id 17so534593bwz.43 for ; Mon, 08 Jun 2009 12:22:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=tdtvWVXcS13qykWKXNp2E7Hv2PZTw2FZ8DWxIavw4Kk=; b=g5owy49eu0oiIrxNbqEkvAtj44VlR/BL+p6EVhQM4i9euY5QU6uYgMFSKbFheknu56 xbHs+RLT2e82aAEpvdGUmDX/K+bM8rJKb2wM10Po5gizvFBjxYw1JyPXpPVackhUw2jM WQJDzk3b+8I7gMVJujh18+j0Tici+b5rFV7QI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=Hftg/7dv/D+EpvlpqxZ6t2QgaZl43AWwz9HoT2YKW0XPuOCpyL6+PVVWHICS9rL7+H c0YtiBGRYRG0YFwSU83LGNF8z/aYD9xvzUKAncM5fuXSGshrg4hTtlT4XYwp27V09ayv I7HDSGzxDXLVk26By+4o4fzrS3DI8eJAQC/NY= MIME-Version: 1.0 Received: by 10.223.123.129 with SMTP id p1mr4606253far.0.1244487440259; Mon, 08 Jun 2009 11:57:20 -0700 (PDT) Date: Mon, 8 Jun 2009 19:57:20 +0100 Message-ID: From: FRLinux To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: 7.2-STABLE and iSCSI X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:22:52 -0000 Hello, I am currently using a 7.2-STABLE with iSCSI enabled in the kernel. I have tried to enable a file system which is 2.4TB in size (this is on an amd64 architecture). I have followed different documentations I found and can export an iSCSI target fine and initiate the iSCSI drive either on a Linux or FreeBSD client. I am using the /usr/ports/net/iscsi-target-20080207_2 The problem is concerning the size, as the maximum of the file system I see is 800G out of 2.4TB. I have double checked the target (server) and the initiator (client) and the cylinders is what does not match. On the server I have a slice with 15000 cylinders whereas the client sees only 4000 of them. All the other figures match. So, did I hit a limitation or am I just doing something wrong? Thanks for your help, Steph From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:33:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3621B106564A for ; Mon, 8 Jun 2009 19:33:09 +0000 (UTC) (envelope-from miklosovic.freebsd@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id B45488FC15 for ; Mon, 8 Jun 2009 19:33:08 +0000 (UTC) (envelope-from miklosovic.freebsd@gmail.com) Received: by bwz17 with SMTP id 17so542306bwz.43 for ; Mon, 08 Jun 2009 12:33:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=7az/z9PsevRgLa1qs24U1njXr2IU7PNsn0X1EVQr/Os=; b=wPwgvlOdid63J8Rkht5Qxp8ygxTQtKYDZy0Eo9K320BzopIJohWvDs8xsDeNpFzx5W edynh07cej+0V/s0wAOkXWRPffDCjw/tt5O/sc0qiI1/d7qk82MgQ+QZwwpnpbgezgeL OdouyMVmYM5FGts8wgN1Gm8iklCAUoQSdO9Jk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=n2/4rtGSwvFxfLhNsjyUhVYbn9AVZT6C/tI/htDA3o/GbISYfXLKS1jgIIR/VDyRii OVsayEHQMdEhmN4spLYjuFa04YNiAg3fkunRyofILiAT6ZdrqIhsPgHyDxPeB3U9pVl1 Nw4pbmrbGt15gJU58szJAk0+xwSiwJgdYkEBM= MIME-Version: 1.0 Received: by 10.204.60.194 with SMTP id q2mr6965581bkh.150.1244487920454; Mon, 08 Jun 2009 12:05:20 -0700 (PDT) Date: Mon, 8 Jun 2009 21:05:20 +0200 Message-ID: From: Stefan Miklosovic To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: port for separation audio from video in mp4 file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:33:10 -0000 hi, title says it, i downloaded mp4 file by youtube-dl, but it downloaded video and audio as well. I would like to separate audio from that file. i try to find some port in /usr/ports/audio but nothing reasonable occudred. i tried "find . -type f -name pkg-descr | xargs grep mp4" but these were only some "offtopic" programs :) thank you From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:52:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D2601065673 for ; Mon, 8 Jun 2009 19:52:56 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id E22628FC1D for ; Mon, 8 Jun 2009 19:52:55 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id 9D77916C020B; Mon, 8 Jun 2009 21:52:54 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n58JqmmJ003028; Mon, 8 Jun 2009 21:52:48 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 8 Jun 2009 21:52:48 +0200 From: Polytropon To: Stefan Miklosovic Message-Id: <20090608215248.aac6dadd.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: port for separation audio from video in mp4 file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 19:52:56 -0000 On Mon, 8 Jun 2009 21:05:20 +0200, Stefan Miklosovic wrote: > title says it, i downloaded mp4 file by youtube-dl, > but it downloaded video and audio as well. I would > like to separate audio from that file. Maybe mplayer can do that for you. It has options -dumpvideo and -dumpaudio. As you know, mplayer / mencoder can do everything that you can imagine. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:53:07 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C756B106566B for ; Mon, 8 Jun 2009 19:53:07 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id 74C3B8FC17 for ; Mon, 8 Jun 2009 19:53:01 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id n58JoXFD060298; Mon, 8 Jun 2009 15:50:33 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id n58JoXem060297; Mon, 8 Jun 2009 15:50:33 -0400 (EDT) (envelope-from jerrymc) Date: Mon, 8 Jun 2009 15:50:33 -0400 From: Jerry McAllister To: ericr Message-ID: <20090608195033.GA60266@gizmo.acns.msu.edu> References: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:53:08 -0000 On Mon, Jun 08, 2009 at 11:56:35AM -0600, ericr wrote: > Hi, > > I need to buy some new servers, and mgmt has decreed that we get them from > someplace which will provide service contracts with on-site h/w suppport, > which means HP, Dell, Sun, IBM, etc. Our group has a lot of Dells from Poweredge 650-s to 2950-s and some other groups in our department also run 46xx and some other things. They have been successful and reliable. We have also run a few HP servers with FreeBSD with no major problems, though one came with a DOA motherboard. But they came out and replaced it right away. ////jerry > > Has anyone bought servers from one of the big manufacturers lately and had > good luck with them? It seems hard to get them to tell you what controllers > and chipsets they're using in servers, to compare against the supported > hardware list. > > What I'm looking for isn't all that exotic: > > rack mountable > RAID-5 controller > 4-6 or more disks (hot swappable would be nice, but not mandatory) > dual power supplies (hot swappable would be nice, but not mandatory) > CDROM > 2 ethernet ports > some RAM > a video card > an Intel or AMD CPU - single, two CPU, or multicore doesn't really matter. > > and the all-important onsite service. > > These things need to be pretty reliable, both of the data centers they're > going into are a couple of hours from my house, so I don't want a dead > power supply to take out the server. We've used SuperMicro's in the past, > and they've been wildly variable. Some of them have run ok for years, some > died within weeks, and kept dying no matter what parts we put in. (yes, I > checked the power, it was clean. My guess is just a bad run of > motherboards). I've got 3 servers that have never been able to stay up for > more than a couple of days, we don't even use them. > > Regardless, any one have suggestions on what current models of servers are > out there that run? > > Thanks! > > - ericr > _______________________________________________ > 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 8 19:55:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10C0510656AE for ; Mon, 8 Jun 2009 19:55:00 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr17.xs4all.nl (smtp-vbr17.xs4all.nl [194.109.24.37]) by mx1.freebsd.org (Postfix) with ESMTP id 9A2638FC13 for ; Mon, 8 Jun 2009 19:54:59 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr17.xs4all.nl (8.13.8/8.13.8) with ESMTP id n58Jsw2n096250; Mon, 8 Jun 2009 21:54:58 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id EBA73BAA4; Mon, 8 Jun 2009 21:54:57 +0200 (CEST) Date: Mon, 8 Jun 2009 21:54:57 +0200 From: Roland Smith To: Samuel =?iso-8859-15?Q?Mart=EDn?= Moro Message-ID: <20090608195457.GC34213@slackbox.xs4all.nl> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="H8ygTp4AXg6deix2" Content-Disposition: inline In-Reply-To: X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: mkntfs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:55:00 -0000 --H8ygTp4AXg6deix2 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 08, 2009 at 05:29:28PM +0200, Samuel Mart=EDn Moro wrote: > Hi all. >=20 > I'm trying to format an USB key with mkntfs (I tried with 1.13.1_5 and > 2.0.0). > Whatever I do, it never works. >=20 > Some of results I got: >=20 > (with 2.0.0) > ~# mkntfs -F -p 63 -H 255 -S 63 /dev/da0s1 > /dev/da0s1 is not a block device. Are you using the version from the sysutils/ntfsprogs port? That is patched to deal with the fact that FreeBSD doesn't have block devices anymore and to align read/write operations to the media block size, which is required on FreeBSD.=20 Also if you want to mount the drive, use the fusefs-ntfs driver. It's more recent. > So... Is there a way to format a disk into NTFS ?! If the port doesn't work, try using a windoze box. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --H8ygTp4AXg6deix2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotbJEACgkQEnfvsMMhpyW6JwCfSiPBNyuELczbZzJRHeyq+nOo +SgAoJYLD0gLJFqFvBmWN7ZHa2Ilu+k+ =9ENF -----END PGP SIGNATURE----- --H8ygTp4AXg6deix2-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 19:57:29 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B37E910656EA for ; Mon, 8 Jun 2009 19:57:29 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id EFA228FC08 for ; Mon, 8 Jun 2009 19:57:28 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n58JvHKO007614; Mon, 8 Jun 2009 21:57:17 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n58JvG9M007611; Mon, 8 Jun 2009 21:57:16 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Mon, 8 Jun 2009 21:57:16 +0200 (CEST) From: Wojciech Puchar To: Polytropon In-Reply-To: <20090608215248.aac6dadd.freebsd@edvax.de> Message-ID: References: <20090608215248.aac6dadd.freebsd@edvax.de> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Stefan Miklosovic Subject: Re: port for separation audio from video in mp4 file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 19:57:30 -0000 > > Maybe mplayer can do that for you. It has options -dumpvideo > and -dumpaudio. As you know, mplayer / mencoder can do everything > that you can imagine. :-) > -dumpaudio -vc dummy will dump audio and skip video decoding at all From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 20:12:20 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE16F1065672 for ; Mon, 8 Jun 2009 20:12:20 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr14.xs4all.nl (smtp-vbr14.xs4all.nl [194.109.24.34]) by mx1.freebsd.org (Postfix) with ESMTP id 492E08FC08 for ; Mon, 8 Jun 2009 20:12:20 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr14.xs4all.nl (8.13.8/8.13.8) with ESMTP id n58KCIxt065582; Mon, 8 Jun 2009 22:12:18 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id DDC8FBA8B; Mon, 8 Jun 2009 22:12:17 +0200 (CEST) Date: Mon, 8 Jun 2009 22:12:17 +0200 From: Roland Smith To: Lars Eighner Message-ID: <20090608201217.GD34213@slackbox.xs4all.nl> References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="n/aVsWSeQ4JHkrmm" Content-Disposition: inline In-Reply-To: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: General and specific make 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, 08 Jun 2009 20:12:21 -0000 --n/aVsWSeQ4JHkrmm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 07, 2009 at 11:52:17PM -0500, Lars Eighner wrote: >=20 > What I need most is to find (a) make tutorial(s) that do not suppose make= is > being used for compling c/c++ programs. Yes, I know, that is mostly why > make exists, but many tutorials plunge right into C examples with implici= t C > rules, while -- it seems to me -- make could be much more useful for a > variety of things, and I could sure use more of the general and arbitrary > examples. I use make to e.g. build complex LaTeX documents with included gnuplot graphs. Works like a charm. But that it is not conceptually different =66rom compiling a C program. =20 > I have some sources which may or may not exist. My target should be rebu= ilt > if a source exists that is younger than the target. But sources that do > not exist should be ignored and make should not be perplexed over how to > create them. How do I express that kind of relationship? I use the following to create PDFs from gnuplot files without enumerating them beforehand. Maybe that is what you're looking for? ----- Makefile fragment ----- # See SPECIAL TARGETS in make(1) =2EPHONY: all clean =2ESUFFIXES: .eps .pdf .gp .d # See VARIABLE ASSIGNMENTS in make(1) GP!=3Dls *.gp|sed -e 's/\.gp/\.pdf/g' all: ${GP} # Suffix-transformation rule. See chapter 3 in the PMake tutorial=20 # (/usr/share/doc/psd/12.make/paper.ascii.gz) =2Egp.pdf:=20 gnuplot $*.gp 2>&- epstopdf $*.eps rm -f $*.eps *.log clean: rm -f *.log *.pdf *.eps ----- Makefile fragment ----- Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --n/aVsWSeQ4JHkrmm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotcKEACgkQEnfvsMMhpyVXIgCfWhqX4yHUuVKzJIu5PjawL8OY mOEAnj1qPbWapcimQ7s3kugeVz8p4pZb =DLfC -----END PGP SIGNATURE----- --n/aVsWSeQ4JHkrmm-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 20:45:38 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0AC8106567C for ; Mon, 8 Jun 2009 20:45:38 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: from mx1.identry.com (on.identry.com [66.111.0.194]) by mx1.freebsd.org (Postfix) with ESMTP id 88EF98FC12 for ; Mon, 8 Jun 2009 20:45:38 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: (qmail 28999 invoked by uid 89); 8 Jun 2009 20:46:02 -0000 Received: from unknown (HELO ?192.168.1.110?) (jalmberg@75.127.142.66) by mx1.identry.com with ESMTPA; 8 Jun 2009 20:46:02 -0000 Mime-Version: 1.0 (Apple Message framework v753.1) In-Reply-To: <20090608195033.GA60266@gizmo.acns.msu.edu> References: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> <20090608195033.GA60266@gizmo.acns.msu.edu> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <75B6A513-9426-45B6-94AC-EA0A1884FCA6@identry.com> Content-Transfer-Encoding: 7bit From: John Almberg Date: Mon, 8 Jun 2009 16:45:36 -0400 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.753.1) Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 20:45:39 -0000 >> Hi, >> >> I need to buy some new servers, and mgmt has decreed that we get >> them from >> someplace which will provide service contracts with on-site h/w >> suppport, >> which means HP, Dell, Sun, IBM, etc. I have two Intel servers that I like a lot. I don't have on-site support, but it might be available from one of Intel's official distributors. -- John From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 20:57:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C1ED106566C for ; Mon, 8 Jun 2009 20:57:00 +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 441FD8FC14 for ; Mon, 8 Jun 2009 20:57:00 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 8540 invoked from network); 8 Jun 2009 20:56:59 -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 ; 8 Jun 2009 20:56:59 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1335C5084E; Mon, 8 Jun 2009 16:56:58 -0400 (EDT) To: Dino Vliet References: <147334.52373.qm@web51105.mail.re2.yahoo.com> From: Lowell Gilbert Date: Mon, 08 Jun 2009 16:56:57 -0400 In-Reply-To: <147334.52373.qm@web51105.mail.re2.yahoo.com> (Dino Vliet's message of "Sat\, 6 Jun 2009 15\:48\:40 -0700 \(PDT\)") Message-ID: <443aaa78bq.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: mi@aldan.algebra.com, freebsd-questions@freebsd.org, mm@FreeBSD.org Subject: Re: tcllib error while installing tcllib on amd64 system running freebsd 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 20:57:00 -0000 Dino Vliet writes: > [*=A0=A0 ]=A0 [8.6b1] comm=A0=A0=A0=A0=A0=A0=A0 !Connect to re= mote failed: couldn't open socket: connection timed out=A0 Taking a look in the comm.test file, it looks to me like you already had something on port 12345, so an attempt to open such a port failed. --=20 Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:01:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 164491065672 for ; Mon, 8 Jun 2009 21:01:11 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from outbound-mail-12.bluehost.com (outbound-mail-12.bluehost.com [69.89.18.112]) by mx1.freebsd.org (Postfix) with SMTP id D653A8FC19 for ; Mon, 8 Jun 2009 21:01:10 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 28708 invoked by uid 0); 8 Jun 2009 21:01:10 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by outboundproxy1.bluehost.com with SMTP; 8 Jun 2009 21:01:10 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=apotheon.com; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-Identified-User; b=lDrso3uyS60IyDfgLx9P6nmQsRrhFErAxMX7F3Mj2Z70dXujkA5cix96y2h0czfKB26GtFnp32B9kJ4Nn9Vagg5CykgpVicJCNddnBRt2/RIulh2Fjm0m2uqRP7qksmu; Received: from c-24-8-180-234.hsd1.co.comcast.net ([24.8.180.234] helo=kokopelli.hydra) by box543.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MDlxt-0006iy-S3 for freebsd-questions@freebsd.org; Mon, 08 Jun 2009 15:01:10 -0600 Received: by kokopelli.hydra (sSMTP sendmail emulation); Mon, 8 Jun 2009 14:55:49 -0600 Date: Mon, 8 Jun 2009 14:55:49 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20090608205549.GA53856@kokopelli.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="a8Wt8u1KmwUX3Y2C" Content-Disposition: inline In-Reply-To: <20090608044543.0c6d4602@scorpio> User-Agent: Mutt/1.4.2.3i X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.org} {sentby:smtp auth 24.8.180.234 authed with ren@apotheon.org} Subject: Re: ISP 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, 08 Jun 2009 21:01:11 -0000 --a8Wt8u1KmwUX3Y2C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 08, 2009 at 04:45:43AM -0400, Jerry wrote: >=20 > I have used GoDaddy for 7 years now without a single problem. Maybe I > am just lucky. I have only contacted them twice; however, I received > a quick and courteous response to my inquiry. I try to learn from others' mistakes to reduce the likelihood that I will be forced to learn from my own. If you really want to learn from your own mistakes, though, go ahead and ignore the instances where GoDaddy has screwed over other customers, and just keep using it in willful ignorance until the day when your luck changes. I guess that's your prerogative. >=20 > I know nothing about their philanthropic practices, nor does it concern > me, unless I happen to be the beneficiary of such acts. I think you missed the import of what I said about supporting open source projects, and how that seems a strongly correlated indicator of other good business practices. --=20 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] Quoth Paul Graham: "Object-oriented programming offers a sustainable way to write spaghetti code." --a8Wt8u1KmwUX3Y2C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkotetUACgkQ9mn/Pj01uKUwCACgzX67fd5vw1fsQkvDqDXS5jKr hlkAoNhLdrqmezFETCtIQ3TAkNeSUZC5 =70Ai -----END PGP SIGNATURE----- --a8Wt8u1KmwUX3Y2C-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:17:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AD31106564A for ; Mon, 8 Jun 2009 21:17:30 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 1BEC08FC0A for ; Mon, 8 Jun 2009 21:17:29 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so4432450ewy.43 for ; Mon, 08 Jun 2009 14:17:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=JQFUy4Pa5i7E5WcpGcbISsWaZMNDbxtsIJWX5Rjjcf0=; b=Fhf5X4RHR27BiSQDmsadJ67f04i/8QYa9UMh33e+sWwDtOjd8wLcf2ztV5Osh26CBl RUdiquY6Atwj2Mx6pgap3eLJF/loWFpUHBhO652zQ1mI++BebHaP8O/GT5AzNXsFwxiO X9dQFkbTByUpbq6lDJw3TX8cGP7qyqpt9RBMI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=S1wrgxTOd7VZsYBqZB94g7S6ZKDKpoJ3+2FbRJwkk8H6kcU/8zD7GdV2HGrN0lOJRx C/FgfyFRZ4F63q1Ew0KCfGJ17BiEIfTmV5gCCAgShbQcDyAKjLxdD30b+35SRFV1rlEp 8tAkaZQDUEYFUvNyXtgmZqkyHdkwTCoTTAUDo= MIME-Version: 1.0 Received: by 10.210.142.10 with SMTP id p10mr1811882ebd.59.1244495849068; Mon, 08 Jun 2009 14:17:29 -0700 (PDT) Date: Mon, 8 Jun 2009 17:17:29 -0400 Message-ID: From: Daniel Underwood To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: PDF inventory 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, 08 Jun 2009 21:17:30 -0000 I'm looking for a way to manage my personal collection of research articles. Ideally I'd like some way to keep records on authors, keywords, journals, and publication years of articles (PDF files) downloaded onto my local drive. In the course of reading literature for research, it often happens that I find myself wanted to return to something I have previously read, but I only recall a few "things" about the article, often the author and a keyword. Is there some inventory/database software (for local use only) that can be easily used for this purpose? (The closest things that comes to mind (conceptually) is "image collection" software.) What are some of my options here? Thanks, Daniel From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:21:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 331C91065670 for ; Mon, 8 Jun 2009 21:21:09 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id E58A98FC1D for ; Mon, 8 Jun 2009 21:21:04 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 196673CBC7; Mon, 8 Jun 2009 23:21:02 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n58LKvFK003323; Mon, 8 Jun 2009 23:20:57 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 8 Jun 2009 23:20:56 +0200 From: Polytropon To: Roland Smith Message-Id: <20090608232056.317b509d.freebsd@edvax.de> In-Reply-To: <20090608201217.GD34213@slackbox.xs4all.nl> References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <20090608201217.GD34213@slackbox.xs4all.nl> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Lars Eighner , freebsd-questions@freebsd.org Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 21:21:09 -0000 On Mon, 8 Jun 2009 22:12:17 +0200, Roland Smith wrote: > On Sun, Jun 07, 2009 at 11:52:17PM -0500, Lars Eighner wrote: > > > > What I need most is to find (a) make tutorial(s) that do not suppose make is > > being used for compling c/c++ programs. Yes, I know, that is mostly why > > make exists, but many tutorials plunge right into C examples with implicit C > > rules, while -- it seems to me -- make could be much more useful for a > > variety of things, and I could sure use more of the general and arbitrary > > examples. > > I use make to e.g. build complex LaTeX documents with included gnuplot > graphs. Works like a charm. But that it is not conceptually different > from compiling a C program. Correct. I do the same here. Additionally, I use make and Makefile to process HTML to "emulate SSI before uploading", which I do with - you already guessed it - with "make install" (uses ftp -u then), and "make deinstall" deletes stuff from the webserver. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:31:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7502B106566C for ; Mon, 8 Jun 2009 21:31:15 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp103.prem.mail.ac4.yahoo.com (smtp103.prem.mail.ac4.yahoo.com [76.13.13.42]) by mx1.freebsd.org (Postfix) with SMTP id 1BE478FC18 for ; Mon, 8 Jun 2009 21:31:15 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 81421 invoked from network); 8 Jun 2009 21:31:14 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=vyfEBAt/+TU4dAQa4gItIZ7kqIV/hqxMsB4FObE6ItGA2B03lrF9nRi85j14NK3zoM4MLuPBRLUEdAKvoVgkiWXN1M8MwzGAPbr0q4H6VuOumgkGc5fO8vXlDYugdyVtJTKRssaLdUU3jec8gTQfGkditw5gOvPjxcYG46vwfvk= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp103.prem.mail.ac4.yahoo.com with SMTP; 08 Jun 2009 14:31:14 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: PQt4.DEVM1nljoAIn7cfpCeUac1LUUZkqwfSdPXHkCpPCJGNEb98IYwbQ6t7muO6lPuIT9IEMsrNTPnRr1zNlXtDN9KM10Ct0VC7px4wBj0uJ48HLZjb1rEfnqgZUpnnaGkGS_hhr9afnhGhhXH7tuOoq6q0o0wo7tuYoaZRLcUdWBmEJuBM_ik.CM8ahy7MP3lrRUJkJZoXkJpwNrH2OFLut50AunRyerzOVygiPDJA7_zSbOFwOsatvWw2XIJK6wgtQjkV_JHarbY.bxp33XrHGGvFpchOPzBYToMsV_uPjIK8.TrF45JzNcXImRiW9gYacyK4ShNl X-Yahoo-Newman-Property: ymail-3 Date: Mon, 8 Jun 2009 17:31:12 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090608173112.13bbc8a1@scorpio> In-Reply-To: <20090608205549.GA53856@kokopelli.hydra> References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> <20090608205549.GA53856@kokopelli.hydra> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/bpNtN5TV=budmwPpCibwV.C"; protocol="application/pgp-signature" Subject: Re: ISP questions 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, 08 Jun 2009 21:31:15 -0000 --Sig_/bpNtN5TV=budmwPpCibwV.C Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Mon, 8 Jun 2009 14:55:49 -0600 Chad Perrin wrote: >I try to learn from others' mistakes to reduce the likelihood that I >will be forced to learn from my own. If you really want to learn from >your own mistakes, though, go ahead and ignore the instances where >GoDaddy has screwed over other customers, and just keep using it in >willful ignorance until the day when your luck changes. I guess >that's your prerogative. I believe you are over generalizing it. I have had two occasions where FBSD crashed and I lost a considerable amount of data. According to your statement, I should just say screw FBSD and move on to another OS. Seriously though, if they have X number of clients and only .1% of them have experienced a problem, is there really a problem? I don't know since I don't have statistics on GoDaddy. Obviously you do. Would you be kind enough to post them so I could inspect them myself. Thanks! --=20 Jerry gesbbb@yahoo.com They're unfriendly, which is fortunate, really. They'd be difficult to like. Avon --Sig_/bpNtN5TV=budmwPpCibwV.C Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkotgyEACgkQBvaKIJWWCO3FPgCfRBSGQOfE+QnTfS7CJDQgiiCF gO8An1727N5tLbo2cWamR50Tiy7sK/gQ =2LzX -----END PGP SIGNATURE----- --Sig_/bpNtN5TV=budmwPpCibwV.C-- From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:39:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14AAF1065672 for ; Mon, 8 Jun 2009 21:39:12 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.27]) by mx1.freebsd.org (Postfix) with ESMTP id BA88A8FC14 for ; Mon, 8 Jun 2009 21:39:11 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1759196qwe.7 for ; Mon, 08 Jun 2009 14:39:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=KRLFcJYEBytZe2hf9OGwvoYFbV8bFTDSYzfopELYYfc=; b=GHRNCf7mMxcbq/PUxB9QUzz/s+1n04EUTrR48plGq64Llu8oGJx5EhY2EGCyG5AjJ1 Bb8FMIdQj7hlPuF4iEaZZs933tfV/tziJc/O07cCyE5IOIEV3VAS6uS6laNbfzVg/phr qnF2kQ0IUpQFx3vooMlNbb0YJD2UuOXVGc0nY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=DmA19r9vWyv5q2s3PXsaM+NB1rrULoOD4HKRvJgzSU5NV9qKdmAbEkqLkH94acawNy PCZUk3GDez3EgYTrFlVRHIbdj0zeoEhwICxGJ8HFKOCuqi/9Kdaa2uarUv10NEaegPt1 tviwL2PnNfOSVMAXX90WU5IFm6ZUZaYbQsuWY= Received: by 10.224.2.79 with SMTP id 15mr7306985qai.256.1244497150938; Mon, 08 Jun 2009 14:39:10 -0700 (PDT) Received: from ?131.230.191.52? (ee122.engr.siu.edu [131.230.191.52]) by mx.google.com with ESMTPS id 6sm116085qwk.30.2009.06.08.14.39.09 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 14:39:10 -0700 (PDT) Message-ID: <4A2D84F1.3090404@gmail.com> Date: Mon, 08 Jun 2009 16:38:57 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood 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: PDF inventory 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, 08 Jun 2009 21:39:12 -0000 Daniel Underwood wrote: > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? > > Thanks, > Daniel > > First thing that comes to mind is abusing BibTeX/LaTeX. Keep a BibTeX file (under version control for safety) or other LaTeX-based citation solution as a file on your desktop. If you're using articles from journals, you should be able to get the BibTeX versions of the citation information from general research portals like IEEEXplore or ACM's library (and many other places). For each one, add another field and add your local path (of the file referencing the article) to it. If you need to find something after that, grep the keyword or author's name with the option to display a couple lines up or down. A useful side effect is that if you know LaTeX (and it's a good skill to have), you have the citation information handy for easy inclusion in your own papers. With some work, that approach could probably be expanded to an GUI app. Like most things, it's a bit of up-front work and requires maintenance (mostly remembering to grab the cite info from documents as you add them to your collection). If you're going to be using any of them for citations, however, it's work you're already having to do. --Joseph Lenox From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:41:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6781310656CD for ; Mon, 8 Jun 2009 21:41:13 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 272CB8FC23 for ; Mon, 8 Jun 2009 21:41:12 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id E43FD3CEAE; Mon, 8 Jun 2009 23:41:11 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n58Lf6TS003393; Mon, 8 Jun 2009 23:41:06 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 8 Jun 2009 23:41:06 +0200 From: Polytropon To: Daniel Underwood Message-Id: <20090608234106.05b6dc35.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 21:41:14 -0000 On Mon, 8 Jun 2009 17:17:29 -0400, Daniel Underwood wrote: > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? One of your options - one of the most basic ones - is to use a CSV file where you define the different fields you want to be able to search. This is an imaginable approach: # inventory.csv # ============= # $1 : $2 : $3 : $4 : $5 # Author(s) : Title : Year : Keywords : File # --------------:---------------:-------:-----------------------:------------- Foobar, J : Foo and Bar : 2000 : Foo Bar Baz Bleep : xyz12345.pdf Klopps, M : My Bratklops : 1975 : Eat Food Meat Loaf : qwertzui.pdf ... You can then use grep, cut, awk, sed, perl or any other scripting language for postprocessing, like making a list of your collection of a subset of it. The "File" field could even contain the full path of the file, or you use "locate" go get its location. This is handy for automating tasks, like "print all the articles by Foobar J". One general advantage of this approach is that your favourite editor, along with grep, sed, awk 'n stuff are your tools of choice. You don't need to install lots of stuff. Even your bare base system can handle it. Because it's pure text, it's "human readable" and can be easily transfered between systems. It is very versatile and not limited by the functionalities of one certain program that you use. I'm very sure there is already a tool or a whole GUI subsystem that does indexing and taking care of arbitrary file collections, but of course I don't know its name because I never used it. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:45:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21699106567D for ; Mon, 8 Jun 2009 21:45:40 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id A8B298FC18 for ; Mon, 8 Jun 2009 21:45:39 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so4450396ewy.43 for ; Mon, 08 Jun 2009 14:45:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Qh2UA9eY4nYUnjHCfQhI+iPnY59IEkZUErPjyJjqBDg=; b=LNhiQgX98xWQugONO5vw7RAPPh1S291wP89JE8jP5yY+C6bLT8b+GTKph5un87Wx67 ppTArxkh/7+1ocZ/qZsP8bKMmzPUSh4F/3K3OuX1filE06lz5IK8Ni80Ql6F4i6qMQIv Pp1bWmZ9RRNSQiBI/eIR/Re3e/ru1BA8JnzrE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Zfu3tuhG8DC+8RFgE42MiEK8i3BMcSG+JCo9DJf/fyedSyMChxgXqp8WbBSMH0r8Df JYJlO5ioc7kASp9EZzaElKd5w6qJOcVFDghjaARA9bEBq362wO7ladzod8ZBmolaSD/D H+beVEVn99z0I51zS3HCUMtvGXIgDgeXH367M= MIME-Version: 1.0 Received: by 10.210.33.3 with SMTP id g3mr1770895ebg.39.1244497538438; Mon, 08 Jun 2009 14:45:38 -0700 (PDT) In-Reply-To: <20090608234106.05b6dc35.freebsd@edvax.de> References: <20090608234106.05b6dc35.freebsd@edvax.de> Date: Mon, 8 Jun 2009 17:45:38 -0400 Message-ID: From: Daniel Underwood To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 08 Jun 2009 21:45:40 -0000 Poly and LoH: Thanks, these are great ideas! From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:46:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6A131065679 for ; Mon, 8 Jun 2009 21:46:05 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id 349D48FC2C for ; Mon, 8 Jun 2009 21:46:04 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: by fxm10 with SMTP id 10so702748fxm.43 for ; Mon, 08 Jun 2009 14:46:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received :x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=uOuoW14lNFxPlMzAI/tBid7Sx1DiJtVuivLol6KLbMo=; b=cmGyiKwqQDwYSE8BybpKkSrxndPzJRP0ZsW8GZ+srDG42mT5iQtRpR9gK/NV8gYsft DtIqdzlZ42WF0Vwb153AdgxNf+nMMM70ec+lKnCxgZ7LUlFJOoHMAzJAHQCIgjTFoXoT sqNN2M1DjMexw2udrpv9eSulaS0aC4iZqrRdU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; b=Id4K6R5agDEn9UXmKmv2FPcSDivrjWOgWYl0AfAAMcPFNxNXPy1kyZD2sIQhiWEQoc p2GD8JdLioiFTPwhjgFrmG6Zxcxh0YJ8y3TTVkzGnstWuCRKS5UTJ3OMKdGEyu46hYl8 2h4PgajmzPxx3mUC2KwhoM2VuCM9LPhuHPdEI= Received: by 10.103.223.2 with SMTP id a2mr2571090mur.54.1244496301245; Mon, 08 Jun 2009 14:25:01 -0700 (PDT) Received: from darklight.homeunix.org ([85.175.158.234]) by mx.google.com with ESMTPS id u9sm8201272muf.7.2009.06.08.14.25.00 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 14:25:00 -0700 (PDT) Received: from darklight.homeunix.org (darklight.homeunix.org [127.0.0.1]) by darklight.homeunix.org (8.14.3/8.14.3) with ESMTP id n58LOwFV004960; Tue, 9 Jun 2009 01:24:59 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.homeunix.org (8.14.3/8.14.3/Submit) id n58LOwou004959; Tue, 9 Jun 2009 01:24:58 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) X-Authentication-Warning: darklight.homeunix.org: yuri set sender to yuri.pankov@gmail.com using -f Date: Tue, 9 Jun 2009 01:24:58 +0400 From: Yuri Pankov To: Daniel Underwood Message-ID: <20090608212458.GA2541@darklight.homeunix.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 08 Jun 2009 21:46:06 -0000 On Mon, Jun 08, 2009 at 05:17:29PM -0400, Daniel Underwood wrote: > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? > > Thanks, > Daniel Try using sysutils/tracker-client (http://projects.gnome.org/tracker/). It should do what you and much more. Yuri From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:53:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 916E31065687 for ; Mon, 8 Jun 2009 21:53:52 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id 63F9C8FC2E for ; Mon, 8 Jun 2009 21:53:52 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from working (pool-72-95-226-5.pitbpa.ftas.verizon.net [72.95.226.5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTPSA id 531EBEBC0A; Mon, 8 Jun 2009 17:53:51 -0400 (EDT) Date: Mon, 8 Jun 2009 17:53:50 -0400 From: Bill Moran To: Daniel Underwood Message-Id: <20090608175350.007d0f9c.wmoran@potentialtech.com> In-Reply-To: References: X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 08 Jun 2009 21:53:53 -0000 Daniel Underwood wrote: > > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? Just to add one more to the already list of good ideas. What about just using an RDBMS? These days, everyone seems to think you have to put some fancy web front-end on a RDBMS to make it useful, but SQL is pretty user-friendly. PostgreSQL, in particular, has some excellent full-text searching capabilities in the latest version. If you use a script to export the text from the PDF and insert into postgres, you then have a searchable database using word-stemming and all the other features of a full-blown search engine on steroids. -- Bill Moran http://www.potentialtech.com From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 21:58:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4790D106564A for ; Mon, 8 Jun 2009 21:58:30 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 057968FC08 for ; Mon, 8 Jun 2009 21:58:29 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id CECF43CDE5; Mon, 8 Jun 2009 23:58:28 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n58LwNjc003683; Mon, 8 Jun 2009 23:58:23 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Mon, 8 Jun 2009 23:58:23 +0200 From: Polytropon To: Daniel Underwood Message-Id: <20090608235823.5a252cd2.freebsd@edvax.de> In-Reply-To: References: <20090608234106.05b6dc35.freebsd@edvax.de> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 21:58:30 -0000 On Mon, 8 Jun 2009 17:45:38 -0400, Daniel Underwood wrote: > Poly and LoH: Thanks, these are great ideas! I'd like to add that if you define your data fields well, you can use it to generate BibTeX and other LaTeX entries from your records. You can even easily turn it into HTML. But as I said: Keep in mind that it's very basic - but that makes is so versatile and strong. You could add a script that does some work (add, delete, modify, search or duplicate entries) for you, if you don't want to spend much time in the editor, and don't want to keep the "pretty printing" of the file intact (it doesn't matter anyway). The MOST important thing to pay attention to is NOT to use the desired delimiter inside a data field. If you already know that : will be in one of the fields, just use a less common symbol as delimiter, such as | or even ~. Of course, more "comfortable" solutions will surely keep off this "manual work" from you, but in most cases, they involve installing LOTS of dependencies. Finally, the advice of using some version control for the upcoming changes of the file is a good idea. You can even have more than one file, e. g. for separating topics or projects. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 22:15:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A2E2106566C for ; Mon, 8 Jun 2009 22:15:34 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com [209.85.220.214]) by mx1.freebsd.org (Postfix) with ESMTP id AA22F8FC1F for ; Mon, 8 Jun 2009 22:15:33 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: by fxm10 with SMTP id 10so718086fxm.43 for ; Mon, 08 Jun 2009 15:15:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=mHVo/Q0+i32ZTSzHd/+X/r4etnd0ToYTXH+bp+F9ZVg=; b=vwQ7X0s1AfC3+TItHKQnAchruIUBUylXyZ2vHy3JPgw3+u2e+6hy/1ra7Be4wA73wC oNsjYh9Zoxn8LxEyjidiubmtfCCIUDA4QjReU9fS+La5cpAXZaTTTc1VGJexPAFB00n2 5oLvBFeb8/Bl6+NXRHVpFpGshjaICFv/thPzY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=qrYk+4lSc/PI2XwxalZGYh+Io3SWYfol+ZRvoVYSyEypewnk9x7K/jheLsELu2rV4V cYnGtriNj5EliXPPGqtG4V0IzWL9XYU0dyL5b+aect/wb7EIumITTL+UBYDXOKOyqLd1 LPEchKAa9mjYop5Uva6oudQaqY/4jdjnyulO4= MIME-Version: 1.0 Received: by 10.223.108.15 with SMTP id d15mr4699810fap.105.1244499332554; Mon, 08 Jun 2009 15:15:32 -0700 (PDT) In-Reply-To: References: Date: Mon, 8 Jun 2009 23:15:32 +0100 Message-ID: From: FRLinux To: Daniel Underwood Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 08 Jun 2009 22:15:34 -0000 On Mon, Jun 8, 2009 at 10:17 PM, Daniel Underwood wro= te: > I'm looking for a way to manage my personal collection of research > articles. =A0Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. Hello, Might be overkill for one person but this is the software our scientists use in our place, quite a good application : http://wikindx.sourceforge.net/features.html Cheers, Steph From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 22:32:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBB531065672 for ; Mon, 8 Jun 2009 22:32:34 +0000 (UTC) (envelope-from mike.jeays@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 971C58FC14 for ; Mon, 8 Jun 2009 22:32:34 +0000 (UTC) (envelope-from mike.jeays@rogers.com) Received: (qmail 61847 invoked from network); 8 Jun 2009 22:32:34 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:X-YMail-OSG:X-Yahoo-Newman-Property:From:To:Subject:Date:User-Agent:References:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id; b=5DZMQ4iWZM7T00ZE6j2mmwUWKLf1KRGh9ZCSJfkdQs1SDNRuZri84/fiNUKjxsTTsJZd2De9QMZ8BdmhRYoW8Se7MZp9x35mTZylWKmGkm1oXQ5xf2pr6RzxhHPJcQmO28F50DFy08KGHwoVMrGWzi4lwBekw4u7+hB3ADiHkpE= ; Received: from unknown (HELO napoleon.localnet) (mike.jeays@99.224.61.141 with plain) by smtp108.rog.mail.re2.yahoo.com with SMTP; 8 Jun 2009 22:32:33 -0000 X-YMail-OSG: uXzruSYVM1kh8wSrc8FdpIu6CAooKtiPnMXuS1O3SOF3RZ13bYHgpjpdiUlzpBpeaQ-- X-Yahoo-Newman-Property: ymail-3 From: Mike Jeays To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 18:32:31 -0400 User-Agent: KMail/1.10.4 (Linux/2.6.27-14-generic; KDE/4.1.4; i686; ; ) References: <20090608183045.F1B08BED8@kev.msw.wpafb.af.mil> <4A2D5EDF.2000508@webrz.net> In-Reply-To: <4A2D5EDF.2000508@webrz.net> MIME-Version: 1.0 Message-Id: <200906081832.31564.mike.jeays@rogers.com> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 22:32:35 -0000 -- Mike Jeays http://www.jeays.ca http://www.rotarycpmm.ca On June 8, 2009 02:56:31 pm Jos Chrispijn wrote: > Found another solution (for running @ 23:58): > > 58 23 * * * [ `date -d tomorrow +%d` -eq '01' ] && /myscript > > thanks for all other suggestions, > Jos Chrispijn > > _______________________________________________ > 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" Isn't that a linuxism? Looking at the man pages for the date command for FreeBSD, it looks as if 'date -v+1d' will return tomorrow's date (and it does, I checked). The -d option is to do with daylight saving time. From owner-freebsd-questions@FreeBSD.ORG Mon Jun 8 23:52:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C95FB106566B for ; Mon, 8 Jun 2009 23:52:46 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 724A58FC25 for ; Mon, 8 Jun 2009 23:52:46 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id DF0E47E837; Mon, 8 Jun 2009 15:52:44 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 15:52:42 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <5359c8a6e4fc10bf951a7ee095b0d29f.squirrel@webmail.pknet.net> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081552.43622.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Tim Judd , Peter Subject: Re: /etc/hosts - how does that file work?? - was weird nfs issues. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 08 Jun 2009 23:52:47 -0000 On Saturday 06 June 2009 20:44:38 Tim Judd wrote: > On 6/4/09, Peter wrote: > > I do not think /etc/hosts does round robin, I always assumed first match > > wins...DNS/bind I would understand... It's the same library call: gethostbyname(3) and friends. > > Why does ping always return the 172.20.6.1 address, > > and ftp,nc,ssh,telnet,fetch _always_ uses the 116 address? Again: client implementation is allowed to pick whichever it wants. > why are you so hung up on dual IPs for a single host? would dnsmasq > provide a solution to dual A records for one resource? Gotta agree with Tim here. I don't see the point for having two nets on one interface. They'll be hard to keep secure with firewall rules if you run the same services on them. > I'll help, when I can. but forcing this on /etc/hosts is a dead end. Problem is that nfs and DNS don't work well at all. For nfs best use IP or /etc/hosts. One drawback of using DNS with nfs is that if the hostname cannot be resolved (network down, typo), one can also not get a console when it goes to single user mode [1] and has to reboot via power button. /etc/fstab is supposed to be static to begin with. It's supposed to provide the mountpoints the system can count on, so using IP's for nfs is preferred. For the more dynamic nfs mounts, one can use hostnames and use noauto in the options column. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=128448 -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 00:05:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CB93106566B for ; Tue, 9 Jun 2009 00:05:40 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 310E28FC14 for ; Tue, 9 Jun 2009 00:05:39 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 0CC547E837; Mon, 8 Jun 2009 16:05:39 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 16:05:37 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <20090603190455.811E01065687@hub.freebsd.org> <20090605224132.GB24364@lor.one-eyed-alien.net> <20090608164419.G38006@sola.nimnet.asn.au> In-Reply-To: <20090608164419.G38006@sola.nimnet.asn.au> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081605.37858.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Ghirai , Brooks Davis , Ian Smith Subject: Re: phidgets for FreeBSD? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 00:05:41 -0000 On Sunday 07 June 2009 23:49:48 Ian Smith wrote: > Thanks, but please humour my ignorance - would one install linux libusb > in /compat/linux for linux apps, as well as the freebsd port for native? If there's source, one would use native libusb. I'd go test with -current though. The libusb in the base there is the exact same as the devel/libusb port, with extras. If the source don't work out of the box, usb developers would definitely want to hear about it. Unfortunately, I lack the time (and interest for the moment) to try it out myself, even though I'd love to get my Sonix USB webcam working. -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 00:09:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36FE9106566C for ; Tue, 9 Jun 2009 00:09:19 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id E268E8FC12 for ; Tue, 9 Jun 2009 00:09:18 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by qyk3 with SMTP id 3so4768536qyk.3 for ; Mon, 08 Jun 2009 17:09:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=78habaInNsWRaNjSrz5Vr8YjTFLUGdjo7fdGV/SXYMU=; b=kyR22+0VoCrygoErjB1zWpiBVwf4ewkpRHVVf9sQA2FFzChWftHsDCaEmqfxzK1ntL 4jsFgw2uUKnXO+pbEVpV/5aQn2bNJzPeDlYei1LC6hTRAPtjM71ZAF7bzRq3XqCo5nh/ doqGrcULupwSg5fa2KcNudZbpslyQXgRkQaRA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=ttlKtag3BMd3gVGIrZfZ4PXQpHia8he4PAB0aEQMbOdYvCwi6bT7bhyDYcPUJqND0a hbUSuI94ZV6I7vFz3HoWGXjOMCsVrm5z2C90qGiQWz5gE8KYkZvalaayOVbpzZ2frUuo 0twOMLAqnnl38cDgC9d1P3gXsExHwPYKsbq+w= Received: by 10.224.36.202 with SMTP id u10mr7440770qad.124.1244504356749; Mon, 08 Jun 2009 16:39:16 -0700 (PDT) Received: from laptop.istudentunion.com (ool-44c0cd7a.dyn.optonline.net [68.192.205.122]) by mx.google.com with ESMTPS id 6sm401577qwk.40.2009.06.08.16.39.16 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 16:39:16 -0700 (PDT) Message-ID: <4A2DA11E.80508@gmail.com> Date: Mon, 08 Jun 2009 23:39:10 +0000 From: "Aryeh M. Friedman" User-Agent: Thunderbird 2.0.0.21 (X11/20090606) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: getting aux display on laptop to be the only display X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 00:09:20 -0000 I have following hardware on my laptop: > dmesg|grep vga vgapci0: port 0x6110-0x6117 mem 0x90000000-0x903fffff,0x80000000-0x8fffffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 vgapci1: mem 0x94500000-0x945fffff at device 2.1 on pci0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 drm0: on vgapci0 vgapci0: child drm0 requested pci_enable_busmaster and I have an extrtnal 21" widescreen (vga) that when I hook it up the default x11.config has it at 1024x768 on *BOTH* monitors.... How do I make it so X only considers the external (if attached) monitor? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 00:15:39 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31586106564A for ; Tue, 9 Jun 2009 00:15:39 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id E63748FC12 for ; Tue, 9 Jun 2009 00:15:38 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n590GnFc078537 for ; Mon, 8 Jun 2009 17:16:49 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Mon, 8 Jun 2009 17:15:34 -0700 (PDT) Date: Mon, 8 Jun 2009 17:15:34 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20090609001529.GA7166@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Subject: flaw found.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 00:15:39 -0000 not surprisingly, i found a fla w in my getc(fp) program that tried to read past "" ... the example i added to my test file was simply the 2 bytes "<" and "?". so if you have a stray " Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 648E7106567A for ; Tue, 9 Jun 2009 00:20:24 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id E29558FC26 for ; Tue, 9 Jun 2009 00:20:23 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz17 with SMTP id 17so700455bwz.43 for ; Mon, 08 Jun 2009 17:20:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=sO5Hdkmk0wL6X299F5W3FwAXBkVruDcQUJ2IoNtY5iI=; b=ZTGAuRiGt8uCxmHuH2u8mvtD6aT8cNkWjY6Wh/2Xp0lb2dLogGg2ifYJ4td+9URZMs NOw7pYr4QIW8jkLcwp87cGlZ6fP/ZjLBomFVhqDAcgwrz7DmX/7Xy7dfnAcfQ+dUyNyI hkuF5ZblFRGA1SREZEYgAWBWDoIf3Gkdtpx3Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=tHuLc2mSQkDcHpl/cgHf1v6yAYZTxVejf8Fiz+2KzklcazsomI1v5UxmcInc7dwoxq 95cKX4jvrhyYnbvpHlI8GCNV1YW/Kb7anSEKcYNThfMOD5clc1FJVc3xbxSucw/Jtg38 f0N0JJ/0EH6FDlGN9W5t1F2ENwVTiw8atoNxM= MIME-Version: 1.0 Received: by 10.204.124.7 with SMTP id s7mr7260989bkr.105.1244506822614; Mon, 08 Jun 2009 17:20:22 -0700 (PDT) In-Reply-To: <20090609001529.GA7166@thought.org> References: <20090609001529.GA7166@thought.org> Date: Mon, 8 Jun 2009 20:20:22 -0400 Message-ID: <4ad871310906081720p4fcb7c90s3780b230d45c5954@mail.gmail.com> From: Glen Barber To: Gary Kline Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Mailing List Subject: Re: flaw found.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 00:20:25 -0000 Gary, On Mon, Jun 8, 2009 at 8:15 PM, Gary Kline wrote: > =A0 =A0 =A0 =A0not surprisingly, i found a fla w in my getc(fp) program t= hat > =A0 =A0 =A0 =A0tried to read past "" ... =A0the example i adde= d to my > =A0 =A0 =A0 =A0test file was simply the 2 bytes "<" and "?". =A0so if you= have a > =A0 =A0 =A0 =A0stray > > =A0 =A0 =A0 =A0" > =A0 =A0 =A0 =A0with a matching close case, the binary hangs on a read. > =A0 =A0 =A0 =A0so, again, can anybody suggest a better example, in C, to = get > =A0 =A0 =A0 =A0past two delimiters? > > =A0 =A0 =A0 =A0one thought is how gcc parses the "/*" and "*/" comment > =A0 =A0 =A0 =A0delimiters. =A0any compiler gurus out there who know > =A0 =A0 =A0 =A0where this code is? > > =A0 =A0 =A0 =A0gary > > =A0 =A0 =A0 =A0? > What about having it check a char array, similar to how programs like ls(1) does checking for command line arguments? http://svn.freebsd.org/base/stable/7/bin/ls/ls.c - line 181 and on. --=20 Glen Barber http://www.dev-urandom.com http://www.linkedin.com/in/glenjbarber From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 00:34:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CB0E106564A for ; Tue, 9 Jun 2009 00:34:14 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 1F4468FC12 for ; Tue, 9 Jun 2009 00:34:08 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 1997C7E837; Mon, 8 Jun 2009 16:34:08 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 16:34:06 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <792298050906041925g11d7c519k48e6d392be6c6471@mail.gmail.com> In-Reply-To: <792298050906041925g11d7c519k48e6d392be6c6471@mail.gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081634.07041.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: L Campbell Subject: Re: Lighttpd wedged and ignoring SIGKILL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 00:34:14 -0000 On Thursday 04 June 2009 18:25:30 L Campbell wrote: > PID USERNAME THR PRI NICE SIZE RES STATE C TIME WCPU COMMAND > 85542 www 1 51 0 102M 85360K CPU6 6 16:34 100.00% lighttpd > > 1) Should this be possible? What is going on here? Change the write-backend. Look in google for lighttpd and sendfile to see why. -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 00:47:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5CF0106566B for ; Tue, 9 Jun 2009 00:47:18 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 7AA568FC17 for ; Tue, 9 Jun 2009 00:47:17 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 2DA6C7E837; Mon, 8 Jun 2009 16:47:16 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 16:47:14 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <86skifqn2x.fsf@chateau.d.lf> In-Reply-To: <86skifqn2x.fsf@chateau.d.lf> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Subject: Re: 7.2-RELEASE panics with snd_ds1 loaded. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 00:47:19 -0000 On Thursday 04 June 2009 21:14:14 Ashish SHUKLA wrote: > Hi all, > > I've recently installed 7.2-RELEASE few weeks ago and noticed that it > panics after few minutes of loading snd_ds1 (driver for Yamaha PCI sound > card), and playing music on it. I've not added snd_ds1 to my loader.conf > so as soon as I explicitly kldload it and start playing music (or try to > access sound card like using gnome-sound-recorder) it panics after few > minutes. > > Following are the backtraces of the panics. > > ,---- > > | (kgdb) core-file /var/crash/vmcore.0 > | > | Unread portion of the kernel message buffer: > | > | > | Fatal trap 9: general protection fault while in kernel mode > | cpuid = 0; apic id = 00 > | instruction pointer = 0x8:0xffffffff807c5f22 > | stack pointer = 0x10:0xfffffffebf031a00 > | frame pointer = 0x10:0xffff804000020048 > | code segment = base 0x0, limit 0xfffff, type 0x1b > | = DPL 0, pres 1, long 1, def32 0, gran 1 > | processor eflags = interrupt enabled, resume, IOPL = 0 > | current process = 72310 (sshd) > | trap number = 9 > | panic: general protection fault > | cpuid = 0 > | Uptime: 6h25m1s > | Physical memory: 2025 MB > | Dumping 386 MB: 371 355 339 323 307 291 275 259 243 227 211 195 179 163 > | 147 131 115 99 83 67 51 35 19 3 > | > | Reading symbols from /boot/kernel/geom_journal.ko...Reading symbols from > | /boot/GENERIC/geom_journal.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/geom_journal.ko > | Reading symbols from /boot/kernel/linprocfs.ko...Reading symbols from > | /boot/GENERIC/linprocfs.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/linprocfs.ko > | Reading symbols from /boot/kernel/linux.ko...Reading symbols from > | /boot/GENERIC/linux.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/linux.ko > | Reading symbols from /boot/kernel/pf.ko...Reading symbols from > | /boot/GENERIC/pf.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/pf.ko > | Reading symbols from /boot/kernel/blank_saver.ko...Reading symbols from > | /boot/GENERIC/blank_saver.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/blank_saver.ko > | Reading symbols from /boot/kernel/ng_socket.ko...Reading symbols from > | /boot/GENERIC/ng_socket.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_socket.ko > | Reading symbols from /boot/kernel/netgraph.ko...Reading symbols from > | /boot/GENERIC/netgraph.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/netgraph.ko > | Reading symbols from /boot/kernel/ng_mppc.ko...Reading symbols from > | /boot/GENERIC/ng_mppc.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_mppc.ko > | Reading symbols from /boot/kernel/rc4.ko...Reading symbols from > | /boot/GENERIC/rc4.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/rc4.ko > | Reading symbols from /boot/kernel/ng_iface.ko...Reading symbols from > | /boot/GENERIC/ng_iface.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_iface.ko > | Reading symbols from /boot/kernel/ng_ppp.ko...Reading symbols from > | /boot/GENERIC/ng_ppp.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_ppp.ko > | Reading symbols from /boot/kernel/ng_tee.ko...Reading symbols from > | /boot/GENERIC/ng_tee.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_tee.ko > | Reading symbols from /boot/kernel/ng_ether.ko...Reading symbols from > | /boot/GENERIC/ng_ether.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_ether.ko > | Reading symbols from /boot/kernel/ng_pppoe.ko...Reading symbols from > | /boot/GENERIC/ng_pppoe.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_pppoe.ko > | Reading symbols from /boot/kernel/i915.ko...Reading symbols from > | /boot/GENERIC/i915.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/i915.ko > | Reading symbols from /boot/kernel/drm.ko...Reading symbols from > | /boot/GENERIC/drm.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/drm.ko > | Reading symbols from /boot/kernel/snd_ds1.ko...Reading symbols from > | /boot/GENERIC/snd_ds1.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/snd_ds1.ko > | Reading symbols from /boot/kernel/sound.ko...Reading symbols from > | /boot/GENERIC/sound.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/sound.ko > | #0 doadump () at pcpu.h:195 > | 195 pcpu.h: No such file or directory. > | in pcpu.h > | (kgdb) bt > | #0 doadump () at pcpu.h:195 > | #1 0x0000000000000004 in ?? () > | #2 0xffffffff8050df19 in boot (howto=260) at > | /usr/src/sys/kern/kern_shutdown.c:418 #3 0xffffffff8050e322 in panic > | (fmt=0x104
) at > | /usr/src/sys/kern/kern_shutdown.c:574 #4 0xffffffff807d2193 in > | trap_fatal (frame=0xffffff00038bb370, eva=Variable "eva" is not > | available. ) at /usr/src/sys/amd64/amd64/trap.c:757 > | #5 0xffffffff807d2ce5 in trap (frame=0xfffffffebf031950) at > | /usr/src/sys/amd64/amd64/trap.c:558 #6 0xffffffff807b700e in calltrap () > | at /usr/src/sys/amd64/amd64/exception.S:209 #7 0xffffffff807c5f22 in > | pmap_remove_pages (pmap=0xffffff00696730f8) at > | /usr/src/sys/amd64/amd64/pmap.c:3812 #8 0xffffffff8073e708 in > | vmspace_exit (td=0xffffff00038bb370) at /usr/src/sys/vm/vm_map.c:404 #9 > | 0xffffffff804e92b0 in exit1 (td=0xffffff00038bb370, rv=65280) at > | /usr/src/sys/kern/kern_exit.c:306 #10 0xffffffff804ea68e in sys_exit > | (td=Variable "td" is not available. ) at > | /usr/src/sys/kern/kern_exit.c:110 > | #11 0xffffffff807d27e7 in syscall (frame=0xfffffffebf031c80) at > | /usr/src/sys/amd64/amd64/trap.c:900 #12 0xffffffff807b721b in > | Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:330 #13 > | 0x000000080132850c in ?? () > | Previous frame inner to this frame (corrupt stack?) > > `---- > > ,---- > > | (kgdb) core-file /var/crash/vmcore.1 > | > | Unread portion of the kernel message buffer: > | > | > | Fatal trap 12: page fault while in kernel mode > | cpuid = 1; apic id = 01 > | fault virtual address = 0x258 > | fault code = supervisor read data, page not present > | instruction pointer = 0x8:0xffffffff8050119d > | stack pointer = 0x10:0xfffffffebf1c2950 > | frame pointer = 0x10:0xffffff00341f6a50 > | code segment = base 0x0, limit 0xfffff, type 0x1b > | = DPL 0, pres 1, long 1, def32 0, gran 1 > | processor eflags = interrupt enabled, resume, IOPL = 0 > | current process = 34352 (ruby18) > | trap number = 12 > | panic: page fault > | cpuid = 1 > | Uptime: 2h59m0s > | Physical memory: 2025 MB > | Dumping 336 MB: 321 305 289 273 257 241 225 209 193 177 161 145 129 113 > | 97 81 65 49 33 17 1 > | > | Reading symbols from /boot/kernel/geom_journal.ko...Reading symbols from > | /boot/GENERIC/geom_journal.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/geom_journal.ko > | Reading symbols from /boot/kernel/linprocfs.ko...Reading symbols from > | /boot/GENERIC/linprocfs.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/linprocfs.ko > | Reading symbols from /boot/kernel/linux.ko...Reading symbols from > | /boot/GENERIC/linux.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/linux.ko > | Reading symbols from /boot/kernel/pf.ko...Reading symbols from > | /boot/GENERIC/pf.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/pf.ko > | Reading symbols from /boot/kernel/blank_saver.ko...Reading symbols from > | /boot/GENERIC/blank_saver.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/blank_saver.ko > | Reading symbols from /boot/kernel/i915.ko...Reading symbols from > | /boot/GENERIC/i915.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/i915.ko > | Reading symbols from /boot/kernel/drm.ko...Reading symbols from > | /boot/GENERIC/drm.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/drm.ko > | Reading symbols from /boot/kernel/ng_socket.ko...Reading symbols from > | /boot/GENERIC/ng_socket.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_socket.ko > | Reading symbols from /boot/kernel/netgraph.ko...Reading symbols from > | /boot/GENERIC/netgraph.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/netgraph.ko > | Reading symbols from /boot/kernel/ng_mppc.ko...Reading symbols from > | /boot/GENERIC/ng_mppc.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_mppc.ko > | Reading symbols from /boot/kernel/rc4.ko...Reading symbols from > | /boot/GENERIC/rc4.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/rc4.ko > | Reading symbols from /boot/kernel/ng_iface.ko...Reading symbols from > | /boot/GENERIC/ng_iface.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_iface.ko > | Reading symbols from /boot/kernel/ng_ppp.ko...Reading symbols from > | /boot/GENERIC/ng_ppp.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_ppp.ko > | Reading symbols from /boot/kernel/ng_tee.ko...Reading symbols from > | /boot/GENERIC/ng_tee.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_tee.ko > | Reading symbols from /boot/kernel/ng_ether.ko...Reading symbols from > | /boot/GENERIC/ng_ether.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_ether.ko > | Reading symbols from /boot/kernel/ng_pppoe.ko...Reading symbols from > | /boot/GENERIC/ng_pppoe.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/ng_pppoe.ko > | Reading symbols from /boot/kernel/snd_ds1.ko...Reading symbols from > | /boot/GENERIC/snd_ds1.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/snd_ds1.ko > | Reading symbols from /boot/kernel/sound.ko...Reading symbols from > | /boot/GENERIC/sound.ko.symbols...done. done. > | Loaded symbols for /boot/kernel/sound.ko > | #0 doadump () at pcpu.h:195 > | 195 in pcpu.h > | (kgdb) bt > | #0 doadump () at pcpu.h:195 > | #1 0x0000000000000004 in ?? () > | #2 0xffffffff8050df19 in boot (howto=260) at > | /usr/src/sys/kern/kern_shutdown.c:418 #3 0xffffffff8050e322 in panic > | (fmt=0x104
) at > | /usr/src/sys/kern/kern_shutdown.c:574 #4 0xffffffff807d2193 in > | trap_fatal (frame=0xffffff00341f6a50, eva=Variable "eva" is not > | available. ) at /usr/src/sys/amd64/amd64/trap.c:757 > | #5 0xffffffff807d2565 in trap_pfault (frame=0xfffffffebf1c28a0, > | usermode=0) at /usr/src/sys/amd64/amd64/trap.c:673 #6 0xffffffff807d2ea4 > | in trap (frame=0xfffffffebf1c28a0) at /usr/src/sys/amd64/amd64/trap.c:444 > | #7 0xffffffff807b700e in calltrap () at > | /usr/src/sys/amd64/amd64/exception.S:209 #8 0xffffffff8050119d in > | _mtx_lock_sleep (m=0xffffff003439aca8, tid=18446742975072397904, > | opts=Variable "opts" is not available. ) at > | /usr/src/sys/kern/kern_mutex.c:339 > | #9 0xffffffff8054465a in sleepq_catch_signals (wchan=0xffffff00341a1000) > | at /usr/src/sys/kern/subr_sleepqueue.c:392 #10 0xffffffff80544f9b in > | sleepq_wait_sig (wchan=Variable "wchan" is not available. ) at > | /usr/src/sys/kern/subr_sleepqueue.c:594 > | #11 0xffffffff8051624e in _sleep (ident=0xffffff00341a1000, > | lock=0xffffff00341a12b0, priority=180, wmesg=0xffffffff808b162e "piperd", > | timo=0) at /usr/src/sys/kern/kern_synch.c:228 > | #12 0xffffffff8054cd60 in pipe_read (fp=0xffffff00341c9300, > | uio=0xfffffffebf1c2b10, active_cred=Variable "active_cred" is not > | available. ) at /usr/src/sys/kern/sys_pipe.c:689 > | #13 0xffffffff8054a32d in dofileread (td=0xffffff00341f6a50, fd=4, > | fp=0xffffff00341c9300, auio=0xfffffffebf1c2b10, offset=Variable "offset" > | is not available. ) at file.h:245 > | #14 0xffffffff8054a69e in kern_readv (td=0xffffff00341f6a50, fd=4, > | auio=0xfffffffebf1c2b10) at /usr/src/sys/kern/sys_generic.c:193 #15 > | 0xffffffff8054a78c in read (td=0xffffff003439aca8, > | uap=0xffffff00341f6a50) at /usr/src/sys/kern/sys_generic.c:109 #16 > | 0xffffffff807d27e7 in syscall (frame=0xfffffffebf1c2c80) at > | /usr/src/sys/amd64/amd64/trap.c:900 #17 0xffffffff807b721b in > | Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:330 #18 > | 0x0000000800d860dc in ?? () > | Previous frame inner to this frame (corrupt stack?) > > `---- > > Any ideas how to resolve this ? Nothing points to the sound module specifically. The first trace is unusable (frames missing) and the second trace panics in sleep, which maybe points to the sound module and interrupts. Are you not able to panic the system without that sound module loaded? It looks too random to blame one module, more hardware, but it's possible the module exposes a bug elsewhere. From this though, it is hard to tell. -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 01:06:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94417106566C for ; Tue, 9 Jun 2009 01:06:04 +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 F32808FC19 for ; Tue, 9 Jun 2009 01:06:03 +0000 (UTC) (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.13.1) with ESMTP id n5911k4W075272 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 9 Jun 2009 08:01:46 +0700 (ICT) (envelope-from on@cs.ait.ac.th) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.14.3/8.14.3/Submit) id n59161i6086830; Tue, 9 Jun 2009 08:06:01 +0700 (ICT) (envelope-from on) Date: Tue, 9 Jun 2009 08:06:01 +0700 (ICT) Message-Id: <200906090106.n59161i6086830@banyan.cs.ait.ac.th> From: Olivier Nicole To: djuatdelta@gmail.com In-reply-to: (message from Daniel Underwood on Mon, 8 Jun 2009 17:17:29 -0400) References: X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 01:06:04 -0000 Hi, > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. Certainly overkill, but dspace(.org) can keep up a digital library for you, with full indexation. Bests, Olivier From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 01:06:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 495A51065672 for ; Tue, 9 Jun 2009 01:06:54 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from fork6.mail.virginia.edu (fork6.mail.Virginia.EDU [128.143.2.176]) by mx1.freebsd.org (Postfix) with ESMTP id 153638FC12 for ; Tue, 9 Jun 2009 01:06:54 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from localhost (localhost [127.0.0.1]) by fork6.mail.virginia.edu (Postfix) with ESMTP id 5D7131BF92 for ; Mon, 8 Jun 2009 21:06:53 -0400 (EDT) Received: from fork6.mail.virginia.edu ([127.0.0.1]) by localhost (fork6.mail.virginia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16800-09 for ; Mon, 8 Jun 2009 21:06:53 -0400 (EDT) Received: from mail-ew0-f211.google.com (mail-ew0-f211.google.com [209.85.219.211]) by fork6.mail.virginia.edu (Postfix) with ESMTP id 15D151BF9D for ; Mon, 8 Jun 2009 21:06:52 -0400 (EDT) Received: by mail-ew0-f211.google.com with SMTP id 7so4872550ewy.24 for ; Mon, 08 Jun 2009 18:06:52 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.8.209 with SMTP id 59mr2575964wer.18.1244509612826; Mon, 08 Jun 2009 18:06:52 -0700 (PDT) In-Reply-To: <200906081634.07041.mel.flynn+fbsd.questions@mailing.thruhere.net> References: <792298050906041925g11d7c519k48e6d392be6c6471@mail.gmail.com> <200906081634.07041.mel.flynn+fbsd.questions@mailing.thruhere.net> Date: Mon, 8 Jun 2009 21:06:52 -0400 Message-ID: <792298050906081806m5844ea84g1c8b5267aa15b15c@mail.gmail.com> From: L Campbell To: Mel Flynn Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-UVA-Virus-Scanned: by amavisd-new at fork6.mail.virginia.edu Cc: freebsd-questions@freebsd.org Subject: Re: Lighttpd wedged and ignoring SIGKILL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 01:06:54 -0000 On Mon, Jun 8, 2009 at 8:34 PM, Mel Flynn wrote: > On Thursday 04 June 2009 18:25:30 L Campbell wrote: >> PID =C2=A0 USERNAME THR PRI NICE =C2=A0 SIZE =C2=A0 =C2=A0RES STATE =C2= =A0C =C2=A0 TIME =C2=A0 WCPU COMMAND >> 85542 www =C2=A0 =C2=A0 =C2=A0 =C2=A01 =C2=A051 =C2=A0 =C2=A00 =C2=A0 10= 2M 85360K CPU6 =C2=A0 6 =C2=A016:34 100.00% lighttpd >> >> 1) Should this be possible? What is going on here? > > Change the write-backend. Look in google for lighttpd and sendfile to see= why. I was under the impression that that bug was fixed[1]. In any case, I've switched from freebsd-sendfile to writev. I'll send another ping if that doesn't fix it (and probably fiddle around with the event-handler too -- I've read error reports suggesting that freebsd-kqueue handling is broken in Lighttpd). Thanks for the suggestion :) --=20 [1] http://redmine.lighttpd.net/issues/1913 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 01:10:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C457310656A3 for ; Tue, 9 Jun 2009 01:10:32 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (aristotle.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 63EEA8FC18 for ; Tue, 9 Jun 2009 01:10:31 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n591BfOU078885; Mon, 8 Jun 2009 18:11:41 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Mon, 8 Jun 2009 18:10:27 -0700 (PDT) Date: Mon, 8 Jun 2009 18:10:26 -0700 From: Gary Kline To: Glen Barber Message-ID: <20090609011026.GA7271@thought.org> References: <20090609001529.GA7166@thought.org> <4ad871310906081720p4fcb7c90s3780b230d45c5954@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4ad871310906081720p4fcb7c90s3780b230d45c5954@mail.gmail.com> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Mailing List Subject: Re: flaw found.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 01:10:33 -0000 On Mon, Jun 08, 2009 at 08:20:22PM -0400, Glen Barber wrote: > Gary, > > On Mon, Jun 8, 2009 at 8:15 PM, Gary Kline wrote: > >        not surprisingly, i found a fla w in my getc(fp) program that > >        tried to read past "" ...  the example i added to my > >        test file was simply the 2 bytes "<" and "?".  so if you have a > >        stray > > > >        " > > >        with a matching close case, the binary hangs on a read. > >        so, again, can anybody suggest a better example, in C, to get > >        past two delimiters? > > > >        one thought is how gcc parses the "/*" and "*/" comment > >        delimiters.  any compiler gurus out there who know > >        where this code is? > > > >        gary > > > >        ? > > > > What about having it check a char array, similar to how programs like > ls(1) does checking for command line arguments? > > http://svn.freebsd.org/base/stable/7/bin/ls/ls.c - line 181 and on. > yes, this is one thing i was thinking about at around 04:30! having a pointer to both the beginning and ending of the delimiter pair. if no ending was found, issue a warning and error exit. FWIW, Google just pointed me at a snippet that showed how to get past things like "// comments...." thankee! > -- > Glen Barber > http://www.dev-urandom.com > http://www.linkedin.com/in/glenjbarber -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org For FBSD list: http://transfinite.thought.org/slicejourney.php The 4.91a release of Jottings: http://jottings.thought.org/index.php From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 01:14:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 16AC7106566C for ; Tue, 9 Jun 2009 01:14:00 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.24]) by mx1.freebsd.org (Postfix) with ESMTP id C62AC8FC1C for ; Tue, 9 Jun 2009 01:13:59 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1824299qwe.7 for ; Mon, 08 Jun 2009 18:13:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=CI1SJ1lVUt885P9NlDSt7ONidaFm+S8sHVq4+658FzM=; b=AxbrcAE++SK+GprGfinTmlNDUyzfueAliQCgVgywcOvosiR/Qr5fLeMB8XwCCMI4Kj 7QHbUPG41yhsZPXMR2NifuQxqiownPR0wLg7nbxvc84lsR7mbPHuV/Jk8JqEMuGxzyXg KOa/lKlGvqhl8N+m9Uzx0XGbtrk58Xn6VFJh8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=IZ9DkgK8jd1lxCnQh4sdiy4MY0XxyqoKhzXIncS4HpK53IhZ/7Iqy1Hd1NnQzvZoXv t3TddgSjFaPq//uCXeUVLzViDhJu/LkCC4fQV8x95yRODoFUGwRbHYFhxonYCsW+Vjy/ Hjf5N4x5liWhv4qSF2bbkwEi6ejDw6w8WYzzc= MIME-Version: 1.0 Received: by 10.229.94.139 with SMTP id z11mr470939qcm.6.1244510039073; Mon, 08 Jun 2009 18:13:59 -0700 (PDT) Date: Mon, 8 Jun 2009 18:13:59 -0700 Message-ID: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> From: Kelly Jones To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 01:14:00 -0000 What UFS-like filesystem has unlimited inodes, but is a drop-in replacement for ext3, and is fairly easy to configure? Is UFS2 no longer considered the "best" general-use filesystem? Reason I ask: I'm going to create many small (~1K) files on a 100G disk and thus need at least 100M inodes. "newfs -i" maxes out at ~52M inodes (862 groups * 60864 inodes =~ 52M inodes): # newfs -N -i 1 /dev/da1;: same results as -i 2048 /dev/da1: 102400.0MB (209715200 sectors) block size 16384, fragment size 2048 using 862 cylinder groups of 118.88MB, 7608 blks, 60864 inodes. I realize I can use "f 512 -b 4096" to get 200M+ inodes, but I'm willing to experiment w/ a new filesystem, provided it behaves mostly like UFS. Thoughts? -- We're just a Bunch Of Regular Guys, a collective group that's trying to understand and assimilate technology. We feel that resistance to new ideas and technology is unwise and ultimately futile. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 02:36:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C23CA10656D7 for ; Tue, 9 Jun 2009 02:36:42 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.freebsd.org (Postfix) with ESMTP id 95EC38FC21 for ; Tue, 9 Jun 2009 02:36:42 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id B404335E2B7; Mon, 8 Jun 2009 22:36:41 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 08 Jun 2009 22:36:41 -0400 X-Sasl-enc: L1h7A3FP9/b/zngJj4eXDmoxUaDz14f71yqpv03ntTVY 1244515001 Received: from hagrid.ewd.goldmark.org (n114.ewd.goldmark.org [72.64.118.114]) by mail.messagingengine.com (Postfix) with ESMTPSA id 61F6E48AC1; Mon, 8 Jun 2009 22:36:41 -0400 (EDT) Message-Id: <517F6C75-BB73-4565-B6D5-B4BFC99B7D91@goldmark.org> From: Jeffrey Goldberg To: Tim Judd In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Mon, 8 Jun 2009 21:36:39 -0500 References: <20090608124323.1e422575@scorpio> X-Mailer: Apple Mail (2.935.3) Cc: freebsd-questions@freebsd.org Subject: Re: NO_PROFILE option in FBSD-7.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: Tue, 09 Jun 2009 02:36:43 -0000 On Jun 8, 2009, at 11:59 AM, Tim Judd wrote: > If that's related to 'world', all world-related build options should > be placed in src.conf now. What make.conf was to world+ports, is now > src.conf = world, make.conf = ports What is the appropriate location for KERNCONF, which I still have in / etc/make.conf ? -- Jeffrey Goldberg http://www.goldmark.org/jeff/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 02:38:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52D3F1065799 for ; Tue, 9 Jun 2009 02:38:00 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 0BB888FC1A for ; Tue, 9 Jun 2009 02:37:59 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qyk3 with SMTP id 3so4873682qyk.3 for ; Mon, 08 Jun 2009 19:37:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=shJGEOX22KYMMRBgduT9V0R4kl027fTVe7/vz7v9KlM=; b=DY6eQlX7NxecCJeKxT7sHqc//bzIRhLEmb/OdjrgJlPVTQPemWhVr1V7CCGLq0a5+3 TC1vvAers7gzsJ0jnJg530ZBof51HYISTP0YCF07jSkeXjqDh6YiStJ0w8lntwQPbSiN IKUEYbRtVZkkISU/HdM0vYdh9xNx3nyEOwAiw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=bupLj4bYztAjKBqLAnH8z8oME0198hIurmccsnJWZhayjVIrtjMxjQaDs5UDDKweu/ x5GSIrMp+IWaja8zJ20VfNIk1EYdJ6COu6aD0GSRV9Jx1QigAVY6Sd4ew2jI1e5R0nl8 SLnNgZzM1UTzq7MWUjhHo+ElKFD19JoPNaOv4= MIME-Version: 1.0 Received: by 10.220.92.204 with SMTP id s12mr4287994vcm.17.1244515078969; Mon, 08 Jun 2009 19:37:58 -0700 (PDT) In-Reply-To: <4A2DA11E.80508@gmail.com> References: <4A2DA11E.80508@gmail.com> Date: Mon, 8 Jun 2009 20:37:58 -0600 Message-ID: From: Tim Judd To: "Aryeh M. Friedman" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: getting aux display on laptop to be the only display X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 02:38:00 -0000 Laptop VGA cards are only two types: independently driven, or mirrored. The former is what allows the internal and external to display different things simultaneously. The latter is a 1:1 mirror image on one and other. All laptops I've seen when the external VGA is enabled are mirrored. Via VGA driver functions, you can make them independent. My guess for what you need is xrandr, to which I'm not very well versed. It seems to be "the answer" when it comes to video output layout, size, orientation... swiss army knife. I'm welcome to corrections and learning myself, but I would shoot for VGA driver and/or xrandr tweaking first. On 6/8/09, Aryeh M. Friedman wrote: > I have following hardware on my laptop: > > > dmesg|grep vga > vgapci0: port 0x6110-0x6117 mem > 0x90000000-0x903fffff,0x80000000-0x8fffffff irq 16 at device 2.0 on pci0 > agp0: on vgapci0 > vgapci1: mem 0x94500000-0x945fffff at device > 2.1 on pci0 > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > drm0: on vgapci0 > vgapci0: child drm0 requested pci_enable_busmaster > > and I have an extrtnal 21" widescreen (vga) that when I hook it up the > default x11.config has it at 1024x768 on *BOTH* monitors.... How do > I make it so X only considers the external (if attached) monitor? > _______________________________________________ > 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 9 02:44:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 066231065674 for ; Tue, 9 Jun 2009 02:44:00 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id A3A128FC1A for ; Tue, 9 Jun 2009 02:43:59 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n592hw8o006634 for ; Mon, 8 Jun 2009 22:43:58 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n592hwLq006632; Mon, 8 Jun 2009 22:43:58 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id EF4D2BED8; Mon, 8 Jun 2009 22:37:01 -0400 (EDT) To: freebsd-questions@freebsd.org In-reply-to: (message from Daniel Underwood on Mon, 8 Jun 2009 17:17:29 -0400) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> Date: Mon, 8 Jun 2009 22:37:01 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 02:44:00 -0000 >> On Mon, 8 Jun 2009 17:17:29 -0400, >> Daniel Underwood said: D> In the course of reading literature for research, it often happens that I D> find myself wanted to return to something I have previously read, but I D> only recall a few "things" about the article, often the author and a D> keyword. Is there some inventory/database software (for local use only) D> that can be easily used for this purpose? (The closest things that comes D> to mind (conceptually) is "image collection" software.) Are these PDF files generated by scanning journal pages, or do they contain text? If the latter, you could use something like xapian or hyperestraier to make a full-text index of your files. -- Karl Vogel I don't speak for the USAF or my company Top oxymorons #22: Childproof From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 02:44:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0715D1065675 for ; Tue, 9 Jun 2009 02:44:00 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id A39CC8FC19 for ; Tue, 9 Jun 2009 02:43:59 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n592hwF8006642 for ; Mon, 8 Jun 2009 22:43:58 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n592hwkb006641; Mon, 8 Jun 2009 22:43:58 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id 5F7AABED8; Mon, 8 Jun 2009 22:43:40 -0400 (EDT) To: freebsd-questions@freebsd.org In-reply-to: <7fc6c27a0906081056u161731c6m298efcf2aa471d38@mail.gmail.com> (message from ericr on Mon, 8 Jun 2009 11:56:35 -0600) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090609024340.5F7AABED8@kev.msw.wpafb.af.mil> Date: Mon, 8 Jun 2009 22:43:40 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 02:44:00 -0000 >> On Mon, 8 Jun 2009 11:56:35 -0600, >> ericr said: E> Has anyone bought servers from one of the big manufacturers lately and had E> good luck with them? I've always had good luck with Dell, especially the GX-260s. I've used them for file-servers handling over 100 Samba connections at a time, and (considering they're just workstations) they work fine. E> We've used SuperMicro's in the past, and they've been wildly variable. E> Some of them have run ok for years, some died within weeks, and kept dying E> no matter what parts we put in. We have three SuperMicro blade servers. One's worked like a champ, and the other two died. The vendor we used tanked, so no warranty support. I got two IBM X3400 boxes to replace the SuperMicros; the drives were OK, so I got empty enclosures plus some rails, stuffed the drives in, and installed FreeBSD-7.1. My only problem so far has been a BIOS issue, but IBM site-support has been great. -- Karl Vogel I don't speak for the USAF or my company Golfer: "Do you think I can get there with a 5-iron? Caddy: "Eventually." From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:09:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CDCE106564A for ; Tue, 9 Jun 2009 03:09:26 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.27]) by mx1.freebsd.org (Postfix) with ESMTP id 0CA408FC12 for ; Tue, 9 Jun 2009 03:09:25 +0000 (UTC) (envelope-from aryeh.friedman@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1854208qwe.7 for ; Mon, 08 Jun 2009 20:09:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=uR89zsjNRzzUIg3e0MXBhLmPMhkkg6yjlvzaKnt12Sw=; b=Ny4f95O2rruYBwQZw8YA6NxwyQxdJPraOIXMRtIGqA/mQv/EIe6bUULdKE7XplTfy6 pLHb4mQI03bDHhNnK5zExEu8bgEP17u9L2HG84DjOLb/ziLAgbTGYuUCWDp2bwteUDjj L7wKT4/fpbwIBk1YO7AbD9PQB1P4kQ5Mj1CCc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=fc48sl8yvES0gY2qO1DqBHW1jmFo1rxeGikSTFffuZk/hy6nr0amaI8ekidImO+ruT 7U6PCzdjqhMV8k2GacDJJV71BSFPBFE2oVjAjDr+vFriQRjGcRuJ3blwENk6JmtVnGJg yB8bvV++/kxUJKI+wBvupY6qMTvvu365z04Xs= Received: by 10.224.45.193 with SMTP id g1mr7562536qaf.247.1244516965401; Mon, 08 Jun 2009 20:09:25 -0700 (PDT) Received: from laptop.istudentunion.com (ool-44c0cd7a.dyn.optonline.net [68.192.205.122]) by mx.google.com with ESMTPS id 8sm182942qwj.14.2009.06.08.20.09.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 20:09:24 -0700 (PDT) Message-ID: <4A2DD262.2030909@gmail.com> Date: Tue, 09 Jun 2009 03:09:22 +0000 From: "Aryeh M. Friedman" User-Agent: Thunderbird 2.0.0.21 (X11/20090606) MIME-Version: 1.0 To: Tim Judd References: <4A2DA11E.80508@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: getting aux display on laptop to be the only display X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 03:09:26 -0000 Tim Judd wrote: > Laptop VGA cards are only two types: independently driven, or > mirrored. The former is what allows the internal and external to > display different things simultaneously. The latter is a 1:1 mirror > image on one and other. All laptops I've seen when the external VGA > is enabled are mirrored. Via VGA driver functions, you can make them > independent. > > My guess for what you need is xrandr, to which I'm not very well > versed. It seems to be "the answer" when it comes to video output > layout, size, orientation... swiss army knife. > That did the trick for anyone else with the same setup put this in any of your personal rc's like .xsession: xrander --output LCVDS --off --output VGA --auto > I'm welcome to corrections and learning myself, but I would shoot for > VGA driver and/or xrandr tweaking first. > > On 6/8/09, Aryeh M. Friedman wrote: > >> I have following hardware on my laptop: >> >> > dmesg|grep vga >> vgapci0: port 0x6110-0x6117 mem >> 0x90000000-0x903fffff,0x80000000-0x8fffffff irq 16 at device 2.0 on pci0 >> agp0: on vgapci0 >> vgapci1: mem 0x94500000-0x945fffff at device >> 2.1 on pci0 >> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 >> drm0: on vgapci0 >> vgapci0: child drm0 requested pci_enable_busmaster >> >> and I have an extrtnal 21" widescreen (vga) that when I hook it up the >> default x11.config has it at 1024x768 on *BOTH* monitors.... How do >> I make it so X only considers the external (if attached) monitor? >> _______________________________________________ >> 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 9 03:11:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E44E31065670 for ; Tue, 9 Jun 2009 03:11:54 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 74AC88FC13 for ; Tue, 9 Jun 2009 03:11:54 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so4625820ewy.43 for ; Mon, 08 Jun 2009 20:11:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:cc:content-type :content-transfer-encoding; bh=/CSFoaxH1J7v7DuHDw64ZWIfXEmF1TkmJNNFOWVkLgo=; b=as7ZmDJA+9evrfpycx8v8Sb9eq38NE2gnP3zbhoKousmO80pYC97J4WoPpxNS8Rcry n3LAv6vYiBZ48I7lEfL61RSsoLbystYbCoaxG1PVsj1lC81f0Iw3lHBsUNePMC8FFWM3 WQfkX/SqITQAKfNk2bfgE1lMDHaciEwV+EWOg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; b=gVNOvEvhFCM3ZKoxTCAU4JKB6kqKXPQgM2ICIJERtu8ulf2674UOPwoSYqy98KeEtN kayd4uiDh2mSFn3D5YgzLf59mcg0fA/YhNUV/UHUPBk4vloDi1+xgyNzxA90L7CmWh1L 89p7QLRUoGy1zPyyVDuGFcaIUroqLvn/PLjpE= MIME-Version: 1.0 Received: by 10.210.134.6 with SMTP id h6mr7308485ebd.26.1244517113219; Mon, 08 Jun 2009 20:11:53 -0700 (PDT) In-Reply-To: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> Date: Mon, 8 Jun 2009 23:11:50 -0400 Message-ID: From: Daniel Underwood Cc: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: PDF inventory 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, 09 Jun 2009 03:11:55 -0000 Since all the PDFs contain text (none are scanned "images"), can I simply use some command like grep to search for text within the collection? If so, how would I do this? Can grep read text from within PDFs? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:13:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5A41106564A for ; Tue, 9 Jun 2009 03:13:57 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8EDC38FC1E for ; Tue, 9 Jun 2009 03:13:57 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 5D6297E837; Mon, 8 Jun 2009 19:13:56 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 19:13:26 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <4A294E6A.7070205@rawbw.com> <3a142e750906051012u73178f76wfe4ee3726414c1a2@mail.gmail.com> In-Reply-To: <3a142e750906051012u73178f76wfe4ee3726414c1a2@mail.gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906081913.26703.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: yuri@rawbw.com, "Paul B. Mahol" Subject: Re: What is the equivalent of Linux command 'ps --forest'? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 03:13:58 -0000 On Friday 05 June 2009 09:12:08 Paul B. Mahol wrote: > On 6/5/09, Yuri wrote: > > How can I see processes in a hierarchical way? > > http://lists.freebsd.org/pipermail/svn-src-head/2009-May/006912.html > > or pstree from ports. And if in a jail, you can use the patch below to add jail support via -j switch. -- Mel --- pstree.c.orig 2007-10-26 11:39:50.000000000 -0800 +++ pstree.c 2008-09-20 00:30:53.000000000 -0800 @@ -189,7 +189,7 @@ { "qq", "qw", "`", "q", "t", "x", "m", "\016", "\017", "\033(B\033)0" } /*Vt100*/ }, *C; -int MyPid, NProc, Columns, RootPid; +int MyPid, NProc, Columns, RootPid, jFlag; short showall = TRUE, soption = FALSE, Uoption = FALSE; char *name = "", *str = NULL, *Progname; long ipid = -1; @@ -464,6 +464,27 @@ exit(1); } + /* If this is a FreeBSD jail(8), create a fake root process 'jailinit', which + * serves as starting point for the tree. */ + if( jFlag ) + { + P = realloc(P, (i+1) * sizeof(struct Proc)); + if (P == NULL) { + fprintf(stderr, "Problems with realloc.\n"); + exit(1); + } + memset(&P[i], 0, sizeof(*P)); + P[i].uid = 0; + (void)strncpy(P[i].name, "root", sizeof(P[i].name)); + P[i].pid = 1; + P[i].ppid = 0; + P[i].pgid = 1; + P[i].thcount = 1; + (void)strncpy(P[i].cmd, "/sbin/jailinit", sizeof(P[i].cmd)); + P[i].parent = P[i].child = P[i].sister = -1; + P[i].print = FALSE; + i++; + } while (NULL != fgets(line, MAXLINE, tn)) { int len, num; len = strlen(line); @@ -728,6 +749,7 @@ " -f file read input from (- is stdin) instead of running\n" " \"%s\"\n" " -g n use graphics chars for tree. n=1: IBM-850, n=2: VT100\n" + " -j Assume running in a FreeBSD jail (no root process)\n" " -l n print tree to n level deep\n" " -u user show only branches containing processes of \n" " -U don't show branches containing only root processes\n" @@ -756,7 +778,7 @@ Progname = strrchr(argv[0],'/'); Progname = (NULL == Progname) ? argv[0] : Progname + 1; - while ((ch = getopt(argc, argv, "df:g:hl:p:s:u:Uw?")) != EOF) + while ((ch = getopt(argc, argv, "df:g:hjl:p:s:u:Uw?")) != EOF) switch(ch) { /*case 'a': align = TRUE; @@ -778,6 +800,9 @@ } C = &TreeChars[graph]; break; + case 'j' : + jFlag = 1; + break; case 'l': /* LOPTION */ maxLdepth = atoi(optarg); /* LOPTION */ if(maxLdepth < 1) maxLdepth = 1; /* LOPTION */ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:21:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41661106564A for ; Tue, 9 Jun 2009 03:21:52 +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 9EE0B8FC17 for ; Tue, 9 Jun 2009 03:21:51 +0000 (UTC) (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.13.1) with ESMTP id n593HYPf080703 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 9 Jun 2009 10:17:34 +0700 (ICT) (envelope-from on@cs.ait.ac.th) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.14.3/8.14.3/Submit) id n593LnOa088398; Tue, 9 Jun 2009 10:21:49 +0700 (ICT) (envelope-from on) Date: Tue, 9 Jun 2009 10:21:49 +0700 (ICT) Message-Id: <200906090321.n593LnOa088398@banyan.cs.ait.ac.th> From: Olivier Nicole To: djuatdelta@gmail.com In-reply-to: (message from Daniel Underwood on Mon, 8 Jun 2009 23:11:50 -0400) References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 03:21:52 -0000 > Since all the PDFs contain text (none are scanned "images"), can I > simply use some command like grep to search for text within the > collection? If so, how would I do this? Can grep read text from > within PDFs? pdftotext, comes with the port xpdf I think Olivier From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:44:35 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A4CB106564A for ; Tue, 9 Jun 2009 03:44:35 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 1E7FB8FC14 for ; Tue, 9 Jun 2009 03:44:34 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so4639923ewy.43 for ; Mon, 08 Jun 2009 20:44:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=belcCbh0xNOszZh5xvMtOPNnvIaSweVRutCFlNXH8YA=; b=SIV8dYO5uNON42iMov0wEeyRJV6gvy+UAoJKlhvuSG2L3jzi5b/TygUrrhgVXAoG/W zZlsR8BAWXxkfCiiJBvGrLvoWeK7Sze0KOBjcnJBEiAYobCtRConNkTyGEPjFlPayZnA imz5vkuS3n0l5jIV5qBjQTfEZQJC/9HMpapZE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=wbQUts+nJCfXnRqaJ4ulE4Ply7yISgbDUrJAdvGym0enIfrAwffgeoCZ5s6ktS9TyJ Kx9jTJqPVsSUwnmHO8rX/2KdF/j2OULJoUdivrHORcOK3WbQgoe8q+mIpYH/Ub4iSqAC tXu0dRE3TzKj5VPUnX4iag9bxwnInz5PZls/U= MIME-Version: 1.0 Received: by 10.210.91.7 with SMTP id o7mr1645245ebb.32.1244519074169; Mon, 08 Jun 2009 20:44:34 -0700 (PDT) Date: Mon, 8 Jun 2009 23:44:34 -0400 Message-ID: From: Daniel Underwood To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 03:44:35 -0000 OK, this is perhaps a weird question, capable of being very confusing. So let's take a "for instance". Suppose I run something like the Linux command "fdupes" on a directory with many large files. This operation will take considerable time to complete. When it completes, a lot of output is send to stdout (displayed on the terminal). Further suppose that after running the command, I decide I want to save the output to a text file, so I can analyze the results outside of the terminal. What can I do? Well, I can do a traditional "copy-and-paste", or I could re-enter the previous command and send it to a text file (which I ought to have done in the first place). But is there another option? Is there some variable (such as, hypothetically, $output[n], where n=some integer index) that I could use to store the results in a text file? Such an option might look like the following: $ fdupes -r ~/directorywithlotsoflargefiles (.....lots of output, woops, should have sent to a text file!....) $ output[1] >> ~/textfile.txt Hopefully this has made (some) sense. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:48:23 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E5F1106564A for ; Tue, 9 Jun 2009 03:48:22 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 84ECB8FC08 for ; Tue, 9 Jun 2009 03:48:22 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by qyk3 with SMTP id 3so4909670qyk.3 for ; Mon, 08 Jun 2009 20:48:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=P121srn+fgRpInsWJ7SNO/zM1fnw+6T1Dnym+pG4dMk=; b=v8mchzYQ9ePq+1dsLUn/8VxCsx4NokH1GsOL/ZFNtxRdKIwltusGx4p1B+f3KLc2Yp QjBhbNdStb43a2vC//u7vpM4wACgBpVC0G3WhObOfj99XU4mObBFt0D92bd9D+DGQy78 6JARwbll9OnaD5BN/MzhI+J91N/g7YNWcmlNc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=tjIusF7XY4YQM4+3xPHdX14rw08Bp3xO3jpamRHhL2w7H1KW6lMgYtZoT/kAug5wSf Tv1kadl8UvqA5F1Z/OHOLQXYxD05v1eIf/NfP6CfjTrrV0OepeVMtp6Rf7VT/orBeTEV Wqhj/Ee7QYadhvKJiEvrO2knxhVN9QcpRtKBE= MIME-Version: 1.0 Received: by 10.224.32.140 with SMTP id c12mr7571271qad.187.1244519301925; Mon, 08 Jun 2009 20:48:21 -0700 (PDT) In-Reply-To: References: Date: Mon, 8 Jun 2009 22:48:21 -0500 Message-ID: From: Lord Of Hyphens To: Daniel Underwood Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 03:48:23 -0000 On Mon, Jun 8, 2009 at 10:44 PM, Daniel Underwood wrote: > OK, this is perhaps a weird question, capable of being very confusing. > So let's take a "for instance". > > Suppose I run something like the Linux command "fdupes" on a directory > with many large files. This operation will take considerable time to > complete. When it completes, a lot of output is send to stdout > (displayed on the terminal). > > Further suppose that after running the command, I decide I want to > save the output to a text file, so I can analyze the results outside > of the terminal. What can I do? Well, I can do a traditional > "copy-and-paste", or I could re-enter the previous command and send it > to a text file (which I ought to have done in the first place). > > But is there another option? Is there some variable (such as, > hypothetically, $output[n], where n=some integer index) that I could > use to store the results in a text file? Such an option might look > like the following: > > $ fdupes -r ~/directorywithlotsoflargefiles > > (.....lots of output, woops, should have sent to a text file!....) > > $ output[1] >> ~/textfile.txt > > Hopefully this has made (some) sense. > Check the manpage for tee. That should give you a solution you're looking for. --Joseph Lenox -- "Nothing unreal exists." - Kiri-kin-tha's First Law of Metaphysics. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:50:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8288C106564A for ; Tue, 9 Jun 2009 03:50:58 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 360958FC0C for ; Tue, 9 Jun 2009 03:50:56 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by qyk3 with SMTP id 3so4910794qyk.3 for ; Mon, 08 Jun 2009 20:50:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=8XJtY5Kt0JawBtq5dKHx6wkN6/I0PjVgojBquP4abzM=; b=UQbmW934yaF2COJoayUvtnAhwARljPIxyh/cnXjaY6HWley7TYjNY4AMZQn2CU8WcF VsA8DWPVXJWyKUDtyrNHmaqCoHmzPnw+VhFB7rrZheRu+YzdSpDNNM7R4+K2HPy72psI E92uNdpEeZdqzLnfxaRMEqNvnlbyCCMaFRDtA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=jSoNdox/72TR36IDPJ+4Btxgfp71jTASQLlvY064iqvMNATz0YwlurxO9TRmM11Ccq S9R8WXn+0o/MGNh/1zNUg+fSnhvWU+/OZGVZ6Ec2VBr9fFArK5Ad2chlhcvhkq2O4Rjm O7a0GnU+Q1iy3/nqvjHANtg67SSIqfItSjIQA= MIME-Version: 1.0 Received: by 10.224.45.205 with SMTP id g13mr7588279qaf.170.1244519456381; Mon, 08 Jun 2009 20:50:56 -0700 (PDT) In-Reply-To: <200906090321.n593LnOa088398@banyan.cs.ait.ac.th> References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> <200906090321.n593LnOa088398@banyan.cs.ait.ac.th> Date: Mon, 8 Jun 2009 22:50:56 -0500 Message-ID: From: Lord Of Hyphens To: Olivier Nicole Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 03:50:58 -0000 On Mon, Jun 8, 2009 at 10:21 PM, Olivier Nicole wrote: > > Since all the PDFs contain text (none are scanned "images"), can I > > simply use some command like grep to search for text within the > > collection? If so, how would I do this? Can grep read text from > > within PDFs? > > pdftotext, comes with the port xpdf I think > > Olivier > > A partial solution would also to do a search on someone else's index (google scholar, IEEEXplore, etc) to get the title of what you're looking for. -- "Nothing unreal exists." - Kiri-kin-tha's First Law of Metaphysics. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 03:54:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B6B9106566C for ; Tue, 9 Jun 2009 03:54:14 +0000 (UTC) (envelope-from scs@eecs.berkeley.edu) Received: from gateway0.EECS.Berkeley.EDU (gateway0.EECS.Berkeley.EDU [169.229.60.87]) by mx1.freebsd.org (Postfix) with ESMTP id 5355F8FC13 for ; Tue, 9 Jun 2009 03:54:14 +0000 (UTC) (envelope-from scs@eecs.berkeley.edu) Received: from [192.168.1.13] (adsl-75-41-56-181.dsl.pltn13.sbcglobal.net [75.41.56.181]) (authenticated bits=0) by gateway0.EECS.Berkeley.EDU (8.14.3/8.13.5) with ESMTP id n593sCQi008428 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Mon, 8 Jun 2009 20:54:13 -0700 (PDT) Message-Id: <9FACF948-286D-40BC-9471-74CC1D5580E9@eecs.berkeley.edu> From: Steven Schlansker To: Lord Of Hyphens In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Mon, 8 Jun 2009 20:54:07 -0700 References: X-Mailer: Apple Mail (2.935.3) Cc: Daniel Underwood , freebsd-questions@freebsd.org Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 03:54:14 -0000 On Jun 8, 2009, at 8:48 PM, Lord Of Hyphens wrote: > On Mon, Jun 8, 2009 at 10:44 PM, Daniel Underwood >wrote: >> >> $ fdupes -r ~/directorywithlotsoflargefiles >> >> (.....lots of output, woops, should have sent to a text file!....) >> >> $ output[1] >> ~/textfile.txt >> >> Hopefully this has made (some) sense. >> > > > Check the manpage for tee. That should give you a solution you're > looking > for. I think the intention of the original question was for the case where you have forgotten to set up a pipe/redirection properly before starting the long- running command. Tee would work fine if you have the foresight to use it... Steven From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 04:04:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C34D51065672 for ; Tue, 9 Jun 2009 04:04:46 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email1.allantgroup.com (email1.emsphone.com [199.67.51.115]) by mx1.freebsd.org (Postfix) with ESMTP id 7E6008FC08 for ; Tue, 9 Jun 2009 04:04:46 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email1.allantgroup.com (8.14.0/8.14.0) with ESMTP id n5944ioS027558 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 8 Jun 2009 23:04:44 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id n5944hbC035471 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 8 Jun 2009 23:04:43 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id n5944hJ8035469; Mon, 8 Jun 2009 23:04:43 -0500 (CDT) (envelope-from dan) Date: Mon, 8 Jun 2009 23:04:43 -0500 From: Dan Nelson To: Kelly Jones Message-ID: <20090609040443.GA56070@dan.emsphone.com> References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: ClamAV version 0.94.1, clamav-milter version 0.94.1 on email1.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email1.allantgroup.com [199.67.51.78]); Mon, 08 Jun 2009 23:04:44 -0500 (CDT) X-Scanned-By: MIMEDefang 2.45 Cc: freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 04:04:47 -0000 In the last episode (Jun 08), Kelly Jones said: > What UFS-like filesystem has unlimited inodes, but is a drop-in > replacement for ext3, and is fairly easy to configure? > > Is UFS2 no longer considered the "best" general-use filesystem? > > Reason I ask: I'm going to create many small (~1K) files on a 100G > disk and thus need at least 100M inodes. > > "newfs -i" maxes out at ~52M inodes (862 groups * 60864 inodes =~ 52M > inodes): > > # newfs -N -i 1 /dev/da1;: same results as -i 2048 > > /dev/da1: 102400.0MB (209715200 sectors) block size 16384, fragment size > 2048 using 862 cylinder groups of 118.88MB, 7608 blks, 60864 > inodes. > > I realize I can use "f 512 -b 4096" to get 200M+ inodes, but I'm willing > to experiment w/ a new filesystem, provided it behaves mostly like UFS. > Thoughts? At this point you're sort of out of the general-use category :) You want ZFS. Or rather, you don't want to try and fsck a UFS filesystem with 200M inodes. The three drawbacks I can think of to ZFS are it's hard to boot from (although you probably aren't booting from da1), it requires more memory than UFS, and there is no ACL support at the moment (not that many people used the ACL support for UFS). If you're already on an amd64 system with 4GB or more RAM you'll be fine. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 04:12:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07ABF106566C for ; Tue, 9 Jun 2009 04:12:25 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email1.allantgroup.com (email1.emsphone.com [199.67.51.115]) by mx1.freebsd.org (Postfix) with ESMTP id AF0648FC12 for ; Tue, 9 Jun 2009 04:12:24 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email1.allantgroup.com (8.14.0/8.14.0) with ESMTP id n594CNRL028453 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 8 Jun 2009 23:12:24 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id n594CNSZ056648 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 8 Jun 2009 23:12:23 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id n594CN5O056647; Mon, 8 Jun 2009 23:12:23 -0500 (CDT) (envelope-from dan) Date: Mon, 8 Jun 2009 23:12:23 -0500 From: Dan Nelson To: Steven Schlansker Message-ID: <20090609041223.GB56070@dan.emsphone.com> References: <9FACF948-286D-40BC-9471-74CC1D5580E9@eecs.berkeley.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <9FACF948-286D-40BC-9471-74CC1D5580E9@eecs.berkeley.edu> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: ClamAV version 0.94.1, clamav-milter version 0.94.1 on email1.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email1.allantgroup.com [199.67.51.78]); Mon, 08 Jun 2009 23:12:24 -0500 (CDT) X-Scanned-By: MIMEDefang 2.45 Cc: freebsd-questions@freebsd.org, Lord Of Hyphens , Daniel Underwood Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 04:12:25 -0000 In the last episode (Jun 08), Steven Schlansker said: > On Jun 8, 2009, at 8:48 PM, Lord Of Hyphens wrote: > > On Mon, Jun 8, 2009 at 10:44 PM, Daniel Underwood > >wrote: > >> > >> $ fdupes -r ~/directorywithlotsoflargefiles > >> > >> (.....lots of output, woops, should have sent to a text file!....) > >> > >> $ output[1] >> ~/textfile.txt > > > > Check the manpage for tee. That should give you a solution you're > > looking for. > > I think the intention of the original question was for the case where you > have forgotten to set up a pipe/redirection properly before starting the > long- running command. Tee would work fine if you have the foresight to > use it... How much output are you expecting to capture? You can configure an arbitrary number of syscons history lines or screen scrollback lines. I'm sure xterm can be configured similarly, but I can't find it from a quick skim of the manpage. I have syscons set to 1024 lines and screen set to 10240 lines myself. You can use vidcontrol -HP to dump syscons history if you need to copy more than you can select with the mouse on a single page, and screen has a whole sub-interface for interacting with its scrollback. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 04:15:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 97D2E1065673 for ; Tue, 9 Jun 2009 04:15:42 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from fork8.mail.virginia.edu (fork8.mail.Virginia.EDU [128.143.2.178]) by mx1.freebsd.org (Postfix) with ESMTP id 4B1CD8FC29 for ; Tue, 9 Jun 2009 04:15:42 +0000 (UTC) (envelope-from llc2w@virginia.edu) Received: from localhost (localhost [127.0.0.1]) by fork8.mail.virginia.edu (Postfix) with ESMTP id 624291F5166 for ; Tue, 9 Jun 2009 00:15:41 -0400 (EDT) Received: from fork8.mail.virginia.edu ([127.0.0.1]) by localhost (fork8.mail.virginia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24937-07 for ; Tue, 9 Jun 2009 00:15:41 -0400 (EDT) Received: from mail-ew0-f211.google.com (mail-ew0-f211.google.com [209.85.219.211]) by fork8.mail.virginia.edu (Postfix) with ESMTP id 196D91F5153 for ; Tue, 9 Jun 2009 00:15:41 -0400 (EDT) Received: by mail-ew0-f211.google.com with SMTP id 7so4979682ewy.24 for ; Mon, 08 Jun 2009 21:15:40 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.6.213 with SMTP id 63mr2643682wen.208.1244520940614; Mon, 08 Jun 2009 21:15:40 -0700 (PDT) In-Reply-To: <792298050906081806m5844ea84g1c8b5267aa15b15c@mail.gmail.com> References: <792298050906041925g11d7c519k48e6d392be6c6471@mail.gmail.com> <200906081634.07041.mel.flynn+fbsd.questions@mailing.thruhere.net> <792298050906081806m5844ea84g1c8b5267aa15b15c@mail.gmail.com> Date: Tue, 9 Jun 2009 00:15:37 -0400 Message-ID: <792298050906082115g6d342082j56a0ea8c4777ce20@mail.gmail.com> From: L Campbell To: Mel Flynn Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-UVA-Virus-Scanned: by amavisd-new at fork8.mail.virginia.edu Cc: freebsd-questions@freebsd.org Subject: Re: Lighttpd wedged and ignoring SIGKILL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 04:15:42 -0000 On Mon, Jun 8, 2009 at 9:06 PM, L Campbell wrote: > On Mon, Jun 8, 2009 at 8:34 PM, Mel > Flynn wrote: >> Change the write-backend. Look in google for lighttpd and sendfile to see why. > > I was under the impression that that bug was fixed[1]. In any case, > I've switched from freebsd-sendfile to writev. I'll send another ping > if that doesn't fix it. writev doesn't seem to have done the trick -- lighttpd went down and took all the other services (ssh, etc) with it, even after a reboot (??!). I'm going to go with the hunch from a thread I found[1] that it could potentially be due to kqueue and switch to writev+poll once the machine comes back up. And then I'm turning my phone off for the night, lmao. Then try to convince the actual sysadmin to switch to Nginx in the morning, because this is only helping to deepen my grudge against Lighttpd. Thanks again for the help guys; I'll post another message in the morning if writev+poll crashes too (in which case faulty hardware would enter my list of suspicions). Bleh. -- [1] http://groups.google.com/group/lucky.freebsd.ports/browse_thread/thread/a6e426a75077e800 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 04:54:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12D24106564A for ; Tue, 9 Jun 2009 04:54:43 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id B9C128FC0A for ; Tue, 9 Jun 2009 04:54:42 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so2102780ywe.13 for ; Mon, 08 Jun 2009 21:54:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=igdILrlwjemlm+4O0ph+tZ6tFkzts1OVmbo5XT4wMcI=; b=Rn1j474VhcXAyCUsr6hamcUObOH6yMXG0yKh6c+XjTTCmYfwOJ/6Y23VWBu0n1IXJp Wo2js/KJHEMcSTxbq4LYmvcnqI2SZc+K3SgTHvcF9IuM+MxCumPFq/ciuPo0xy1uwQmO xje2SSbU2cQgE357X0VMxua5hrZlY7ff//XRU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=lDoA6NdaVOk/Jh2X+N6xjbswzZOQcqlserkqAy2ssRha8hlDgO+GZCKUMjUcSIIP1P Z5H0I6vDSVRyWixBTLNXy3JJsiOUTYg4h4f40DNgg0m1pE7mTcxxPq2vBnh12m8cYq6m QK7FlKukRgBpceDMtiwW7nqFVCoIIbD/sU9u8= Received: by 10.150.134.21 with SMTP id h21mr14290910ybd.142.1244523282260; Mon, 08 Jun 2009 21:54:42 -0700 (PDT) Received: from ?192.168.1.241? (pool-72-69-74-200.chi01.dsl-w.verizon.net [72.69.74.200]) by mx.google.com with ESMTPS id 8sm510339ywg.23.2009.06.08.21.54.40 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 21:54:41 -0700 (PDT) Message-ID: <4A2DEB05.904@gmail.com> Date: Mon, 08 Jun 2009 23:54:29 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood , freebsd-questions@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 04:54:43 -0000 Daniel Underwood wrote: > I read up on tee, but I'm not sure it does the trick. From what I > understand, tee simply enters a mode where what you type gets put into > a text file. > What actually happens is when you pipe it to tee, it shows up in a text file and on the screen. That lets you make the quick decision of whether or not to keep the file you just made. --Joseph Lenox PS: Please remember to CC to the mailing list. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 04:56:33 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20BA31065687 for ; Tue, 9 Jun 2009 04:56:33 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.242]) by mx1.freebsd.org (Postfix) with ESMTP id C58CF8FC17 for ; Tue, 9 Jun 2009 04:56:32 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by an-out-0708.google.com with SMTP id c3so2122343ana.13 for ; Mon, 08 Jun 2009 21:56:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=2YmB5jPe0h18BHnZf11LDT2W8OzEQu8EAdOSSRQMl+U=; b=CKgGDVkbMZ6dIkFzWez3Z6y7RbP7oRwuANfJA9m2PAhH520U18kPA3vZAJiGtEcNYB 2PyDinEhIH7+SfGfI6tmWrMMrKecyg/OLU7BViKHNMThr67FDD7rndV4tT0zXevfDKas UG9UwqmOzc77AGiagAYlRtR0DMr96YZJsvHZ4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=wfsCkS6SfIJfy4zMQOlO20iCrNNFXJRsYwppODdgmsvEdAx0fnkfIWPKfmnlcB97oz 4eJLab6SdWqlmGPXJiXapEBZH8WGLEg8ie6OA3Yyekx5hmSaBrbG9ZRaguQkXvZ/1b2O V2qkHpbNh2gCL8QaH8OzB1JOUqVKhQ61tMz/E= Received: by 10.100.166.13 with SMTP id o13mr966466ane.103.1244523392265; Mon, 08 Jun 2009 21:56:32 -0700 (PDT) Received: from ?192.168.1.241? (pool-72-69-74-200.chi01.dsl-w.verizon.net [72.69.74.200]) by mx.google.com with ESMTPS id 6sm1273525ywn.37.2009.06.08.21.56.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 08 Jun 2009 21:56:31 -0700 (PDT) Message-ID: <4A2DEB73.8050906@gmail.com> Date: Mon, 08 Jun 2009 23:56:19 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood , freebsd-questions@freebsd.org References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> <200906090321.n593LnOa088398@banyan.cs.ait.ac.th> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: PDF inventory 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, 09 Jun 2009 04:56:33 -0000 Daniel Underwood wrote: >> A partial solution would also to do a search on someone else's index (google >> scholar, IEEEXplore, etc) to get the title of what you're looking for. >> > > True, but in this situation, I want to find something within a local > collection of literature. E.g., find a table of data I recall seeing > in my literature review. > > Which is why I initially suggested collecting the BibTeX (or your preferred citation management software of choice) entries for your articles and adding them. I know that when I start collecting articles for literature reviews, I get a BibTeX copy of the citation, so I can easily drop it into my papers. --Joseph From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 06:41:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B922F106564A for ; Tue, 9 Jun 2009 06:41:22 +0000 (UTC) (envelope-from npapke@acm.org) Received: from idcmail-mo1so.shaw.ca (idcmail-mo1so.shaw.ca [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 844558FC1B for ; Tue, 9 Jun 2009 06:41:22 +0000 (UTC) (envelope-from npapke@acm.org) Received: from pd2ml1so-ssvc.prod.shaw.ca ([10.0.141.139]) by pd3mo1so-svcs.prod.shaw.ca with ESMTP; 09 Jun 2009 00:13:01 -0600 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.0 c=0 a=lvbMJxvVAAAA:8 a=9xbP4PelcJ1ykLK2Sq0A:9 a=RvQlW2vxNYfmUs7kSm0ldPxC2rcA:4 a=nAPXUAfsBmEA:10 a=zPywJwoN2wMA:10 a=Q2_-hNh_UqoA:10 Received: from unknown (HELO proven.lan) ([24.85.241.34]) by pd2ml1so-dmz.prod.shaw.ca with ESMTP; 09 Jun 2009 00:13:01 -0600 Received: from proven.lan (localhost [127.0.0.1]) by proven.lan (8.14.3/8.14.3) with ESMTP id n596D1Sa033914; Mon, 8 Jun 2009 23:13:01 -0700 (PDT) (envelope-from npapke@acm.org) Received: from localhost (localhost [[UNIX: localhost]]) by proven.lan (8.14.3/8.14.3/Submit) id n596D1n6033913; Mon, 8 Jun 2009 23:13:01 -0700 (PDT) (envelope-from npapke@acm.org) X-Authentication-Warning: proven.lan: npapke set sender to npapke@acm.org using -f From: Norbert Papke Organization: Archaeological Filing To: freebsd-questions@freebsd.org Date: Mon, 8 Jun 2009 23:13:00 -0700 User-Agent: KMail/1.9.10 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: <200906082313.01084.npapke@acm.org> Cc: Daniel Underwood Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 06:41:23 -0000 On June 8, 2009, Daniel Underwood wrote: > Further suppose that after running the command, I decide I want to > save the output to a text file, so I can analyze the results outside > of the terminal. What can I do? Well, I can do a traditional > "copy-and-paste", or I could re-enter the previous command and send it > to a text file (which I ought to have done in the first place). > > But is there another option? Is there some variable (such as, > hypothetically, $output[n], where n=some integer index) that I could > use to store the results in a text file? Such an option might look > like the following: You could use sysutils/screen from ports. Screen lets you capture your session in a log file. If you decide you need the output from a previous command, it would be trivial to extract from the log. -- Norbert Papke. npapke@acm.org http://saveournet.ca Protecting your Internet's level playing field From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 06:43:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C40C106566C for ; Tue, 9 Jun 2009 06:43:18 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id A32158FC13 for ; Tue, 9 Jun 2009 06:43:15 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n596h9V3004600; Tue, 9 Jun 2009 08:43:09 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n596h8K3004597; Tue, 9 Jun 2009 08:43:09 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 08:43:08 +0200 (CEST) From: Wojciech Puchar To: Karl Vogel In-Reply-To: <20090609024340.5F7AABED8@kev.msw.wpafb.af.mil> Message-ID: References: <20090609024340.5F7AABED8@kev.msw.wpafb.af.mil> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 06:43:18 -0000 > We have three SuperMicro blade servers. One's worked like a champ, and > the other two died. The vendor we used tanked, so no warranty support. > > I got two IBM X3400 boxes to replace the SuperMicros; the drives were > OK, so I got empty enclosures plus some rails, stuffed the drives in, and > installed FreeBSD-7.1. My only problem so far has been a BIOS issue, but > IBM site-support has been great. > > -- from posts here about branded hardware including you, i see that i do right things. i just buy parts and make computer from them, not only it's cheap, but it have similar reliability as expensive branded ones. Usually DIY computers fail within a week or not at all, similar to branded ones. My advice for anyone who needs new computer, but don't need super-ultra-high-end new core i7 or whatever. Buy second hand branded hardware from ebay (allegro in poland). It's usually hardware that was used in offices and replaced by more "modern" ones. It's already tested!!! You could get high-end PIII with 512MB RAM for $30 at most, the only thing you may need to add is larger drives, but 20GB isn't uncommon. P4 with 1GB RAM and 40GB drive is for 60-70$ here. All this branded second-hand hardware have nice and small desktop cases, are usually quite silent and just works out of the box. For good software like FreeBSD, PIII/1000 is already lightning-fast. And from what i read on that list, 90% of your servers run quite simple task that even Pentium 100 will do. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 06:47:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C890F106564A for ; Tue, 9 Jun 2009 06:47:49 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 2E6D28FC13 for ; Tue, 9 Jun 2009 06:47:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n596lhps004621; Tue, 9 Jun 2009 08:47:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n596lgvR004618; Tue, 9 Jun 2009 08:47:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 08:47:42 +0200 (CEST) From: Wojciech Puchar To: Kelly Jones In-Reply-To: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> Message-ID: References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 06:47:50 -0000 > What UFS-like filesystem has unlimited inodes, but is a drop-in > replacement for ext3, and is fairly easy to configure? > > Is UFS2 no longer considered the "best" general-use filesystem? at least for be it's the best. High performance, minimal hardware resource usage, perfect recovery from failures. > using 862 cylinder groups of 118.88MB, 7608 blks, 60864 inodes. > > I realize I can use "f 512 -b 4096" to get 200M+ inodes, but I'm yes do newfs -i 512 -b 4096 -f 512 -U /dev/disk you may add -O1, for simple reason. It will create UFS1 filesystem, which won't be slower in case of small files (it will be with very large), but one inode takes 128, not 256 bytes, which will make huge difference !!! use -m 0 or -m as probably you control it yourself what's put here, and extra fragmentation or mostly-full FS won't exist with really small files. just fsck will take a lot of time, you may try gjournal or simply accept it, as FreeBSD don't crash often :) From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 06:48:48 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D90210656BB for ; Tue, 9 Jun 2009 06:48:48 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id C17D48FC15 for ; Tue, 9 Jun 2009 06:48:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n596mVSi004634; Tue, 9 Jun 2009 08:48:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n596mVpj004631; Tue, 9 Jun 2009 08:48:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 08:48:31 +0200 (CEST) From: Wojciech Puchar To: Dan Nelson In-Reply-To: <20090609040443.GA56070@dan.emsphone.com> Message-ID: References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <20090609040443.GA56070@dan.emsphone.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Kelly Jones , freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 06:48:49 -0000 > At this point you're sort of out of the general-use category :) You want > ZFS. Or rather, you don't want to try and fsck a UFS filesystem with 200M > inodes. The three drawbacks I can think of to ZFS are it's hard to boot ZFS is very trendy now, but isn't it allocating space in 4KB chunks? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 06:54:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63E911065675 for ; Tue, 9 Jun 2009 06:54:13 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from smtp6.ki.se (smtp6.ki.se [130.237.98.104]) by mx1.freebsd.org (Postfix) with ESMTP id 234088FC19 for ; Tue, 9 Jun 2009 06:54:12 +0000 (UTC) (envelope-from christopher.illies@ki.se) Received: from muck.ks.se (unknown [136.155.136.217]) by smtp6.ki.se (Postfix) with ESMTP id 2CBB4D4B38; Tue, 9 Jun 2009 08:33:23 +0200 (CEST) Received: from muck.ks.se (localhost [127.0.0.1]) by muck.ks.se (8.14.3/8.14.3) with ESMTP id n596Xj5M052811; Tue, 9 Jun 2009 08:33:45 +0200 (CEST) (envelope-from chris@muck.ks.se) Received: (from chris@localhost) by muck.ks.se (8.14.3/8.14.3/Submit) id n596Xj9p052810; Tue, 9 Jun 2009 08:33:45 +0200 (CEST) (envelope-from chris) Date: Tue, 9 Jun 2009 08:33:45 +0200 From: Christopher Illies To: freebsd-questions@freebsd.org Message-ID: <20090609063345.GA1340@muck.ks.se> Mail-Followup-To: freebsd-questions@freebsd.org, Daniel Underwood References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: Daniel Underwood Subject: Re: PDF inventory 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, 09 Jun 2009 06:54:13 -0000 On Mon, Jun 08, 2009 at 05:17:29PM -0400, Daniel Underwood wrote: > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? If you want something with a GUI, you could have a look at JabRef (needs Java): http://jabref.sourceforge.net/index.php It keeps a BibTeX database, lets you do searches on it and links to the downloaded pdf files. Christopher From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 07:05:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EBAA106566C for ; Tue, 9 Jun 2009 07:05:00 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) Received: from b.mail.ru.ac.za (b.mail.ru.ac.za [IPv6:2001:4200:1010::25:2]) by mx1.freebsd.org (Postfix) with ESMTP id 94ACD8FC17 for ; Tue, 9 Jun 2009 07:04:59 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ru-msa; d=ru.ac.za; h=Received:From:Organization:To:Subject:Date:User-Agent:References:In-Reply-To:X-Face:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id:X-Virus-Scanned:X-Authenticated-User; b=Pa/9IVM7BGUBF4Sxsqruj8HIB9l4uKxsm+P4miVZFqTNc8EC6ESoyNNgt83Gtk2r0bn8APyzCTzg6Kt34wQ9508kl/W0MmebFAMm8z5tCqtw+noHx8fHuiWXRWYTIEWU; Received: from vorkosigan.ru.ac.za ([2001:4200:1010:1058:219:d1ff:fe9f:a932]:61492) by b.mail.ru.ac.za with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDvOE-000Hq5-12 for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 09:04:58 +0200 From: Jonathan McKeown Organization: Rhodes University To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 09:04:57 +0200 User-Agent: KMail/1.9.10 References: <4A2D0A5C.8010809@webrz.net> <20090608153714.GA59348@gizmo.acns.msu.edu> In-Reply-To: <20090608153714.GA59348@gizmo.acns.msu.edu> X-Face: $@VrUx^RHy/}yu]jKf/<4T%/d|F+$j-Ol2"2J$q+%OK1]&/G_S9(=?utf-8?q?HkaQ*=60!=3FYOK=3FY!=27M=60C=0A=09aP=5C9nVPF8Q=7DCilHH8l=3B=7E!4?= =?utf-8?q?2HK6=273lg4J=7Daz?=@1Dqqh:J]M^"YPn*2IWrZON$1+G?oX3@ =?utf-8?q?k=230=0A=0954XDRg=3DYn=5FF-etwot4U=24b?=dTS{i X-Virus-Scanned: b.mail.ru.ac.za (2001:4200:1010::25:2) X-Authenticated-User: s0900137 from vorkosigan.ru.ac.za (2001:4200:1010:1058:219:d1ff:fe9f:a932) using auth_plaintext Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 07:05:00 -0000 On Monday 08 June 2009 17:37:14 Jerry McAllister wrote: > On Mon, Jun 08, 2009 at 06:31:57PM +0400, Peter Andreev wrote: > > may be this solution will help you: [snip] > > > > * * 31 1/2 * > > * * 30 4/2 * > > * * 28 2 * This isn't right, surely? It goes wrong in August and stays wrong for the rest of the year. The 31-day months are 1,3,5,7,8,10,12. > Don't forget leapyear. Jonathan From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 07:14:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D39F1106564A for ; Tue, 9 Jun 2009 07:14:45 +0000 (UTC) (envelope-from andreev.peter@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 621E58FC1A for ; Tue, 9 Jun 2009 07:14:45 +0000 (UTC) (envelope-from andreev.peter@gmail.com) Received: by ewy8 with SMTP id 8so4736323ewy.43 for ; Tue, 09 Jun 2009 00:14:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=wpS4EyzN0zUG5KwtsVe9Ilp6/LI+8aO6cWVCzlMZCbE=; b=OZ6ki98PEMcTtE4YERYAFqodz1B4qVzt9izUuL3AhEQdcZTwi6ikb9M8vmugmnydIe A6FpWay8jVkbt0hz5QswmTGGtmmv4PVz76DYsDxctQ8ko7tAnlGR21Nbz7H+xzOz98oQ AXwpBByg4SeJLs38hhDD/uRNXEJf1TSuwRgYE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=PWxL58PZa6oxlsgQKBj1ye3FZCDIsngP8BVwQsb0tgc/5eXa4DSYaGKe39ImtWlaru p63PIk4rGpKCi1fm8IUMjzxt9N3OIlYXUppyyRfPTeyXAv8/lFK1tlKJYzKvyvSotxEO S1UjxlRSLK6R0NXeZ2TrHDu2oLlXO7yy9qgZY= MIME-Version: 1.0 Received: by 10.216.20.74 with SMTP id o52mr2627983weo.147.1244531684247; Tue, 09 Jun 2009 00:14:44 -0700 (PDT) In-Reply-To: <200906090904.57752.j.mckeown@ru.ac.za> References: <4A2D0A5C.8010809@webrz.net> <20090608153714.GA59348@gizmo.acns.msu.edu> <200906090904.57752.j.mckeown@ru.ac.za> Date: Tue, 9 Jun 2009 11:14:44 +0400 Message-ID: From: Peter Andreev To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 07:14:46 -0000 yes, you're right, thank you/ the right version will be: * * 31 1,3,5,7,8,10,12 * * * 30 4,6,9,11 * * * 28,29 2 * 2009/6/9 Jonathan McKeown > On Monday 08 June 2009 17:37:14 Jerry McAllister wrote: > > On Mon, Jun 08, 2009 at 06:31:57PM +0400, Peter Andreev wrote: > > > may be this solution will help you: > [snip] > > > > > > * * 31 1/2 * > > > * * 30 4/2 * > > > * * 28 2 * > > This isn't right, surely? It goes wrong in August and stays wrong for the > rest > of the year. The 31-day months are 1,3,5,7,8,10,12. > > > Don't forget leapyear. > > Jonathan > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 07:48:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C8F21065672 for ; Tue, 9 Jun 2009 07:48:31 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8DF838FC23 for ; Tue, 9 Jun 2009 07:48:30 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n597mPhm070996; Tue, 9 Jun 2009 09:48:25 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n597mOiL070994; Tue, 9 Jun 2009 09:48:24 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Tue, 9 Jun 2009 09:48:23 +0200 From: Ruben de Groot To: Wojciech Puchar Message-ID: <20090609074823.GA70621@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Wojciech Puchar , Karl Vogel , freebsd-questions@freebsd.org References: <20090609024340.5F7AABED8@kev.msw.wpafb.af.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Tue, 09 Jun 2009 09:48:28 +0200 (CEST) Cc: Karl Vogel , freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 07:48:31 -0000 On Tue, Jun 09, 2009 at 08:43:08AM +0200, Wojciech Puchar typed: > > Buy second hand branded hardware from ebay (allegro in poland). It's > usually hardware that was used in offices and replaced by more "modern" > ones. It's already tested!!! > > You could get high-end PIII with 512MB RAM for $30 at most, the only thing > you may need to add is larger drives, but 20GB isn't uncommon. P4 with 1GB > RAM and 40GB drive is for 60-70$ here. > > All this branded second-hand hardware have nice and small desktop cases, > are usually quite silent and just works out of the box. > > For good software like FreeBSD, PIII/1000 is already lightning-fast. > > And from what i read on that list, 90% of your servers run quite simple > task that even Pentium 100 will do. I'm hosting websites on 5-10 years old SUN hardware. V100/120 with ultrasparc II 400-650 Mhz. Just put in some new disks and memory, no sweat. They allmost never break down. And I like the openboot and LOM facilities. A simple serial connection is all you need. What do you use for remote management of those desktop cases? Ruben From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 08:12:20 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 12EBB106566B for ; Tue, 9 Jun 2009 08:12:20 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 6A6868FC19 for ; Tue, 9 Jun 2009 08:12:19 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from significant-gravitas-shortfall.thebunker.net (gateway.ash.thebunker.net [213.129.64.4]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id n598Alqx041588 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 9 Jun 2009 09:10:53 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.2 smtp.infracaninophile.co.uk n598Alqx041588 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1244535054; bh=0KRCR4RBb3rqeihqkozCuydg5A+wG6NSgDcj+EkC3gc=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4A2E1906.5090708@infracaninophile.co.uk>|Date:=20T ue,=2009=20Jun=202009=2009:10:46=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Thunderbird=202.0.0.21=20(X11/20090515)|MIME-Vers ion:=201.0|To:=20Dan=20Nelson=20|CC:=20Ke lly=20Jones=20,=20=0D=0A=20freebsd-qu estions@freebsd.org|Subject:=20Re:=20Need=20a=20filesystem=20with= 20"unlimited"=20inodes|References:=20<26face530906081813x5abd6d28i 27137b76b0be41c@mail.gmail.com>=20<20090609040443.GA56070@dan.emsp hone.com>|In-Reply-To:=20<20090609040443.GA56070@dan.emsphone.com> |X-Enigmail-Version:=200.95.7|OpenPGP:=20id=3D60AE908C|Content-Typ e:=20multipart/signed=3B=20micalg=3Dpgp-sha1=3B=0D=0A=20protocol=3 D"application/pgp-signature"=3B=0D=0A=20boundary=3D"------------en igE87A671E9C455174250389DD"; b=ranZybySVgSsCB4BEHJWXRA1uRbkaAGieIjf8OILvOeB5HejsTCZcwqA6aO5zCiAj lwF2wEf5D28kxrv/N0q2iYJb6xXlA5hIdCBgEVkr74C1d/RB5cMwBUQTZjX6FAy70n iqhdscYpspCfPVntUzac1HM0At1EADyiiIVcsr7M= X-Authentication-Warning: happy-idiot-talk.infracaninophile.co.uk: Host gateway.ash.thebunker.net [213.129.64.4] claimed to be significant-gravitas-shortfall.thebunker.net Message-ID: <4A2E1906.5090708@infracaninophile.co.uk> Date: Tue, 09 Jun 2009 09:10:46 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.21 (X11/20090515) MIME-Version: 1.0 To: Dan Nelson References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <20090609040443.GA56070@dan.emsphone.com> In-Reply-To: <20090609040443.GA56070@dan.emsphone.com> X-Enigmail-Version: 0.95.7 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigE87A671E9C455174250389DD" X-Virus-Scanned: clamav-milter 0.95.1 at happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,SPF_FAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: Kelly Jones , freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 08:12:20 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE87A671E9C455174250389DD Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dan Nelson wrote: > In the last episode (Jun 08), Kelly Jones said: >> What UFS-like filesystem has unlimited inodes, but is a drop-in >> replacement for ext3, and is fairly easy to configure? >> >> Is UFS2 no longer considered the "best" general-use filesystem? >> >> Reason I ask: I'm going to create many small (~1K) files on a 100G >> disk and thus need at least 100M inodes. >> >> "newfs -i" maxes out at ~52M inodes (862 groups * 60864 inodes =3D~ 52= M >> inodes): >> >> # newfs -N -i 1 /dev/da1;: same results as -i 2048 >> >> /dev/da1: 102400.0MB (209715200 sectors) block size 16384, fragment si= ze >> 2048 using 862 cylinder groups of 118.88MB, 7608 blks, 60864 >> inodes. >> >> I realize I can use "f 512 -b 4096" to get 200M+ inodes, but I'm willi= ng >> to experiment w/ a new filesystem, provided it behaves mostly like UFS= =2E=20 >> Thoughts? >=20 > At this point you're sort of out of the general-use category :) You wa= nt > ZFS. Or rather, you don't want to try and fsck a UFS filesystem with 2= 00M > inodes. The three drawbacks I can think of to ZFS are it's hard to boo= t > from (although you probably aren't booting from da1), it requires more > memory than UFS, and there is no ACL support at the moment (not that ma= ny > people used the ACL support for UFS). If you're already on an amd64 sy= stem > with 4GB or more RAM you'll be fine. >=20 Or store your data in a RDBMS rather than in the filesystem. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. Flat 3 7 Priory Courtyard PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW, UK --------------enigE87A671E9C455174250389DD Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkouGQYACgkQ3jDkPpsZ+VZYvQCeNkiUUQ2XsFzpmNG+k0iJNqwT xJYAn32c26mD4MLHsUFUIlsx42a5k7bp =bynH -----END PGP SIGNATURE----- --------------enigE87A671E9C455174250389DD-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 08:27:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B2811065675 for ; Tue, 9 Jun 2009 08:27:57 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from b.mail.ru.ac.za (b.mail.ru.ac.za [IPv6:2001:4200:1010::25:2]) by mx1.freebsd.org (Postfix) with ESMTP id BBDD28FC15 for ; Tue, 9 Jun 2009 08:27:56 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:64649) by b.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDwgV-000Kpm-18 for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 10:27:55 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MDwgU-000Lmt-VZ for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 10:27:54 +0200 From: "DA Forsyth" Organization: IWR To: freebsd-questions@freebsd.org Date: Tue, 09 Jun 2009 10:27:54 +0200 MIME-Version: 1.0 Message-ID: <4A2E392A.11175.1330F112@d.forsyth.ru.ac.za> Priority: normal X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: b.mail.ru.ac.za (146.231.129.34) Subject: compile error, 7.2R X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 08:27:57 -0000 Hiya all I am trying to compile 7.2 on a box currently running 7.1 which was compiled from 7.0 (in fact way back to 5.2.1) make buildworld and make kernel-toolchain both produce this error mkdep -f .depend -a -I/usr/obj/usr/src/tmp/legacy/usr/include config.c /usr/src/usr.sbin/config/main.c lang.c /usr/src/usr.sbin/config/mkmakefile.c /usr/src/usr.sbin/config/mkheaders.c /usr/src/usr.sbin/config/mkoptions.c kernconf.c /usr/src/usr.sbin/config/config.y:81:20: error: config.h: No such file or directory /usr/src/usr.sbin/config/main.c:59:19: error: y.tab.h: No such file or directory /usr/src/usr.sbin/config/lang.l:38:20: error: config.h: No such file or directory /usr/src/usr.sbin/config/mkmakefile.c:49:19: error: y.tab.h: No such file or directory /usr/src/usr.sbin/config/mkheaders.c:48:19: error: y.tab.h: No such file or directory /usr/src/usr.sbin/config/mkoptions.c:49:19: error: y.tab.h: No such file or directory mkdep: compile failed *** Error code 1 Stop in /usr/src/usr.sbin/config. *** Error code 1 I did do a cvsup this morning which did not update anything. I have configured a new kernel, but not built it yet as I always build world first according to the instructions in /usr/src/UPDATING. That folder contains lergy-/usr/src/usr.sbin/config > ls -l total 102 -rw-r--r-- 1 root wheel 516 Apr 15 05:14 Makefile drwxr-xr-x 2 root wheel 512 Jul 21 2005 SMM.doc/ -rw-r--r-- 1 root wheel 10871 Apr 15 05:14 config.5 -rw-r--r-- 1 root wheel 7454 Apr 15 05:14 config.8 -rw-r--r-- 1 root wheel 5629 Apr 15 05:14 config.h -rw-r--r-- 1 root wheel 8936 Apr 15 05:14 config.y -rw-r--r-- 1 root wheel 2413 Apr 15 05:14 configvers.h -rw-r--r-- 1 root wheel 542 Apr 15 05:14 kernconf.tmpl -rw-r--r-- 1 root wheel 6918 Apr 15 05:14 lang.l -rw-r--r-- 1 root wheel 16212 Apr 15 05:14 main.c -rw-r--r-- 1 root wheel 2305 Apr 15 05:14 mkheaders.c -rw-r--r-- 1 root wheel 17706 Apr 15 05:14 mkmakefile.c -rw-r--r-- 1 root wheel 8472 Apr 15 05:14 mkoptions.c and config.h does exist, so the error message makes no sense at all. Any solutions? -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 08:34:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B165D1065676 for ; Tue, 9 Jun 2009 08:34:16 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from n9.bullet.mail.mud.yahoo.com (n9.bullet.mail.mud.yahoo.com [209.191.86.157]) by mx1.freebsd.org (Postfix) with SMTP id 6B4008FC0A for ; Tue, 9 Jun 2009 08:34:16 +0000 (UTC) (envelope-from martinbadie@yahoo.com) Received: from [68.142.200.226] by n9.bullet.mail.mud.yahoo.com with NNFMP; 09 Jun 2009 08:20:00 -0000 Received: from [76.13.13.26] by t7.bullet.mud.yahoo.com with NNFMP; 09 Jun 2009 08:20:00 -0000 Received: from [76.13.10.174] by t3.bullet.mail.ac4.yahoo.com with NNFMP; 09 Jun 2009 08:20:00 -0000 Received: from [127.0.0.1] by omp115.mail.ac4.yahoo.com with NNFMP; 09 Jun 2009 08:20:00 -0000 X-Yahoo-Newman-Property: ymail-3 X-Yahoo-Newman-Id: 259859.33927.bm@omp115.mail.ac4.yahoo.com Received: (qmail 94973 invoked by uid 60001); 9 Jun 2009 08:19:59 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244535599; bh=zCSlqSZFUoTiabz9w3ui0vKXwvrMWx+H2f/ztWNlnxg=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=ef1E0gyoRgacdOYeH3KlEBG05050b2ksotXeTS6LJgG02XCQDfTdxRCuEa7ZMznZse5weEjEgma56SI5II9OjbrkPR6vKKGldpfW3VNGk8ASgZpwyIB+iNJEs/CZVkAxh+5SxJulzX7c1qvrvqxZtDPuEbv3cPFCOzvyKaj+BRk= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=ixMy5isn14zxuIFzkTIpJGlT1bOaQg+79no2l1wNeVabAKFI8egO5dhLLqHxSbEm92GvspnHftm9i5XqpS0zPqBcRhx897bvb83BcrrMqj2nBjWfcm+ZBEGGw+BpYWt0dskxPapqA7OFyyEzTw76Y3S8BHT0DXrBs9mOKGCawx4=; Message-ID: <112251.94335.qm@web59904.mail.ac4.yahoo.com> X-YMail-OSG: y4UC5ogVM1nTIkjJ6dAihe9O1luI28npyBZIMwdgckD.My1aIPCAGcjOiAaDKp_ATMgIhbObSFeM24.CmF1HfVpPPFAfKwBeU7il.Meh.Wk9wOsTLxWErNrCUEvd5.9A2ttnkxYkxJ_08jfm321eggrRJnWDe8aun8149ejDxIbUYWsuzpwuQpH8lumW.4D8Q92saZfhpgl380c_C2P8wHItuCTUAS_UEF2TZR1EVeU9YzHMYZCtTQoXVGHJ9YTerCl4uBnIsP8LSATIoQ-- Received: from [212.156.51.22] by web59904.mail.ac4.yahoo.com via HTTP; Tue, 09 Jun 2009 01:19:59 PDT X-Mailer: YahooMailRC/1277.43 YahooMailWebService/0.7.289.15 Date: Tue, 9 Jun 2009 01:19:59 -0700 (PDT) From: Martin Badie To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: emX (intel) interface ring parameters X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 08:34:16 -0000 Hi, On linux I can change ring parameters like: /sbin/ethtool -G eth1 rx 4096 -G --set-ring change the rx/tx ring parameters of the specified ethernet device. how can I do that in FreeBSD so I can get a better performance from my interface Regards. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 08:59:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DFF921065672 for ; Tue, 9 Jun 2009 08:59:12 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 34FDA8FC0C for ; Tue, 9 Jun 2009 08:59:12 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n598x7vx075529; Tue, 9 Jun 2009 10:59:08 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n598x765075528; Tue, 9 Jun 2009 10:59:07 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Tue, 9 Jun 2009 10:59:07 +0200 From: Ruben de Groot To: Chuck Robey Message-ID: <20090609085907.GB70621@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Chuck Robey , Lars Eighner , freebsd-questions@freebsd.org References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <4A2D5161.7050406@telenix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A2D5161.7050406@telenix.org> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Tue, 09 Jun 2009 10:59:10 +0200 (CEST) Cc: Lars Eighner , freebsd-questions@freebsd.org Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 08:59:13 -0000 On Mon, Jun 08, 2009 at 01:58:57PM -0400, Chuck Robey typed: > Lars Eighner wrote: > > > > I have some sources which may or may not exist. My target should be > > rebuilt > > if a source exists that is younger than the target. But sources that do > > not exist should be ignored and make should not be perplexed over how to > > create them. How do I express that kind of relationship? Have a look at /etc/mail/Makefile. I think that does what you want, e.g. it will rebuild the genericstable.db, but only if the genericstable file exists and is newer. Ruben From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 09:12:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB2DF1065670 for ; Tue, 9 Jun 2009 09:12:50 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 8BD228FC1A for ; Tue, 9 Jun 2009 09:12:50 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 51EBD3C8FE; Tue, 9 Jun 2009 11:12:48 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n599CgRs001470; Tue, 9 Jun 2009 11:12:43 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 9 Jun 2009 11:12:42 +0200 From: Polytropon To: vogelke+unix@pobox.com Message-Id: <20090609111242.52f45201.freebsd@edvax.de> In-Reply-To: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 09:12:51 -0000 On Mon, 8 Jun 2009 22:37:01 -0400 (EDT), vogelke+unix@pobox.com (Karl Vogel) wrote: > Are these PDF files generated by scanning journal pages, or do they > contain text? If the latter, you could use something like xapian or > hyperestraier to make a full-text index of your files. On a much lower level, PDF files that contain text could be decomposited into ASCII using pdftotext, making it easy for further indexing. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 09:19:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CD241065673 for ; Tue, 9 Jun 2009 09:19:01 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 0B0D58FC13 for ; Tue, 9 Jun 2009 09:18:55 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 00D793CC74; Tue, 9 Jun 2009 11:18:53 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n599Inwo001478; Tue, 9 Jun 2009 11:18:49 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 9 Jun 2009 11:18:49 +0200 From: Polytropon To: Daniel Underwood Message-Id: <20090609111849.f0d38651.freebsd@edvax.de> In-Reply-To: References: <20090609023702.EF4D2BED8@kev.msw.wpafb.af.mil> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 09:19:01 -0000 On Mon, 8 Jun 2009 23:11:50 -0400, Daniel Underwood wrote: > Since all the PDFs contain text (none are scanned "images"), can I > simply use some command like grep to search for text within the > collection? If so, how would I do this? Can grep read text from > within PDFs? I don't think so, because PDF files seem to be binary format. There are two ways. The first is using the "strings" program that can isolate printable strings from binary files. The second - the much better way - is to use "pdftotext" to turn the PDF files into regular ASCII text which is greppable then. You could write a kind of "pdfgrep" tool that acts as a wrapper around pdftotext, grep, and your PDF file collection. In any case, it would surely help if your files have meaningful filenames, so they can easily be identified. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 09:46:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 064FD106564A for ; Tue, 9 Jun 2009 09:46:40 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id EE5478FC0C for ; Tue, 9 Jun 2009 09:46:38 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n599kWn0005551; Tue, 9 Jun 2009 11:46:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n599kV6M005548; Tue, 9 Jun 2009 11:46:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 11:46:31 +0200 (CEST) From: Wojciech Puchar To: Martin Badie In-Reply-To: <112251.94335.qm@web59904.mail.ac4.yahoo.com> Message-ID: References: <112251.94335.qm@web59904.mail.ac4.yahoo.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: emX (intel) interface ring parameters X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 09:46:40 -0000 man em hw.em.rxd Number of receive descriptors allocated by the driver. The default value is 256. The 82542 and 82543-based adapters can handle up to 256 descriptors, while others can have up to 4096. hw.em.txd Number of transmit descriptors allocated by the driver. The default value is 256. The 82542 and 82543-based adapters can handle up to 256 descriptors, while others can have up to 4096. and other things. BTW i'm getting excellent performance from such card (PCIe, 1000Mbps/s) with minimal CPU load On Tue, 9 Jun 2009, Martin Badie wrote: > Hi, > > On linux I can change ring parameters like: > > /sbin/ethtool -G eth1 rx 4096 > > -G --set-ring > change the rx/tx ring parameters of the specified ethernet device. > > how can I do that in FreeBSD so I can get a better performance from my interface > > Regards. > > > > > _______________________________________________ > 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 9 09:47:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D05D2106566C for ; Tue, 9 Jun 2009 09:47:14 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0DA1F8FC23 for ; Tue, 9 Jun 2009 09:47:13 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n599l3al005558; Tue, 9 Jun 2009 11:47:03 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n599kxLH005555; Tue, 9 Jun 2009 11:47:01 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 11:46:59 +0200 (CEST) From: Wojciech Puchar To: Matthew Seaman In-Reply-To: <4A2E1906.5090708@infracaninophile.co.uk> Message-ID: References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <20090609040443.GA56070@dan.emsphone.com> <4A2E1906.5090708@infracaninophile.co.uk> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Kelly Jones , Dan Nelson , freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 09:47:15 -0000 >> > > Or store your data in a RDBMS rather than in the filesystem. > sounds like the best solution. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 10:14:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C286A1065679 for ; Tue, 9 Jun 2009 10:14:25 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0A0D78FC15 for ; Tue, 9 Jun 2009 10:14:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59AEFWt005712; Tue, 9 Jun 2009 12:14:15 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59AEEGw005709; Tue, 9 Jun 2009 12:14:14 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 12:14:14 +0200 (CEST) From: Wojciech Puchar To: Ruben de Groot In-Reply-To: <20090609074823.GA70621@ei.bzerk.org> Message-ID: References: <20090609024340.5F7AABED8@kev.msw.wpafb.af.mil> <20090609074823.GA70621@ei.bzerk.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Karl Vogel , freebsd-questions@freebsd.org Subject: Re: What server hardware are you buying from the big companies these days? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 10:14:26 -0000 >> task that even Pentium 100 will do. > > I'm hosting websites on 5-10 years old SUN hardware. V100/120 with ultrasparc II > 400-650 Mhz. Just put in some new disks and memory, no sweat. They allmost normal. 400MHz SUNs are available here for 100$ or less. they usually have quite a lot of RAM even 512MB, but in case i need more - can it be added with standard SDRAM DIMMs, or superexpensive SUN memory only? how about disks? usually one don't need terabyte disk, and 18-36GB SCSI drives are really cheap used. But do SUNs accept normal SCSI drives or SUN-only? ;) What you say about reliability of SUN hardware - fully agree. > never break down. And I like the openboot and LOM facilities. A simple serial > connection is all you need. which is really important, and all super-excellent-modern PCs don't have. I have to put some display card just to be able to configure things. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 10:22:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94A081065677 for ; Tue, 9 Jun 2009 10:22:59 +0000 (UTC) (envelope-from madunix@gmail.com) Received: from mail-bw0-f208.google.com (mail-bw0-f208.google.com [209.85.218.208]) by mx1.freebsd.org (Postfix) with ESMTP id 108AB8FC0C for ; Tue, 9 Jun 2009 10:22:58 +0000 (UTC) (envelope-from madunix@gmail.com) Received: by bwz4 with SMTP id 4so182755bwz.43 for ; Tue, 09 Jun 2009 03:22:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=56JJZjXxlY8JPlf7TLv4t34XskoCrzJtbYKKEE17H4I=; b=W6//KWhIR6Z5QUWWJ5cl626Xybd5/8Z8/1AlnWNkD0kUb41KEJYBR2l1NrFN4+kngX lMEK2s3Zz0mM3ItCfUOLstAHmJLOD8PU1o6MC2PeDMmBiLNY2/8/Zsdjbk17p7GMCZeS WwHp01jBocxL2iPGdEgdOA55vOqksKBtoeT98= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=die8EB17G5r7OLTOwjMChwYKBrBo1Pk0YfUwd9YCeIRSDEzsyQeylleZHn62hdOx1n hIc4SROjJCBtPYWhmaf4Qgd+EzsDSUKbxG5QLKEyN1u8GDY62fGBQmMq0qPXQKuYSx4k hFakaB7SAs1tZRF63AJ20WMdJAZ1Ulzqmk3iE= MIME-Version: 1.0 Received: by 10.103.182.1 with SMTP id j1mr2856454mup.119.1244542975956; Tue, 09 Jun 2009 03:22:55 -0700 (PDT) In-Reply-To: References: <20090603133343.GB1988@phenom.cordula.ws> <20090603185039.54cdd820.freebsd@edvax.de> <70C0964126D66F458E688618E1CD008A0793EE90@WADPEXV0.waddell.com> <20090603213531.c56f385b.freebsd@edvax.de> <20090603201342.GA8685@slackbox.xs4all.nl> <20090605181142.GG87456@kokopelli.hydra> Date: Tue, 9 Jun 2009 12:22:55 +0200 Message-ID: <4d3f56c90906090322s45863c98n3a5dfbcc04560a2f@mail.gmail.com> From: madunix To: utisoft@gmail.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: Open_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: Tue, 09 Jun 2009 10:23:00 -0000 so people do not be afraid to think outside the the box.... Finally, out of my experience with Linux and FreeBSD is that once a setup is working, it stays working, sometimes the initial setup takes longer , I ll be honest, there have been times when I spent days trying to get something working on Linux and FreeBSD, but once everything is configured right, it just works and works well. Thanks madunix On Fri, Jun 5, 2009 at 10:17 PM, Chris Rees wrote: > 2009/6/5 Chad Perrin : >> On Wed, Jun 03, 2009 at 09:50:24PM +0100, Chris Rees wrote: >>> 2009/6/3 Roland Smith : >>> > On Wed, Jun 03, 2009 at 09:35:31PM +0200, Polytropon wrote: >>> >> On Wed, 3 Jun 2009 13:46:15 -0500, "Gary Gatten" wrote: >>> >> > Isn't there an "OpenVMS" somewhere? >>> > >>> > There is an open source clone in the works: http://www.freevms.net/ >>> > No idea of the state it is in. >>> > >>> > The OZONE OS [http://www.o3one.org/] uses a lot of VMS concepts. >>> >>> I just LOVE the webpage. The kind of one I'd make in my spare time... >> >> That's horrifying. =C2=A0Remind me to never visit one of your Webpages. >> >> Luckily, I can touch-type, because the temporary blindness induced by >> that site when the bright yellow irradiated my retinas still hasn't >> entirely faded. >> > > Hehe, mine is the opposite if you're interested; > > http://www.bayofrum.net > > Chris > > -- > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > A: Top-posting. > Q: What is the most annoying thing in a mailing list? > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 10:36:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2E85106566B for ; Tue, 9 Jun 2009 10:36:57 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from dirg.bris.ac.uk (dirg.bris.ac.uk [137.222.10.102]) by mx1.freebsd.org (Postfix) with ESMTP id 842818FC16 for ; Tue, 9 Jun 2009 10:36:57 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from isis.bris.ac.uk ([137.222.10.63]) by dirg.bris.ac.uk with esmtp (Exim 4.69) (envelope-from ) id 1MDyga-0006wQ-72; Tue, 09 Jun 2009 11:36:56 +0100 Received: from mech-cluster238.men.bris.ac.uk ([137.222.187.238]) by isis.bris.ac.uk with esmtp (Exim 4.67) (envelope-from ) id 1MDygZ-0006HN-Nt; Tue, 09 Jun 2009 11:36:08 +0100 Received: from mech-cluster238.men.bris.ac.uk (localhost.men.bris.ac.uk [127.0.0.1]) by mech-cluster238.men.bris.ac.uk (8.14.3/8.14.3) with ESMTP id n59AGgDV039159; Tue, 9 Jun 2009 11:16:42 +0100 (BST) (envelope-from mexas@bristol.ac.uk) Received: (from mexas@localhost) by mech-cluster238.men.bris.ac.uk (8.14.3/8.14.3/Submit) id n59AGgtF039158; Tue, 9 Jun 2009 11:16:42 +0100 (BST) (envelope-from mexas@bristol.ac.uk) X-Authentication-Warning: mech-cluster238.men.bris.ac.uk: mexas set sender to mexas@bristol.ac.uk using -f Date: Tue, 9 Jun 2009 11:16:42 +0100 From: Anton Shterenlikht To: python@freebsd.org, freebsd-questions@freebsd.org Message-ID: <20090609101642.GA38980@mech-cluster238.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) Cc: Subject: python upgrade 2.5 to 2.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: Tue, 09 Jun 2009 10:36:58 -0000 I use portmaster. What shall I use instead of pkg_which? PORTUPGRADE_CMD?= ${LOCALBASE}/sbin/portmaster ^^^^^^^^^ changed to portmaster PKG_WHICH_CMD?= ${LOCALBASE}/sbin/pkg_which ^^^^^^^^^ this I haven't got many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 10:40:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 750FF1065679 for ; Tue, 9 Jun 2009 10:40:27 +0000 (UTC) (envelope-from alydiomc@yahoo.com) Received: from web52203.mail.re2.yahoo.com (web52203.mail.re2.yahoo.com [206.190.48.126]) by mx1.freebsd.org (Postfix) with SMTP id 1CC2F8FC12 for ; Tue, 9 Jun 2009 10:40:26 +0000 (UTC) (envelope-from alydiomc@yahoo.com) Received: (qmail 5916 invoked by uid 60001); 9 Jun 2009 10:13:46 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244542426; bh=YdjKJ4iTVpUbP5z6Cz6/Z5WUwyy5gM57Z6O8bhFmJVU=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=i+oP7T5GvJR6ixAz14m/jsrJ5msatTV2qtAKodu6DUbc7qj1Xn1AmXGZ0wgJ5ynPkRBR5HXepCqurrBjmnQuCHg19Z76zEgOmf/e9Pvg6tRKowsyFpMoLgDqVm/Vb5MCBySrVU8DeJd3BoS7ySrQWySesph4rQqF9yrEmquvSQU= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=Et/n7dhqlY15bxSFRcBnGqbXgCGaYMNaLqa9y01bxQL3wYrDlwRc2B5Sjad8YYbk6rk+U54BhNaVKy7z2a9wJDojc3vi2FwGcZtrAtDmrNU7+YQDh+4znIBLJcHBKBxd/O7ACQf2xWSyHZTsUQuSpOe67i4XJkmQr35zeFNXX3g=; Message-ID: <189185.5732.qm@web52203.mail.re2.yahoo.com> X-YMail-OSG: 1Kck_lAVM1kmO8IWoY6kWtWVrUb_DKU.Ss_5fZqARC9wF9tkAG1lWiVS5pNHSPAonQApCLnyAKkghCkFhanzn71uhMH3tHmC0M1ssvHo6lzVGV_L0lOX4mhwET9pxwZ9_XXV3GIeOFNqxfHsPFcOXyNm63oWrG9aT6HtFRWrTebWncideiY89uvbpBN5JITce2na547B2OrloGtdjC4YiL2RDmm5z6VceZn8kaSiw4wUQ7BOZ7poe0GTU0C5aV93T70WbYUCke1BxErhMODD5TBC7f8K68fLCD5fprpQbIGGIsnvpH.pTsoe5EhGT31gS1k1IwJPM8qZRp_jVlY3yvO3R7qyLxb5gLeUJGuCBDTUJe0- Received: from [202.175.250.14] by web52203.mail.re2.yahoo.com via HTTP; Tue, 09 Jun 2009 03:13:45 PDT X-Mailer: YahooMailClassic/5.3.9 YahooMailWebService/0.7.289.15 Date: Tue, 9 Jun 2009 03:13:45 -0700 (PDT) From: lyd mc To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Spamassasin no DCC header X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 10:40:28 -0000 Hi guys, I just installed spamassassin and dcc form ports. It seems to be working, no errors from spamassassin --lint. Later I found out there are no any DCC header in a mail. local.cf bayes_file_mode 0770 dns_available yes razor_config /var/spool/spamd/.razor/razor-agent.conf add_header all DCC _DCCB_ _DCCR_ add_header ham SCL 1 add_header spam SCL 9 v310.pre loadplugin Mail:SpamAssassin:Plugin::DCC I am using FBSD7.2, postfix with spam-milter (latest from ports). I notice this from maillog: spamass-milter: Could not retrive sendmail macro "i"!. Please add it to conFMilter_MACROS_ENVFROM for better spamassassin results But I am using postfix... Any ideas? Regards, alydiomc From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 11:17:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2159D10656F7 for ; Tue, 9 Jun 2009 11:17:06 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by mx1.freebsd.org (Postfix) with ESMTP id CF01F8FC0A for ; Tue, 9 Jun 2009 11:17:05 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so1386633wfg.7 for ; Tue, 09 Jun 2009 04:17:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:date:from:to :cc:subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:x-face:x-attribution:x-os-kernel :x-os-version:x-os-architecture:x-uptime:x-url:x-mail-morse :x-openpgp-fingerprint:x-openpgp-id:organization:user-agent; bh=KX0smey3Ts2pHt9xc7+KFeAPzbjiI6npSf5k4M7CQAM=; b=h5humurA7gO3DJpetj/wmvWWg/1LofPHcdYu126v9QIsCuXJF7aT2cliSfmyzxpdUM qW7/Kx1ZC9UlbT8C6z4KfreZ/BWtzp+Einj1bxlBDo8Ca+CSvCkF8mK9Z1FTkNaod8Eq vr1Af6FfZDOy6OVtnu+jVEoYe10UcGcXO2EAc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-face:x-attribution :x-os-kernel:x-os-version:x-os-architecture:x-uptime:x-url :x-mail-morse:x-openpgp-fingerprint:x-openpgp-id:organization :user-agent; b=hwbaW7voLV/W869cgNHZ2327ybXHOHerIJB+B2ld426W+r+CA6uKlbw9HhxL/6mLda MEL/yH/Q0d3q6xP2Ahb+i2TrpFZgGZJBjHWlzVWL67CrdtlWjqKKlXPuI+Fawwf5xf0y GZWCZDUoz7ILM76DXZpCjxDVdIrbjECoSOY7g= Received: by 10.142.218.4 with SMTP id q4mr2648809wfg.225.1244546225342; Tue, 09 Jun 2009 04:17:05 -0700 (PDT) Received: from chateau.d.lf ([122.161.79.240]) by mx.google.com with ESMTPS id 32sm308101wfa.13.2009.06.09.04.17.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 04:17:04 -0700 (PDT) Sender: Ashish SHUKLA Received: by chateau.d.lf (Postfix, from userid 1001) id 0ED6614B; Tue, 9 Jun 2009 16:47:04 +0530 (IST) Date: Tue, 9 Jun 2009 16:47:03 +0530 From: Ashish SHUKLA To: Mel Flynn Message-ID: <20090609111703.GA98742@chateau.d.lf> References: <86skifqn2x.fsf@chateau.d.lf> <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline In-Reply-To: <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net> X-Face: )vGQ9yK7Y$Flebu1C>(B\gYBm)[$zfKM+p&TT[[JWl6:]S>cc$%-z7-`46Zf0B*syL.C ]oCq[upTG~zuS0.$"_%)|Q@$hA=9{3l{%u^h3jJ^Zl;t7 X-Attribution: =?utf-8?B?4KSG4KS24KWA4KS3?= X-OS-Kernel: FreeBSD X-OS-Version: 7.2-RELEASE X-OS-Architecture: amd64 X-Uptime: 4:30PM up 2:02, 3 users, load averages: 1.29, 1.36, 1.25 X-URL: http://wahjava.wordpress.com/ X-Mail-Morse: .-- .- .... .--- .- ...- .- .--.-. --. -- .- .. .-.. .-.-.- -.-. --- -- X-OpenPGP-Fingerprint: 1E00 4679 77E4 F8EE 2E4B 56F2 1F2F 8410 762E 5E74 X-OpenPGP-ID: 762E5E74 Organization: /\/0/\/3 User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-questions@freebsd.org Subject: Re: 7.2-RELEASE panics with snd_ds1 loaded. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 11:17:06 -0000 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=utf-8; format=flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Mel, Thanks for responding. In <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net>, Mel = Flynn wrote: [...] >Nothing points to the sound module specifically. The first trace is unusab= le=20 >(frames missing) and the second trace panics in sleep, which maybe points = to=20 >the sound module and interrupts. Are you not able to panic the system with= out=20 >that sound module loaded? It looks too random to blame one module, more=20 >hardware, but it's possible the module exposes a bug elsewhere. From this= =20 >though, it is hard to tell. Yes, I noticed myself, that there is no reason why to blame 'sound' module = for=20 it. But I noticed my box only panics when there is some activity going on w= ith=20 sound device, like at one time, it paniced when I was trying to record audi= o=20 using gnome-sound-recorder, and another it paniced when I was playing audio= =20 using ogg123. And that it too, it didn't panic immediately after start of= =20 operation (playing/recording), but only after some time has elapsed. And th= e=20 system doesn't panic without snd_ds1 loaded even after building ports (like= =20 openjdk6 and libxul) and using GNOME for 4 hours. BtW, I forgot to mention = in=20 last post, but I'm running the GENERIC kernel bundled with 7.2-RELEASE DVD. I don't know how to resolve and whether this is some kind of memory issue o= r=20 something else. I also experienced something similar panic situation[1] wit= h=20 8.0-CURRENT which no one else is able to reproduce except me, after which I= =20 installed 7.2-RELEASE. Any ideas how to trace this problem, it is discourag= ing=20 me to continue using FreeBSD for my regular desktop use ? References: [1] - http://lists.freebsd.org/pipermail/freebsd-gnome/2009-April/022048.ht= ml Thanks in advance --=20 Ashish SHUKLA --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkouRK4ACgkQHy+EEHYuXnQtIgCfWfM5PYtCPwrAtHxj/yx/6WU5 GXEAniCCVnZufHqLnCuNFCFgy7tgX+S6 =JSDa -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 12:13:33 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C8091065670 for ; Tue, 9 Jun 2009 12:13:33 +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 570708FC18 for ; Tue, 9 Jun 2009 12:13:33 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from [172.17.2.19] (jn@stealth.jnielsen.net [74.218.226.254]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id n59CDWAv041866; Tue, 9 Jun 2009 08:13:32 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 08:13:31 -0400 User-Agent: KMail/1.9.10 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: <200906090813.32018.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: Stefan Miklosovic Subject: Re: port for separation audio from video in mp4 file X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 12:13:33 -0000 On Monday 08 June 2009 03:05:20 pm Stefan Miklosovic wrote: > title says it, i downloaded mp4 file by youtube-dl, > but it downloaded video and audio as well. I would > like to separate audio from that file. > > i try to find some port in /usr/ports/audio but nothing > reasonable occudred. For things that understand mp4 you should also look under ports/multimedia. The transcode program includes "tcextract" which is one way to do what you're asking. JN From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 12:19:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A888106567E for ; Tue, 9 Jun 2009 12:19:01 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from amazone2.ujf-grenoble.fr (amazone2.ujf-grenoble.fr [152.77.2.202]) by mx1.freebsd.org (Postfix) with ESMTP id E1F2E8FC2E for ; Tue, 9 Jun 2009 12:19:00 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from tana1.ujf-grenoble.fr (tana1.ujf-grenoble.fr [152.77.18.74]) by amazone2.ujf-grenoble.fr (8.13.7/8.13.7/Configured by JE 21 07 2006) with ESMTP id n59CIqAa050356; Tue, 9 Jun 2009 14:18:58 +0200 (CEST) Received: from localhost (unknown [127.0.0.1]) by tana1.ujf-grenoble.fr (Postfix) with ESMTP id 8636856428; Tue, 9 Jun 2009 14:18:52 +0200 (CEST) X-UJF-AV: Scanned on tana1.ujf-grenoble.fr Received: from tibre1.ujf-grenoble.fr (tibre1.ujf-grenoble.fr [152.77.18.86]) by tana1.ujf-grenoble.fr (Postfix) with ESMTP id 47DE756420; Tue, 9 Jun 2009 14:18:52 +0200 (CEST) Received: from fourier.ujf-grenoble.fr (fourier.ujf-grenoble.fr [152.77.212.18]) by tibre1.ujf-grenoble.fr (8.14.2/8.14.2/SyS-1.10) with ESMTP id n59CInC9019843; Tue, 9 Jun 2009 14:18:52 +0200 (CEST) (envelope-from michaelgrunewald@yahoo.fr) Received: from localhost (localhost [127.0.0.1]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id 0FCFED01A0; Tue, 9 Jun 2009 14:18:54 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at fourier.ujf-grenoble.fr Received: from fourier.ujf-grenoble.fr ([127.0.0.1]) by localhost (fourier.ujf-grenoble.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uGVh58WjyrJW; Tue, 9 Jun 2009 14:18:53 +0200 (CEST) Received: from ifpoolext5.ujf-grenoble.fr (ifpoolext5.ujf-grenoble.fr [193.48.255.248]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id DDDD5D0147; Tue, 9 Jun 2009 14:18:53 +0200 (CEST) Message-Id: <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> From: =?ISO-8859-1?Q?Gr=FCnewald_Micha=EBl?= To: Polytropon In-Reply-To: <20090608232056.317b509d.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 9 Jun 2009 14:18:10 +0200 References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <20090608201217.GD34213@slackbox.xs4all.nl> <20090608232056.317b509d.freebsd@edvax.de> X-Mailer: Apple Mail (2.935.3) Cc: Roland Smith , freebsd-questions@freebsd.org, Lars Eighner Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 12:19:01 -0000 Le 8 juin 09 =E0 23:20, Polytropon a =E9crit : > On Mon, 8 Jun 2009 22:12:17 +0200, Roland Smith =20 > wrote: >> On Sun, Jun 07, 2009 at 11:52:17PM -0500, Lars Eighner wrote: >>> >>> What I need most is to find (a) make tutorial(s) that do not =20 >>> suppose make is >>> being used for compling c/c++ programs. Yes, I know, that is =20 >>> mostly why >>> make exists, but many tutorials plunge right into C examples with =20= >>> implicit C >>> rules, while -- it seems to me -- make could be much more useful =20 >>> for a >>> variety of things, and I could sure use more of the general and =20 >>> arbitrary >>> examples. >> >> I use make to e.g. build complex LaTeX documents with included =20 >> gnuplot >> graphs. Works like a charm. But that it is not conceptually different >> from compiling a C program. > > Correct. I do the same here. I also do use make to produce LaTeX documents. I even `published' my =20 collection of makefiles at https://gna.org/projects/bsdmakepscripts/ There is some terse indications for using these makefiles in a TeX =20 document: http://home.gna.org/bsdmakepscripts/tex.html (much more need to be written as usual). An interesting feature of =20 these scripts is the good integration of METAPOST and BIBTEX (this is =20= not yet exemplified). As you have guessed, make can be used for much more than C files =20 compilation, but as it has been pointed out, these other uses are not =20= conceptually different from the `C-case'. In fact in the typical way =20 of using a UNIX-like workstation, data is processed through a stack of =20= elementary treatments in order to obtain a final object (whether it is =20= a program, a PostScript file or a full web site). This is why make can =20= be viewed as the central part of the work with a UNIX-like workstation =20= (sharing its place with an editor of your choice). --=20 All the best, Micha=EBl From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 12:42:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8D3F106566C for ; Tue, 9 Jun 2009 12:42:02 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from amazone2.ujf-grenoble.fr (amazone2.ujf-grenoble.fr [152.77.2.202]) by mx1.freebsd.org (Postfix) with ESMTP id 749CE8FC0C for ; Tue, 9 Jun 2009 12:42:02 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from tana1.ujf-grenoble.fr (tana1.ujf-grenoble.fr [152.77.18.74]) by amazone2.ujf-grenoble.fr (8.13.7/8.13.7/Configured by JE 21 07 2006) with ESMTP id n59C5Poa049320; Tue, 9 Jun 2009 14:05:25 +0200 (CEST) Received: from localhost (unknown [127.0.0.1]) by tana1.ujf-grenoble.fr (Postfix) with ESMTP id 9CC7F5646B; Tue, 9 Jun 2009 14:05:25 +0200 (CEST) X-UJF-AV: Scanned on tana1.ujf-grenoble.fr Received: from tibre2.ujf-grenoble.fr (tibre2.ujf-grenoble.fr [152.77.24.10]) by tana1.ujf-grenoble.fr (Postfix) with ESMTP id 60B1E56469; Tue, 9 Jun 2009 14:05:25 +0200 (CEST) Received: from fourier.ujf-grenoble.fr (fourier.ujf-grenoble.fr [152.77.212.18]) by tibre2.ujf-grenoble.fr (8.14.2/8.14.2/SyS-1.10) with ESMTP id n59C5NwH049421; Tue, 9 Jun 2009 14:05:25 +0200 (CEST) (envelope-from michaelgrunewald@yahoo.fr) Received: from localhost (localhost [127.0.0.1]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id 22DF7D0147; Tue, 9 Jun 2009 14:05:28 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at fourier.ujf-grenoble.fr Received: from fourier.ujf-grenoble.fr ([127.0.0.1]) by localhost (fourier.ujf-grenoble.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VDTU8ckmkCG4; Tue, 9 Jun 2009 14:05:28 +0200 (CEST) Received: from ifpoolext5.ujf-grenoble.fr (ifpoolext5.ujf-grenoble.fr [193.48.255.248]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id EFF2ED00FC; Tue, 9 Jun 2009 14:05:27 +0200 (CEST) Message-Id: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> From: =?ISO-8859-1?Q?Gr=FCnewald_Micha=EBl?= To: Daniel Underwood In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 9 Jun 2009 14:04:45 +0200 References: X-Mailer: Apple Mail (2.935.3) Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 12:42:03 -0000 Le 8 juin 09 =E0 23:17, Daniel Underwood a =E9crit : > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. Hi Daniel, I am also a researcher, and although I did not find any tool suited to =20= the management of my article's collection, I elaborated a methodology =20= I am rather happy with. Let me detail this methodology: The atom in the organization of my collection of articles is the =20 directory, this is handy because in a directory you can store many =20 additional information along with the main file (the file containing =20 the article). Each of these folders is stored in a vault. I choose the name vault =20 because, IIRC, the place a dragon uses to store its treasures is =20 called the =ABdragon vault=BB in the relevant literature. We, gathering =20= all these articles we do not have time to read, are pretty much like =20 these dragons sleeping on their pile. Here is the procedure to add an article to the collection: 1. I cd to the `vault' 2. I create a new folder to hold the article, usually with a rather =20 cryptic name (without accents nor spaces) obtained 3. I cd to this new folder 4. I copy the article under the name `paper.pdf' or `paper.djvu' 5. I create a text file called INDEX, looking much like an email =20 envelope, detailing the name of the authors and the article's title During the life of the article in my collection, I will usually add a =20= `mathscinet.bib' for the bibliography entry (when it is taken from =20 mathscinet), I may add reviews of the article and text dumps (all of =20 this with standardized names). With this organization, it is pretty easy to dig the collection with =20 combinations of `find', `awk', and `grep'. Moreover, putting a =20 document in its folder makes the collection very flexible. I have even =20= written a program producing a big `index.html' file from all of this, =20= but of course it is currently broken and I have no time to fix it (I =20 shall soon defend by phD!). There is much more to do, to have the good =20= tools managing this collection! BTW, `djvu' is an alternative format to store articles digitally, it =20 has many qualities, among them djvu files are usually much smaller =20 than the corresponding PDF files (for retrodigitized papers). See =20 djvu.org! --=20 All the best, Micha=EBl From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 12:42:36 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39F7E106567A for ; Tue, 9 Jun 2009 12:42:36 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from amazone1.ujf-grenoble.fr (amazone1.ujf-grenoble.fr [193.54.238.254]) by mx1.freebsd.org (Postfix) with ESMTP id AC24C8FC13 for ; Tue, 9 Jun 2009 12:42:35 +0000 (UTC) (envelope-from michaelgrunewald@yahoo.fr) Received: from tana2.ujf-grenoble.fr (tana2.ujf-grenoble.fr [152.77.24.22]) by amazone1.ujf-grenoble.fr (8.13.7/8.13.7/Configured by JE 21 07 2006) with ESMTP id n59CgWqt061968; Tue, 9 Jun 2009 14:42:32 +0200 (CEST) Received: from localhost (unknown [127.0.0.1]) by tana2.ujf-grenoble.fr (Postfix) with ESMTP id 354D556454; Tue, 9 Jun 2009 14:42:32 +0200 (CEST) X-UJF-AV: Scanned on tana2.ujf-grenoble.fr Received: from tibre1.ujf-grenoble.fr (tibre1.ujf-grenoble.fr [152.77.18.86]) by tana2.ujf-grenoble.fr (Postfix) with ESMTP id 106395644A; Tue, 9 Jun 2009 14:42:32 +0200 (CEST) Received: from fourier.ujf-grenoble.fr (fourier.ujf-grenoble.fr [152.77.212.18]) by tibre1.ujf-grenoble.fr (8.14.2/8.14.2/SyS-1.10) with ESMTP id n59CgTnq020977; Tue, 9 Jun 2009 14:42:31 +0200 (CEST) (envelope-from michaelgrunewald@yahoo.fr) Received: from localhost (localhost [127.0.0.1]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id 15E58D01D6; Tue, 9 Jun 2009 14:42:34 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at fourier.ujf-grenoble.fr Received: from fourier.ujf-grenoble.fr ([127.0.0.1]) by localhost (fourier.ujf-grenoble.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CuP1tyXPAEOf; Tue, 9 Jun 2009 14:42:34 +0200 (CEST) Received: from ifpoolext5.ujf-grenoble.fr (ifpoolext5.ujf-grenoble.fr [193.48.255.248]) by fourier.ujf-grenoble.fr (Postfix) with ESMTP id DA2EDD01A6; Tue, 9 Jun 2009 14:42:33 +0200 (CEST) Message-Id: From: =?ISO-8859-1?Q?Gr=FCnewald_Micha=EBl?= To: Daniel Underwood In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 9 Jun 2009 14:41:50 +0200 References: <900923.129.qm@web39101.mail.mud.yahoo.com> <86prdhuazk.fsf@nowhere.org> <20090606180108.GA20291@slackbox.xs4all.nl> <4A2AAFA3.7080502@boosten.org> <20090606191241.GB21767@slackbox.xs4all.nl> <4a2aec44.Ns0KUKDux1uwGV04%perryh@pluto.rain.com> X-Mailer: Apple Mail (2.935.3) Cc: rsmith@xs4all.nl, perryh@pluto.rain.com, freebsd-questions@freebsd.org, peter@boosten.org Subject: Re: Installing latest version of LaTeX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 12:42:36 -0000 Le 7 juin 09 =E0 06:48, Daniel Underwood a =E9crit : > Installed texlive from ISO, and it all works perfectly now. Thanks =20 > folks! However, you may realize that ports installing LaTeX style files (or =20 other things) usually do it in a directory that TeXlive is not aware =20 of. You have to play a bit with `texmf.cnf' to fix this. If you do not need the most fancy things in the TeX world (like =20 LuaTeX), you can go with teTeX and add TeXlive's texmf tree in /usr/=20 local/share/texmf/texmf-local, and replace teTeX updmap.conf files =20 with TeXlive's. This works well and plays nicely with ports depending =20= of LaTeX. --=20 Cheers, Micha=EBl From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:05:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 72CBF10656C7 for ; Tue, 9 Jun 2009 13:05:10 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 805258FC19 for ; Tue, 9 Jun 2009 13:05:09 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id BBEC87E837; Tue, 9 Jun 2009 05:05:08 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 05:05:07 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <20090608043555.70d09b27@gumby.homeunix.com> <4A2C964C.807@gmail.com> In-Reply-To: <4A2C964C.807@gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090505.07567.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: RW , "David M. Patronis" Subject: Re: burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 13:05:12 -0000 On Sunday 07 June 2009 20:40:44 David M. Patronis wrote: > I suspect, unlike cdrecord and > growisofs, that burncd is no longer a modern utility, and is in serious > need of an overhaul. And sos@ retired :/ -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:12:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B67891065670 for ; Tue, 9 Jun 2009 13:12:21 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8065F8FC19 for ; Tue, 9 Jun 2009 13:12:21 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id A618A7E837; Tue, 9 Jun 2009 05:12:20 -0800 (AKDT) From: Mel Flynn To: dave.mehler@gmail.com Date: Tue, 9 Jun 2009 05:12:19 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <9AE9476A24004CDC9715B8E27E401AFD@hades> In-Reply-To: <9AE9476A24004CDC9715B8E27E401AFD@hades> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090512.19762.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: freebsd-questions@freebsd.org Subject: Re: issue with dhcp and dns X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 13:12:21 -0000 On Sunday 07 June 2009 13:42:36 Dave wrote: > I'm trying to get dhcp and dns going ddns on FreeBSD 7.2. In my > dhcpd.leases file i see the forward and reverse information given on the > lease. A host fqdn and a host IP address both return correct dns > information on this host. My issue is if i check the forward and reverse > zone files i do not see records for the new host. I do see two .jnl files. You forgot to read the basics of Dynamic DNS: https://www.isc.org/software/bind/documentation/arm95#journal > In > /var/log/messages i do see the error about the working directory not being > writable The warning can be ignored and it doesn't make sense to warn about it in the first place. -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:35:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD6891065673 for ; Tue, 9 Jun 2009 13:35:04 +0000 (UTC) (envelope-from onemda@gmail.com) Received: from mail-fx0-f207.google.com (mail-fx0-f207.google.com [209.85.220.207]) by mx1.freebsd.org (Postfix) with ESMTP id 46CE98FC25 for ; Tue, 9 Jun 2009 13:34:58 +0000 (UTC) (envelope-from onemda@gmail.com) Received: by fxm3 with SMTP id 3so253366fxm.43 for ; Tue, 09 Jun 2009 06:34:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=/55NoES/ZhkkYotuDBAX8k49cfsPCy/ZJpBrjE1huog=; b=DkmmMJWDl0pUQHVz60+eF8XXT4nyrHG73heFbFmIo33TxaBlfH71OMI0KX4aDudAQJ EtEorcz1j/PNtkf1lAGhTztIN5Xd7m5jXIGENjRAIfusrBOoUUAiorWsnuvMajTX6sDV Rr68IJeuKxrdNIPnYHv7GrbM+Ba1OHLtJIlRc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=uP+4Ifw7Sn81LuQnTZz78XgXFMNRpvJDVtszPGv861014StH14ueS4t7Yrfus/r4Bx s4bGgFT7FwLuI8tqVQeMifCBNhIwF4jAJb6tPcJiCAZtc/kZYMALHHk70S0OO0kJo6WE coK2zU0UKha+K3oj7ZHBVPY6aTCa5K4/FA8i4= MIME-Version: 1.0 Received: by 10.204.54.4 with SMTP id o4mr137012bkg.10.1244554497199; Tue, 09 Jun 2009 06:34:57 -0700 (PDT) In-Reply-To: <20090609111703.GA98742@chateau.d.lf> References: <86skifqn2x.fsf@chateau.d.lf> <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net> <20090609111703.GA98742@chateau.d.lf> Date: Tue, 9 Jun 2009 13:34:56 +0000 Message-ID: <3a142e750906090634w10e275d3wcaf76f5f117c8f9f@mail.gmail.com> From: "Paul B. Mahol" To: Ashish SHUKLA Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 7.2-RELEASE panics with snd_ds1 loaded. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 13:35:05 -0000 On 6/9/09, Ashish SHUKLA wrote: > Hi Mel, > > Thanks for responding. > > In <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net>, Mel > Flynn wrote: > > [...] > >>Nothing points to the sound module specifically. The first trace is >> unusable >>(frames missing) and the second trace panics in sleep, which maybe points >> to >>the sound module and interrupts. Are you not able to panic the system >> without >>that sound module loaded? It looks too random to blame one module, more >>hardware, but it's possible the module exposes a bug elsewhere. From this >>though, it is hard to tell. > > Yes, I noticed myself, that there is no reason why to blame 'sound' module > for > it. But I noticed my box only panics when there is some activity going on > with > sound device, like at one time, it paniced when I was trying to record audio > using gnome-sound-recorder, and another it paniced when I was playing audio > using ogg123. And that it too, it didn't panic immediately after start of > operation (playing/recording), but only after some time has elapsed. And the > system doesn't panic without snd_ds1 loaded even after building ports (like > openjdk6 and libxul) and using GNOME for 4 hours. BtW, I forgot to mention > in > last post, but I'm running the GENERIC kernel bundled with 7.2-RELEASE DVD. > > I don't know how to resolve and whether this is some kind of memory issue or > something else. I also experienced something similar panic situation[1] with > 8.0-CURRENT which no one else is able to reproduce except me, after which I > installed 7.2-RELEASE. Any ideas how to trace this problem, it is > discouraging > me to continue using FreeBSD for my regular desktop use ? > > References: > [1] - > http://lists.freebsd.org/pipermail/freebsd-gnome/2009-April/022048.html Does same problem happens on i386? -- Paul From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:40:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 742BD1065670 for ; Tue, 9 Jun 2009 13:40:51 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 3D8FC8FC1A for ; Tue, 9 Jun 2009 13:40:50 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 166C37E837; Tue, 9 Jun 2009 05:40:50 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 05:40:48 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <20090608232056.317b509d.freebsd@edvax.de> <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> In-Reply-To: <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200906090540.49149.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Roland Smith , Polytropon , =?iso-8859-1?q?Gr=FCnewald_Micha=EBl?= , Lars Eighner Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 13:40:51 -0000 On Tuesday 09 June 2009 04:18:10 Gr=FCnewald Micha=EBl wrote: > Le 8 juin 09 =E0 23:20, Polytropon a =E9crit : > > On Mon, 8 Jun 2009 22:12:17 +0200, Roland Smith > > > > wrote: > >> On Sun, Jun 07, 2009 at 11:52:17PM -0500, Lars Eighner wrote: > >>> What I need most is to find (a) make tutorial(s) that do not > >>> suppose make is > >>> being used for compling c/c++ programs. Yes, I know, that is > >>> mostly why > >>> make exists, but many tutorials plunge right into C examples with > >>> implicit C > >>> rules, while -- it seems to me -- make could be much more useful > >>> for a > >>> variety of things, and I could sure use more of the general and > >>> arbitrary > >>> examples. > >> > >> I use make to e.g. build complex LaTeX documents with included > >> gnuplot > >> graphs. Works like a charm. But that it is not conceptually different > >> from compiling a C program. > > > > Correct. I do the same here. > > I also do use make to produce LaTeX documents. I even `published' my > collection of makefiles at https://gna.org/projects/bsdmakepscripts/ And I'm using a heavily customized version of this CA setup: http://sial.org/howto/openssl/ca/ =2D-=20 Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:54:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AADF21065687 for ; Tue, 9 Jun 2009 13:54:14 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 71BE18FC0C for ; Tue, 9 Jun 2009 13:54:14 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id A51A57E83F; Tue, 9 Jun 2009 05:54:13 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 05:54:12 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <20090608124323.1e422575@scorpio> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090554.12673.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Tim Judd Subject: Re: NO_PROFILE option in FBSD-7.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: Tue, 09 Jun 2009 13:54:15 -0000 On Monday 08 June 2009 08:59:30 Tim Judd wrote: > What make.conf was to world+ports, is now > src.conf = world, make.conf = ports Nope. src.conf = world, make.conf = world+ports. Important distinction, which you'll notice when putting shared variables in make.conf (WITH_DEBUG, WITH_OPENLDAP f.e.). -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 13:56:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AAA3A1065687 for ; Tue, 9 Jun 2009 13:56:09 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 6F5188FC16 for ; Tue, 9 Jun 2009 13:56:09 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id D2F5C7E837; Tue, 9 Jun 2009 05:56:08 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 05:56:07 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <20090608124323.1e422575@scorpio> <517F6C75-BB73-4565-B6D5-B4BFC99B7D91@goldmark.org> In-Reply-To: <517F6C75-BB73-4565-B6D5-B4BFC99B7D91@goldmark.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090556.08149.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Jeffrey Goldberg Subject: Re: NO_PROFILE option in FBSD-7.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: Tue, 09 Jun 2009 13:56:10 -0000 On Monday 08 June 2009 18:36:39 Jeffrey Goldberg wrote: > On Jun 8, 2009, at 11:59 AM, Tim Judd wrote: > > If that's related to 'world', all world-related build options should > > be placed in src.conf now. What make.conf was to world+ports, is now > > src.conf = world, make.conf = ports > > What is the appropriate location for KERNCONF, which I still have in / > etc/make.conf ? src.conf. Ports should never need it. -- Mel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 14:14:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0C6E106566B for ; Tue, 9 Jun 2009 14:14:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 8CF668FC12 for ; Tue, 9 Jun 2009 14:14:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost1.zedat.fu-berlin.de (Exim 4.69) for freebsd-questions@freebsd.org with esmtp (envelope-from ) id <1ME25u-0007mo-H5>; Tue, 09 Jun 2009 16:14:30 +0200 Received: from telesto.geoinf.fu-berlin.de ([130.133.86.198]) by inpost2.zedat.fu-berlin.de (Exim 4.69) for freebsd-questions@freebsd.org with esmtpsa (envelope-from ) id <1ME25u-0000JI-Fn>; Tue, 09 Jun 2009 16:14:30 +0200 Message-ID: <4A2E6E46.2050505@zedat.fu-berlin.de> Date: Tue, 09 Jun 2009 14:14:30 +0000 From: "O. Hartmann" Organization: Freie =?ISO-8859-15?Q?Universit=E4t_Berlin?= User-Agent: Thunderbird 2.0.0.21 (X11/20090417) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 130.133.86.198 Subject: OT: XEON W3550? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 14:14:32 -0000 Maybe some of you have already heard about Intels product change and early EOL of various newly introduced Core-i7 CPUs like i7-940 and i7-965. I was wondering if Intel isn't also changing XEON products to adjust clock speed and replace XEON W3540 with XEON W3550 and XEON W3570 with, say, XEON W3580. Some rumors have it that those XEON CPUs are underway. Well, I want to build a single-socket-server with this XEON CPU type, so due to Intels 'closed' politics maybe one of yours does wants to share some secrets. Thanks in advance. Please reply also to my eMail since I do not subscribe the list. Regards, Oliver From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 14:31:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7179E106564A for ; Tue, 9 Jun 2009 14:31:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 7C8478FC15 for ; Tue, 9 Jun 2009 14:31:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59EViNO006570; Tue, 9 Jun 2009 16:31:44 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59EVgQ6006567; Tue, 9 Jun 2009 16:31:42 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 16:31:42 +0200 (CEST) From: Wojciech Puchar To: =?ISO-8859-15?Q?Gr=FCnewald_Micha=EBl?= In-Reply-To: <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> Message-ID: References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <20090608201217.GD34213@slackbox.xs4all.nl> <20090608232056.317b509d.freebsd@edvax.de> <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Roland Smith , Polytropon , freebsd-questions@freebsd.org, Lars Eighner Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 14:31:54 -0000 >> Correct. I do the same here. > > I also do use make to produce LaTeX documents. I even `published' my > collection of makefiles at https://gna.org/projects/bsdmakepscripts/ make is universal too, as many other unix tools. for example i use make and cpp (C preprocessor) for making HTML pages :) From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 14:45:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B95D106566C for ; Tue, 9 Jun 2009 14:45:56 +0000 (UTC) (envelope-from kirk@strauser.com) Received: from kanga.honeypot.net (kanga.honeypot.net [IPv6:2001:470:a80a:1:21f:d0ff:fe22:b8a8]) by mx1.freebsd.org (Postfix) with ESMTP id 1B6918FC17 for ; Tue, 9 Jun 2009 14:45:56 +0000 (UTC) (envelope-from kirk@strauser.com) Received: from localhost (localhost [127.0.0.1]) by kanga.honeypot.net (Postfix) with ESMTP id 4866038AF2 for ; Tue, 9 Jun 2009 09:45:55 -0500 (CDT) X-Virus-Scanned: amavisd-new at honeypot.net Received: from kanga.honeypot.net ([127.0.0.1]) by localhost (kanga.honeypot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g94DnUp5l9V1 for ; Tue, 9 Jun 2009 09:45:52 -0500 (CDT) Received: from athena.localnet (athena.daycos.com [IPv6:2001:470:c054:1:221:9bff:fe00:de3f]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by kanga.honeypot.net (Postfix) with ESMTPSA id 798A538AE6 for ; Tue, 9 Jun 2009 09:45:52 -0500 (CDT) From: Kirk Strauser To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 09:45:48 -0500 User-Agent: KMail/1.11.4 (Linux/2.6.28-11-generic; KDE/4.2.4; x86_64; ; ) References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <20090609040443.GA56070@dan.emsphone.com> <4A2E1906.5090708@infracaninophile.co.uk> In-Reply-To: <4A2E1906.5090708@infracaninophile.co.uk> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090945.48548.kirk@strauser.com> Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 14:45:56 -0000 On Tuesday 09 June 2009 03:10:46 am Matthew Seaman wrote: > Or store your data in a RDBMS rather than in the filesystem. Hear, hear. I'm hard pressed to imagine why you'd need 100M 1KB files. -- Kirk Strauser From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 14:55:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BE191065704 for ; Tue, 9 Jun 2009 14:55:50 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 0188D8FC13 for ; Tue, 9 Jun 2009 14:55:49 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id AA9FA508A4; Tue, 9 Jun 2009 16:55:48 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 8B90A50878; Tue, 9 Jun 2009 16:55:47 +0200 (CEST) Message-ID: <4A2E77FE.5020504@webrz.net> Date: Tue, 09 Jun 2009 16:55:58 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Mike Jeays References: <20090608183045.F1B08BED8@kev.msw.wpafb.af.mil> <4A2D5EDF.2000508@webrz.net> <200906081832.31564.mike.jeays@rogers.com> In-Reply-To: <200906081832.31564.mike.jeays@rogers.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: freebsd-questions@freebsd.org Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 14:55:51 -0000 Mike Jeays wrote: Isn't that a linuxism? Looking at the man pages for the date command for FreeBSD, it looks as if 'date -v+1d' will return tomorrow's date (and it does, I checked). The -d option is to do with daylight saving time. - eot- I see; will have that incorporated in the script. Thanks for sharing, Jos From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 15:00:23 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FA8D10656C4 for ; Tue, 9 Jun 2009 15:00:23 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from a.mail.ru.ac.za (a.mail.ru.ac.za [IPv6:2001:4200:1010::25:1]) by mx1.freebsd.org (Postfix) with ESMTP id D68D38FC08 for ; Tue, 9 Jun 2009 15:00:22 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:53562) by a.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1ME2oH-0005J8-FQ for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 17:00:21 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1ME2oH-000A4o-CA for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 17:00:21 +0200 From: "DA Forsyth" Organization: IWR To: freebsd-questions@freebsd.org Date: Tue, 09 Jun 2009 17:00:20 +0200 MIME-Version: 1.0 Message-ID: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> Priority: normal X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: a.mail.ru.ac.za (146.231.129.33) Subject: another compile error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 15:00:25 -0000 Hiya trying to build kernel for 7.2 and get this (my earlier problem was my having CFLAGS=... in /etc/src.conf) MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc - I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - finline-limit=8000 --param inline-unit-growth=100 --param large- function-growth=1000 -mno-align-long-strings -mpreferred-stack- boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - ffreestanding -Werror vers.c linking kernel.debug udbp.o(.text+0x59): In function `ng_udbp_disconnect': /usr/src/sys/dev/usb/udbp.c:857: undefined reference to `ng_rmnode_self' udbp.o(.text+0xc9): In function `udbp_detach': /usr/src/sys/dev/usb/udbp.c:450: undefined reference to `ng_rmnode_self' udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined reference to `ng_unref_node' udbp.o(.text+0x79e): In function `udbp_attach': /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined reference to `ng_make_node_common' udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined reference to `ng_name_node' udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined reference to `ng_unref_node' udbp.o(.text+0x993): In function `ng_udbp_rcvmsg': /usr/src/sys/dev/usb/udbp.c:705: undefined reference to `M_NETGRAPH_MSG' udbp.o(.text+0xa55):/usr/src/sys/dev/usb/udbp.c:733: undefined reference to `ng_address_ID' udbp.o(.text+0xa6e):/usr/src/sys/dev/usb/udbp.c:733: undefined reference to `ng_snd_item' udbp.o(.text+0xa7d):/usr/src/sys/dev/usb/udbp.c:733: undefined reference to `ng_free_item' udbp.o(.text+0xa89):/usr/src/sys/dev/usb/udbp.c:734: undefined reference to `M_NETGRAPH_MSG' udbp.o(.text+0xb15): In function `udbp_in_transfer_cb': /usr/src/sys/dev/usb/udbp.c:531: undefined reference to `ng_package_data' udbp.o(.text+0xb3a):/usr/src/sys/dev/usb/udbp.c:531: undefined reference to `ng_address_hook' udbp.o(.text+0xb4e):/usr/src/sys/dev/usb/udbp.c:531: undefined reference to `ng_snd_item' udbp.o(.text+0xd33): In function `ng_udbp_rmnode': /usr/src/sys/dev/usb/udbp.c:815: undefined reference to `ng_unref_node' udbp.o(.text+0xd46):/usr/src/sys/dev/usb/udbp.c:817: undefined reference to `ng_make_node_common' udbp.o(.text+0xd7f):/usr/src/sys/dev/usb/udbp.c:820: undefined reference to `ng_name_node' udbp.o(.text+0xd90):/usr/src/sys/dev/usb/udbp.c:821: undefined reference to `ng_unref_node' udbp.o(.text+0xde3): In function `ng_udbp_rcvdata': /usr/src/sys/dev/usb/udbp.c:752: undefined reference to `ng_free_item' udbp.o(.rodata+0x20): In function `ng_udbp_connect': /usr/src/sys/dev/usb/udbp.c:842: undefined reference to `ng_parse_int32_type' udbp.o(.rodata+0x3c): In function `ng_udbp_disconnect': /usr/src/sys/dev/usb/udbp.c:853: undefined reference to `ng_parse_struct_type' udbp.o(.rodata+0x64):/usr/src/sys/dev/usb/udbp.c:859: undefined reference to `ng_parse_int32_type' udbp.o(.rodata+0x70): In function `udbp_detach': /usr/src/sys/dev/usb/udbp.c:433: undefined reference to `ng_parse_int32_type' *** Error code 1 Stop in /usr/obj/usr/src/sys/LERGY72. *** Error code 1 -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 15:38:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C4AE10656A4 for ; Tue, 9 Jun 2009 15:38:50 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id 4A1128FC25 for ; Tue, 9 Jun 2009 15:38:50 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (mailhost3.waddell.com [10.1.10.28]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n59Faoio023058 for ; Tue, 9 Jun 2009 10:38:34 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 9BFCA44BA8 for ; Tue, 9 Jun 2009 10:38:24 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost3.waddell.com (Postfix) with ESMTP id 8D48744B32 for ; Tue, 9 Jun 2009 10:38:24 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 10:38:24 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Tue, 9 Jun 2009 10:38:23 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: OT - help w configure, make, etc. thread-index: AcnpGFL7kSjTiZrFRvSNkKmwHSynVA== From: "Gary Gatten" To: X-OriginalArrivalTime: 09 Jun 2009 15:38:24.0055 (UTC) FILETIME=[532A7C70:01C9E918] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 15:38:50 -0000 Hello, =20 I'm basically a novice at the whole configure/make process. I've hacked my way through some errors in the past, but I can't get past this one. It used the GNU auto tools and the configure script has a bunch of shell, c, sed, awk, etc. stuff that's k1lling me! =20 Anyway, I can't get past this error and the app developers/users aren't offering "timely" help, so if anyone here is interested in debugging a configure script and helping me get this (nTop 3.3.10) compiled would be GREATLY appreciated! I'll contact you offlist off course! =20 TIA! =20 Gary =20
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:42:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4363D106566B for ; Tue, 9 Jun 2009 16:42:18 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from smtp.owt.com (smtp.owt.com [64.146.239.50]) by mx1.freebsd.org (Postfix) with ESMTP id 02AC88FC12 for ; Tue, 9 Jun 2009 16:42:17 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from kstewart2.owt.com (kstewart2.owt.com [64.146.237.228]) (authenticated bits=0) by smtp.owt.com (8.13.8/8.13.8) with ESMTP id n59GgEab002416; Tue, 9 Jun 2009 09:42:15 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=owt.com; s=default; t=1244565737; bh=h0/ewImv1remuZlIj7w7tdwOMZIb+1xajnC3+uGDhrA=; h=From:To:Subject:Date:References:In-Reply-To:MIME-Version: Content-Type:Content-Transfer-Encoding:Message-Id; b=kqlB5IP4Y4no6 NbSESudR9ViaXj/p+Fr8FCkMlbpGxgHTVC/c1wyW5mYQtIcntCUL3VxvBBnRk7VoAUx zmq7dHc6ZPU4hGoYVQ5ljtiXBfua+A5O4Vub/trrXLwUL4289b3TGDDOX5dPVWi1sxb rcY6zt1NGLk9H7mBoAIaq/OQ= From: Kent Stewart To: freebsd-questions@freebsd.org, d.forsyth@ru.ac.za Date: Tue, 9 Jun 2009 09:42:13 -0700 User-Agent: KMail/1.9.10 References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> In-Reply-To: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906090942.13729.kstewart@owt.com> Cc: Subject: Re: another compile 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: Tue, 09 Jun 2009 16:42:18 -0000 On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote: > Hiya > > trying to build kernel for 7.2 and get this > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - > Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc - > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - > finline-limit=8000 --param inline-unit-growth=100 --param large- > function-growth=1000 -mno-align-long-strings -mpreferred-stack- > boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - > ffreestanding -Werror vers.c > linking kernel.debug > udbp.o(.text+0x59): In function `ng_udbp_disconnect': > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to > `ng_rmnode_self' > udbp.o(.text+0xc9): In function `udbp_detach': > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to > `ng_rmnode_self' > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined > reference to `ng_unref_node' > udbp.o(.text+0x79e): In function `udbp_attach': > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined > reference to `ng_make_node_common' > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined > reference to `ng_name_node' > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined I just cvsuped and did a buildworld and a buildkernel. The kernel compiled without a problem. So, this means that you have probably modified your kernel config file until it doesn't work. Start over with GENERIC and leave the comment on udbp. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:42:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0C56106575F for ; Tue, 9 Jun 2009 16:42:43 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2AB8FC2E for ; Tue, 9 Jun 2009 16:42:43 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id 0A884EB528D; Tue, 9 Jun 2009 19:42:42 +0300 (EEST) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id EFDAC45088; Tue, 9 Jun 2009 19:42:41 +0300 (EEST) X-Virus-Scanned: amavisd-new at ceid.upatras.gr Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TNRI6OMStiC4; Tue, 9 Jun 2009 19:42:41 +0300 (EEST) Received: from kobe.laptop (adsl24-193.kln.forthnet.gr [77.49.151.193]) by mail.ceid.upatras.gr (Postfix) with ESMTP id BC4A74503F; Tue, 9 Jun 2009 19:42:41 +0300 (EEST) Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n59GgfJN085231; Tue, 9 Jun 2009 19:42:41 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n59GgdLq085230; Tue, 9 Jun 2009 19:42:40 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: "Gary Gatten" References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> Date: Tue, 09 Jun 2009 19:42:39 +0300 In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> (Gary Gatten's message of "Tue, 9 Jun 2009 10:38:23 -0500") Message-ID: <87k53lnytc.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 16:42:44 -0000 On Tue, 9 Jun 2009 10:38:23 -0500, "Gary Gatten" wrote: > Hello, > I'm basically a novice at the whole configure/make process. I've > hacked my way through some errors in the past, but I can't get past > this one. It used the GNU auto tools and the configure script has a > bunch of shell, c, sed, awk, etc. stuff that's k1lling me! > > Anyway, I can't get past this error and the app developers/users > aren't offering "timely" help, so if anyone here is interested in > debugging a configure script and helping me get this (nTop 3.3.10) > compiled would be GREATLY appreciated! I'll contact you offlist off > course! Why not `on list'? This way we won't have to duplicate the efforts of all the previous subscribers every time you describe what the problem is. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:50:39 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A951106566B for ; Tue, 9 Jun 2009 16:50:39 +0000 (UTC) (envelope-from toomas.aas@raad.tartu.ee) Received: from kuller.raad.tartu.ee (kuller.raad.tartu.ee [194.126.106.100]) by mx1.freebsd.org (Postfix) with ESMTP id 4F6B58FC16 for ; Tue, 9 Jun 2009 16:50:39 +0000 (UTC) (envelope-from toomas.aas@raad.tartu.ee) Received: from localhost (localhost [127.0.0.1]) by kuller.raad.tartu.ee (Postfix) with ESMTP id 43A1C39862 for ; Tue, 9 Jun 2009 19:50:38 +0300 (EEST) X-Virus-Scanned: amavisd-new at post.raad.tartu.ee Received: from kuller.raad.tartu.ee ([127.0.0.1]) by localhost (kuller.raad.tartu.ee [127.0.0.1]) (amavisd-new, port 10024) with LMTP id RvD4aQei-Q3Y for ; Tue, 9 Jun 2009 19:50:34 +0300 (EEST) Received: by kuller.raad.tartu.ee (Postfix, from userid 80) id 406553982E; Tue, 9 Jun 2009 19:50:34 +0300 (EEST) Received: from 217-159-182-47-dsl.trt.estpak.ee (217-159-182-47-dsl.trt.estpak.ee [217.159.182.47]) by webmail.raad.tartu.ee (Horde MIME library) with HTTP; Tue, 09 Jun 2009 19:50:34 +0300 Message-ID: <20090609195034.65d2vdntgcwk4s4w@webmail.raad.tartu.ee> Date: Tue, 09 Jun 2009 19:50:34 +0300 From: Toomas Aas To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.5-cvs) X-Originating-IP: 217.159.182.47 Cc: Subject: skype12 login problem and debug logging X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 16:50:39 -0000 Hello! I use skype on 3 computers. 1. FreeBSD 6.4-STABLE, port skype12-1.2.0.18 2. FreeBSD 7.2-STABLE, port skype 2.x 3. Windows XP, skype 3.8 Suddenly, starting a couple of weeks ago, I'm no longer able to log in to Skype on computer 1 (Skype just says "Invalid password"). I can still log in with same username and password on computers 2 and 3. I tried changing my skype password on the website, after that I could log in with new password on computers 2 and 3 but not on computer 1. I tried moving my ~/.Skype directory out of the way and reinstalling net/skype12, which didn't help. I'd like to turn to Skype support for help, so I tried to turn on logging as described here: http://lnk.nu/developer.skype.com/ww4 ... but the log file is not created, so it's hard to expect any help from the folks at Skype. Does anyone know how to turn on logging in this version of Skype on FreeBSD? -- Toomas Aas From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:55:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A8561065670 for ; Tue, 9 Jun 2009 16:55:08 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f208.google.com (mail-bw0-f208.google.com [209.85.218.208]) by mx1.freebsd.org (Postfix) with ESMTP id DAD4C8FC1C for ; Tue, 9 Jun 2009 16:55:01 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz4 with SMTP id 4so132160bwz.43 for ; Tue, 09 Jun 2009 09:55:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=fCnIIXsdU+C0zQiyrfBa42G57pDpfg4xoskvF9DJMgc=; b=jpq8UxwZVZANxOC7+h3fwhUGBZy1L4iZ6jtCGYS33Lt26rsDSBYbnok3z6neIYetGX sJycDCZInyw9wHXZ99l9SnHG8fLRefu7RjK6YwobYlC6LyhM68K8Ob8//kqW7SIAN1IT +EWkI1heKHxk3LTgqeJwMNOu3O0JkYS6RwbiU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=kMXj7Sd3/JLBP/QDTBDwffSTfB1+6xcvtg/wlYmsMX0tujVr5nZix4yd1URu0FIpHK +4i06og8A7CGSnvq4WWn48GmcqntnfwRNKQUGyJffnAiR7RQyJdHUmXVnU5buy/D3RRk 2ZbWrkfNwDHjgc350q+c/6bt2ZlnG/ZGbNiCs= MIME-Version: 1.0 Received: by 10.103.226.10 with SMTP id d10mr209030mur.105.1244566501092; Tue, 09 Jun 2009 09:55:01 -0700 (PDT) In-Reply-To: <200906090942.13729.kstewart@owt.com> References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> <200906090942.13729.kstewart@owt.com> From: Valentin Bud Date: Tue, 9 Jun 2009 19:54:41 +0300 Message-ID: <139b44430906090954g5914d81cvcaf2c80b16e727b9@mail.gmail.com> To: Kent Stewart Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: d.forsyth@ru.ac.za, freebsd-questions@freebsd.org Subject: Re: another compile 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: Tue, 09 Jun 2009 16:55:08 -0000 On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart wrote: > On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote: > > Hiya > > > > trying to build kernel for 7.2 and get this > > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - > > Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > > Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc - > > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - > > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - > > finline-limit=8000 --param inline-unit-growth=100 --param large- > > function-growth=1000 -mno-align-long-strings -mpreferred-stack- > > boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - > > ffreestanding -Werror vers.c > > linking kernel.debug > > udbp.o(.text+0x59): In function `ng_udbp_disconnect': > > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to > > `ng_rmnode_self' > > udbp.o(.text+0xc9): In function `udbp_detach': > > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to > > `ng_rmnode_self' > > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined > > reference to `ng_unref_node' > > udbp.o(.text+0x79e): In function `udbp_attach': > > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' > > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined > > reference to `ng_make_node_common' > > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined > > reference to `ng_name_node' > > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined > > I just cvsuped and did a buildworld and a buildkernel. The kernel compiled > without a problem. So, this means that you have probably modified your > kernel > config file until it doesn't work. Start over with GENERIC and leave the > comment on udbp. > > Kent > > -- > Kent Stewart > Richland, WA > > http://users.owt.com/kstewart/index.html > > _______________________________________________ > 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, If you want udbp(4) you have to know that it requires netgraph(4). They are both available as modules and/or kernel config options (actually udbp(4) is a device :) ). a great day, v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:58:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BCF01065670 for ; Tue, 9 Jun 2009 16:58:47 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr8.xs4all.nl (smtp-vbr8.xs4all.nl [194.109.24.28]) by mx1.freebsd.org (Postfix) with ESMTP id E45418FC08 for ; Tue, 9 Jun 2009 16:58:46 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr8.xs4all.nl (8.13.8/8.13.8) with ESMTP id n59GwiKL059561; Tue, 9 Jun 2009 18:58:44 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 54BC9BA8E; Tue, 9 Jun 2009 18:58:44 +0200 (CEST) Date: Tue, 9 Jun 2009 18:58:44 +0200 From: Roland Smith To: Gary Gatten Message-ID: <20090609165844.GA73344@slackbox.xs4all.nl> References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 16:58:47 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 09, 2009 at 10:38:23AM -0500, Gary Gatten wrote: >=20 >=20 > Anyway, I can't get past this error and the app developers/users aren't > offering "timely" help, so if anyone here is interested in debugging a > configure script and helping me get this (nTop 3.3.10) compiled would be > GREATLY appreciated! I'll contact you offlist off course! >=20 Do you know that ntop 3.3.8 is available in ports as /usr/ports/net/ntop? Maybe you can use that? If you really need 3.3.10, try making a copy of the net/ntop directory, change the Makefile and distfile to refer to 3.3.10 and see if it compiles. Note that the /usr/ports/net/ntop/files directory contains some patches that are applied to the extracted source code to make it work. Maybe you can borrow/adapt those if you really want to compile 3.3.10 yourself. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkoulMQACgkQEnfvsMMhpyXU4QCdG8K44rYeNkdu5/cyJ1xYyxho DpEAn0/MoxE2XqsYWaufz7igp58aAEPa =IIgv -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 16:58:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A50F81065675 for ; Tue, 9 Jun 2009 16:58:53 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f208.google.com (mail-bw0-f208.google.com [209.85.218.208]) by mx1.freebsd.org (Postfix) with ESMTP id 1BDC98FC17 for ; Tue, 9 Jun 2009 16:58:52 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz4 with SMTP id 4so134897bwz.43 for ; Tue, 09 Jun 2009 09:58:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=m9HeI/R0amfof9zVG902GGtZ8ZWtC6Gogz+5faCCODw=; b=A4028eW9SaXr4Z7UHJ6/bqDmdY1SkU4CKvssdb1sFeWCbStVYdiLT/KGO+Gu6MNs8J a7igFcdoQluKKuq9FhcYmt8XMrEN6tl9rWbMYPOS4l7q7D8O9ocjRA42wTZYlnGsiT5u lwsYxcW/ZGAajQJQSuFwNM1K4DOyi7N4PkQ9Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=jn7p+K4caLEwuPmx3deS9zHCCwIgin+owulDHAEP3lSZfwq5MW9EpawhYl8S8eCEI8 xrhUChBWoqTHEeCJGj/270daW6ptn3kxyeQzKy5IaJUGsY4bjmO4IzjxT1XLcK4llJ7W UovkdTgD14iduzLFFJ5Np+kJYn/isQI3S+1UQ= MIME-Version: 1.0 Received: by 10.103.215.15 with SMTP id s15mr212510muq.118.1244566732136; Tue, 09 Jun 2009 09:58:52 -0700 (PDT) In-Reply-To: <87k53lnytc.fsf@kobe.laptop> References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> From: Valentin Bud Date: Tue, 9 Jun 2009 19:58:32 +0300 Message-ID: <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> To: Giorgos Keramidas Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Gary Gatten , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 16:58:53 -0000 On Tue, Jun 9, 2009 at 7:42 PM, Giorgos Keramidas wrote: > On Tue, 9 Jun 2009 10:38:23 -0500, "Gary Gatten" > wrote: > > Hello, > > I'm basically a novice at the whole configure/make process. I've > > hacked my way through some errors in the past, but I can't get past > > this one. It used the GNU auto tools and the configure script has a > > bunch of shell, c, sed, awk, etc. stuff that's k1lling me! > > > > Anyway, I can't get past this error and the app developers/users > > aren't offering "timely" help, so if anyone here is interested in > > debugging a configure script and helping me get this (nTop 3.3.10) > > compiled would be GREATLY appreciated! I'll contact you offlist off > > course! > > Why not `on list'? > > This way we won't have to duplicate the efforts of all the previous > subscribers every time you describe what the problem is. I agree. This might benefit to others. I guess there are lot of people out there that don't really understand make and config so this could be a reference to all of them. I know (and agree) that everybody should RTFM but there are times when the fine manual is just not enough and real world examples provide a thorough understanding. my 7c, v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:06:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE760106564A for ; Tue, 9 Jun 2009 17:06:47 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id AEA738FC18 for ; Tue, 9 Jun 2009 17:06:47 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (mailhost3.waddell.com [10.1.10.28]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n59H65Fq017773; Tue, 9 Jun 2009 12:06:21 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id B8BE546204; Tue, 9 Jun 2009 12:06:05 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost3.waddell.com (Postfix) with ESMTP id A9B6A46203; Tue, 9 Jun 2009 12:06:05 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 12:06:05 -0500 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, 9 Jun 2009 12:06:04 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF14@WADPEXV0.waddell.com> In-Reply-To: <20090609165844.GA73344@slackbox.xs4all.nl> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: OT - help w configure, make, etc. thread-index: AcnpI6ZiYwjLWonFTD23ylnfK2P22QAAFwhg References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <20090609165844.GA73344@slackbox.xs4all.nl> From: "Gary Gatten" To: "Roland Smith" X-OriginalArrivalTime: 09 Jun 2009 17:06:05.0204 (UTC) FILETIME=[930E1D40:01C9E924] Cc: freebsd-questions@freebsd.org Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:06:48 -0000 Yep, one reason I thought OT would be best is I'm trying to move this app to a Solaris 10 x86 system (don't ask). Got all the GNU tools from csw.org. Anyway, the autoconf/make/configure scripts are "basic" code so figured anyone that's done this stuff could help. I don't feel like joining YAUG for Solaris, but I will if I can't figure it out or find any help here. Good call on stealing some stuff from the ports though! The same concepts to port to FBSD will prolly apply to Solaris - just different paths, etc. - I HOPE! G -----Original Message----- From: Roland Smith [mailto:rsmith@xs4all.nl]=20 Sent: Tuesday, June 09, 2009 11:59 AM To: Gary Gatten Cc: freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. On Tue, Jun 09, 2009 at 10:38:23AM -0500, Gary Gatten wrote: >=20 >=20 > Anyway, I can't get past this error and the app developers/users aren't > offering "timely" help, so if anyone here is interested in debugging a > configure script and helping me get this (nTop 3.3.10) compiled would be > GREATLY appreciated! I'll contact you offlist off course! >=20 Do you know that ntop 3.3.8 is available in ports as /usr/ports/net/ntop? Maybe you can use that? If you really need 3.3.10, try making a copy of the net/ntop directory, change the Makefile and distfile to refer to 3.3.10 and see if it compiles. Note that the /usr/ports/net/ntop/files directory contains some patches that are applied to the extracted source code to make it work. Maybe you can borrow/adapt those if you really want to compile 3.3.10 yourself. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:10:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E732106566B for ; Tue, 9 Jun 2009 17:10:17 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id 598F28FC0A for ; Tue, 9 Jun 2009 17:10:17 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (mailhost2.waddell.com [10.1.10.30]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n59H9J2E002655; Tue, 9 Jun 2009 12:09:39 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 9507168BBA; Tue, 9 Jun 2009 12:09:18 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost2.waddell.com (Postfix) with ESMTP id 6C7B268BB9; Tue, 9 Jun 2009 12:09:18 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 12:09:17 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Tue, 9 Jun 2009 12:09:17 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF15@WADPEXV0.waddell.com> In-Reply-To: <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: OT - help w configure, make, etc. thread-index: AcnpI7JsZWsKX1wlTy+7HqUfcFysuQAAO1nQ References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> From: "Gary Gatten" To: "Valentin Bud" , "Giorgos Keramidas" X-OriginalArrivalTime: 09 Jun 2009 17:09:17.0919 (UTC) FILETIME=[05EC16F0:01C9E925] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:10:18 -0000 With all the recent "what's appropriate for this list and wha's not" issues, I didn't know if this was the appropriate forum or not since it's not really a FBSD issue. ESPECIALLY since I'm trying to get it to configure/make on Solaris 10 x86. See my recent post, but I though I could get some help with the configure script regardless what OS - it's "basic" shell/c programming stuff - but apparently over my head. I'm sure I could figure it out in another 60 hours, but don't really want to spend that much time! =20 ________________________________ From: Valentin Bud [mailto:valentin.bud@gmail.com]=20 Sent: Tuesday, June 09, 2009 11:59 AM To: Giorgos Keramidas Cc: Gary Gatten; freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. =20 =20 On Tue, Jun 9, 2009 at 7:42 PM, Giorgos Keramidas wrote: On Tue, 9 Jun 2009 10:38:23 -0500, "Gary Gatten" wrote: > Hello, > I'm basically a novice at the whole configure/make process. I've > hacked my way through some errors in the past, but I can't get past > this one. It used the GNU auto tools and the configure script has a > bunch of shell, c, sed, awk, etc. stuff that's k1lling me! > > Anyway, I can't get past this error and the app developers/users > aren't offering "timely" help, so if anyone here is interested in > debugging a configure script and helping me get this (nTop 3.3.10) > compiled would be GREATLY appreciated! I'll contact you offlist off > course! Why not `on list'? This way we won't have to duplicate the efforts of all the previous subscribers every time you describe what the problem is. I agree. This might benefit to others. I guess there are lot of people out there that don't really understand make and config so this could be a reference to all of them. I know (and agree) that everybody should RTFM but there are times when the fine manual is just not enough and real world examples provide a thorough understanding. my 7c, v=20 --=20 network warrior since 2005
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:13:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C80F91065677 for ; Tue, 9 Jun 2009 17:13:06 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D10F48FC23 for ; Tue, 9 Jun 2009 17:13:05 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59HCwkn007439; Tue, 9 Jun 2009 19:12:58 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59HCvNa007436; Tue, 9 Jun 2009 19:12:58 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 19:12:57 +0200 (CEST) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:13:07 -0000 > so this could be a reference to all of them. > > I know (and agree) that everybody should RTFM but there are times > when the fine manual is just not enough and real world examples > provide a thorough understanding. > just few months and this will be general unix support list for everybody. how about name change? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:16:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 226CF106564A for ; Tue, 9 Jun 2009 17:16:53 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 49CDE8FC14 for ; Tue, 9 Jun 2009 17:16:52 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by fxm20 with SMTP id 20so144660fxm.43 for ; Tue, 09 Jun 2009 10:16:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=/WYwHMsRkTKK+lEAwCnGGvFbPR96inm80lmSLN7FaeA=; b=jPvNkoAR9GcKqEo2CUK41svS1MdXpQXNLyPNi58JrQ64pn071JQxyS9wV9N9ocFvfV ueUQJjdOd9wLDGMTTx7fdIln/X5ttbNwmCA3H8hXCOdxW/LJxfASF7y+84xZ5LKxEKGH QuGCrKCdEYPYcp9aj3MASEtQAcA+lCywmeJtQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=koBQZQpptUSTgEfEWSTRJ0XSmMwqshHQDs+VS+84rgUlWaoKzv5iZvU4C13MZVDnMg tI1FSnLbRK0yXRW7yTE3KxQxgCQYtov5LLUVxQ4KvKYF1BkhydRqH+kzcG/IFm22yYa3 AdHxzFCWl9ZvGPzngWJIP1iCBrwaRwHEuqt7E= MIME-Version: 1.0 Received: by 10.103.131.18 with SMTP id i18mr227081mun.107.1244567810165; Tue, 09 Jun 2009 10:16:50 -0700 (PDT) In-Reply-To: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> From: Valentin Bud Date: Tue, 9 Jun 2009 20:16:30 +0300 Message-ID: <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:16:53 -0000 On Tue, Jun 9, 2009 at 8:12 PM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > so this could be a reference to all of them. >> >> I know (and agree) that everybody should RTFM but there are times >> when the fine manual is just not enough and real world examples >> provide a thorough understanding. >> >> just few months and this will be general unix support list for everybody. > how about name change? > and here we go again ... -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:18:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03F39106566B for ; Tue, 9 Jun 2009 17:18:58 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 88AA58FC0A for ; Tue, 9 Jun 2009 17:18:57 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so124815ewy.43 for ; Tue, 09 Jun 2009 10:18:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Iswy0noySJeLgpFHrOruJfHmdm3Adyc4QvruEnol5UI=; b=p3z36M2UULXfLhjFaiXw3aINCW7pzDvX5ThZV7E0mj0SE054n8MENnRdlFi9qNIxdU ko9ia7ZjEBDpB4IdAb7Pdeag5HCx7heVLeiJNNU2Vvym/qGkOFiwRBTx8HUKZ6C0yI0Z hzOBkfebTHzPBsuYhry2Ej3xhqA9xTCV0M6IQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=I5EACtpwLhRkYn6NEGkTGhp9C2XWQromtrGR5dIub6PiuGU1A0VQt6wfh1oFCOvBNl MIX+TOwpuZrFAlC8d842poRyYfsaq9kt70wvZogJ8V6zHAhEJ5/rn9/ex4yrEkzIV4x6 y2xZ59YyPR+Mg2zMBHH1qHJhg6bTYG7KWfCLE= MIME-Version: 1.0 Received: by 10.210.79.3 with SMTP id c3mr2672475ebb.24.1244567936709; Tue, 09 Jun 2009 10:18:56 -0700 (PDT) In-Reply-To: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> Date: Tue, 9 Jun 2009 13:18:56 -0400 Message-ID: From: Daniel Underwood To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: PDF inventory 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, 09 Jun 2009 17:18:58 -0000 I'm trying to convert all PDF files in a directory to text using "pdftotext". I tried the following command: $ find *.pdf | xargs -0 pdftotext Error: Couldn't open file 'Ross-JAMA-2007 (Prostate Screening Strategies).pdf Sanda-JAMA-2009 (Prostate Cancer Treatment).pdf ' Why is this not working? Thanks, Daniel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:25:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C34D0106566B for ; Tue, 9 Jun 2009 17:25:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id F39DE8FC14 for ; Tue, 9 Jun 2009 17:25:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59HPBmU007508; Tue, 9 Jun 2009 19:25:11 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59HPAV9007505; Tue, 9 Jun 2009 19:25:11 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 19:25:10 +0200 (CEST) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:25:22 -0000 > > just few months and this will be general unix support list for everybody. how about name > change? > > > and here we go again ... yes. Into general mess of everything off topic being ok because you/others only want to "help people".... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:30:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE0651065672 for ; Tue, 9 Jun 2009 17:30:04 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from smtp.owt.com (smtp.owt.com [64.146.239.50]) by mx1.freebsd.org (Postfix) with ESMTP id 9CC128FC1A for ; Tue, 9 Jun 2009 17:30:04 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from kstewart2.owt.com (kstewart2.owt.com [64.146.237.228]) (authenticated bits=0) by smtp.owt.com (8.13.8/8.13.8) with ESMTP id n59HU3dE005027; Tue, 9 Jun 2009 10:30:03 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=owt.com; s=default; t=1244568604; bh=/95aPj3UyjCSYTNdBvf/UGX5ENJc6V9p+TAKzxDm330=; h=From:To:Subject:Date:Cc:References:In-Reply-To:MIME-Version: Content-Type:Content-Transfer-Encoding:Message-Id; b=ewb5/kABQj5fv WOkbLVQAr0XEehBHHiNTCo6nmFVgPABrvajn8ftK1PTlr5hf7W9qIJ+GZBIxLyFg5e0 rK+jFXOTswOHtr/0blML9Qb4ICpimio0n0eqVH6sbe2qLpr89RJcdZdilNtPhtVVeTf apZJC71I4Z0oUkb39lTzFVSE= From: Kent Stewart To: freebsd-questions@freebsd.org Date: Tue, 9 Jun 2009 10:30:03 -0700 User-Agent: KMail/1.9.10 References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> <200906090942.13729.kstewart@owt.com> <139b44430906090954g5914d81cvcaf2c80b16e727b9@mail.gmail.com> In-Reply-To: <139b44430906090954g5914d81cvcaf2c80b16e727b9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906091030.03257.kstewart@owt.com> Cc: d.forsyth@ru.ac.za, Valentin Bud Subject: Re: another compile 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: Tue, 09 Jun 2009 17:30:05 -0000 On Tuesday 09 June 2009 09:54:41 am Valentin Bud wrote: > On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart wrote: > > On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote: > > > Hiya > > > > > > trying to build kernel for 7.2 and get this > > > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > > > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > > > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - > > > Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > > > Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc - > > > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - > > > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - > > > finline-limit=8000 --param inline-unit-growth=100 --param large- > > > function-growth=1000 -mno-align-long-strings -mpreferred-stack- > > > boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - > > > ffreestanding -Werror vers.c > > > linking kernel.debug > > > udbp.o(.text+0x59): In function `ng_udbp_disconnect': > > > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to > > > `ng_rmnode_self' > > > udbp.o(.text+0xc9): In function `udbp_detach': > > > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to > > > `ng_rmnode_self' > > > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined > > > reference to `ng_unref_node' > > > udbp.o(.text+0x79e): In function `udbp_attach': > > > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' > > > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined > > > reference to `ng_make_node_common' > > > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined > > > reference to `ng_name_node' > > > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined > > > > I just cvsuped and did a buildworld and a buildkernel. The kernel > > compiled without a problem. So, this means that you have probably > > modified your kernel > > config file until it doesn't work. Start over with GENERIC and leave the > > comment on udbp. > > > > Kent > > > > -- > > Kent Stewart > > Richland, WA > > > > http://users.owt.com/kstewart/index.html > > > > _______________________________________________ > > 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, > > If you want udbp(4) you have to know that it requires netgraph(4). > They are both available as modules and/or kernel config options > (actually udbp(4) is a device :) ). If that is all it takes, then, I think that GENERIC should mention the "options NETGRAPH" as a requirement for udbp. There are numerous places with "requires miibus" as a comment because a device won't compile without it. A commented line has often been there because it was a work in progress such as ULE was for what seems like years or broken for unknown reasons. GENERIC was always self documenting. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:33:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B8D91065678 for ; Tue, 9 Jun 2009 17:33:56 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: from mx1.identry.com (on.identry.com [66.111.0.194]) by mx1.freebsd.org (Postfix) with ESMTP id B71668FC21 for ; Tue, 9 Jun 2009 17:33:55 +0000 (UTC) (envelope-from jalmberg@identry.com) Received: (qmail 44274 invoked by uid 89); 9 Jun 2009 17:34:19 -0000 Received: from unknown (HELO ?192.168.1.110?) (jalmberg@75.127.142.66) by mx1.identry.com with ESMTPA; 9 Jun 2009 17:34:19 -0000 Mime-Version: 1.0 (Apple Message framework v753.1) In-Reply-To: References: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <9FA9153E-6FC9-43EC-90CD-56B13ACCA410@identry.com> Content-Transfer-Encoding: 7bit From: John Almberg Date: Tue, 9 Jun 2009 13:33:53 -0400 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.753.1) Subject: Re: PDF inventory 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, 09 Jun 2009 17:33:56 -0000 On Jun 8, 2009, at 5:17 PM, Daniel Underwood wrote: > I'm looking for a way to manage my personal collection of research > articles. Ideally I'd like some way to keep records on authors, > keywords, journals, and publication years of articles (PDF files) > downloaded onto my local drive. > > In the course of reading literature for research, it often happens > that I find myself wanted to return to something I have previously > read, but I only recall a few "things" about the article, often the > author and a keyword. Is there some inventory/database software (for > local use only) that can be easily used for this purpose? (The > closest things that comes to mind (conceptually) is "image collection" > software.) > > What are some of my options here? I know this probably won't help pure FreeBSD users, but if, like me, you use FreeBSD for servers, and Macs for desktop, I can't resist recommending my favorite program of all time, Yojimbo: http://www.barebones.com/products/Yojimbo/ This is a general purpose 'Memory Bank'. You can throw all kinds of information into it, tag it with keywords, and retrieve it in an instant. It integrates with all Mac programs, so I use it all the time... Any time I get a pdf or web page I think I *might* want to reference someday, I throw it into Yojimbo. It's also great for documenting how to do things, so you don't have to relearn how to do a certain complicated thing 6 months after you figured it out the first time (I hate that). It's hard to explain how it works, but it is the most incredibly useful program. Wish there was something like it in ports. -- John From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:35:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 873B510656E4 for ; Tue, 9 Jun 2009 17:35:05 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id 4A2EC8FC13 for ; Tue, 9 Jun 2009 17:35:05 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id n59HWVfQ064483; Tue, 9 Jun 2009 13:32:31 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id n59HWVvK064482; Tue, 9 Jun 2009 13:32:31 -0400 (EDT) (envelope-from jerrymc) Date: Tue, 9 Jun 2009 13:32:31 -0400 From: Jerry McAllister To: Wojciech Puchar Message-ID: <20090609173231.GA64394@gizmo.acns.msu.edu> References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:35:06 -0000 On Tue, Jun 09, 2009 at 07:12:57PM +0200, Wojciech Puchar wrote: > >so this could be a reference to all of them. > > > >I know (and agree) that everybody should RTFM but there are times > >when the fine manual is just not enough and real world examples > >provide a thorough understanding. > > > just few months and this will be general unix support list for everybody. > how about name change? WP. Don't start whining again. This list is about helping people, not making you comfortable. ////jerry > _______________________________________________ > 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 9 17:38:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F0FA10656C3 for ; Tue, 9 Jun 2009 17:38:00 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (gizmo.acns.msu.edu [35.8.1.43]) by mx1.freebsd.org (Postfix) with ESMTP id 622428FC1B for ; Tue, 9 Jun 2009 17:38:00 +0000 (UTC) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: from gizmo.acns.msu.edu (localhost [127.0.0.1]) by gizmo.acns.msu.edu (8.13.6/8.13.6) with ESMTP id n59HZSfF064522; Tue, 9 Jun 2009 13:35:28 -0400 (EDT) (envelope-from jerrymc@gizmo.acns.msu.edu) Received: (from jerrymc@localhost) by gizmo.acns.msu.edu (8.13.6/8.13.6/Submit) id n59HZSJY064521; Tue, 9 Jun 2009 13:35:28 -0400 (EDT) (envelope-from jerrymc) Date: Tue, 9 Jun 2009 13:35:28 -0400 From: Jerry McAllister To: Wojciech Puchar Message-ID: <20090609173527.GB64394@gizmo.acns.msu.edu> References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:38:01 -0000 On Tue, Jun 09, 2009 at 07:25:10PM +0200, Wojciech Puchar wrote: > > > >just few months and this will be general unix support list for everybody. > >how about name > >change? > > > > > >and here we go again ... > yes. Into general mess of everything off topic being ok because you/others > only want to "help people".... The most off-topic stuff on this list lately has been your complaining about stuff being off-topic. On the other hand, using make to grow something running under FreeBSD is about as on-topic as one can get. ////jerry > _______________________________________________ > 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 9 17:38:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8A481065680 for ; Tue, 9 Jun 2009 17:38:12 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id E667D8FC15 for ; Tue, 9 Jun 2009 17:38:11 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id 1B6AEEB5175; Tue, 9 Jun 2009 20:38:11 +0300 (EEST) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id 0A79845088; Tue, 9 Jun 2009 20:38:11 +0300 (EEST) X-Virus-Scanned: amavisd-new at ceid.upatras.gr Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JpaIbaIH601o; Tue, 9 Jun 2009 20:38:10 +0300 (EEST) Received: from kobe.laptop (adsl24-193.kln.forthnet.gr [77.49.151.193]) by mail.ceid.upatras.gr (Postfix) with ESMTP id C112B4503F; Tue, 9 Jun 2009 20:38:10 +0300 (EEST) Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n59HcA80086903; Tue, 9 Jun 2009 20:38:10 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n59Hc9mL086902; Tue, 9 Jun 2009 20:38:09 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Wojciech Puchar References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> Date: Tue, 09 Jun 2009 20:38:08 +0300 In-Reply-To: (Wojciech Puchar's message of "Tue, 9 Jun 2009 19:12:57 +0200 (CEST)") Message-ID: <87bpoxmhof.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:38:13 -0000 On Tue, 9 Jun 2009 19:12:57 +0200 (CEST), Wojciech Puchar wrote: >> so this could be a reference to all of them. >> >> I know (and agree) that everybody should RTFM but there are times >> when the fine manual is just not enough and real world examples >> provide a thorough understanding. > > just few months and this will be general unix support list for > everybody. how about name change? Stop the whining already, will you? If you have no useful content to contribute to a thread, please consider ignoring it. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:41:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3535106570F for ; Tue, 9 Jun 2009 17:41:17 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-qy0-f204.google.com (mail-qy0-f204.google.com [209.85.221.204]) by mx1.freebsd.org (Postfix) with ESMTP id 678868FC14 for ; Tue, 9 Jun 2009 17:41:17 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by qyk42 with SMTP id 42so224453qyk.7 for ; Tue, 09 Jun 2009 10:41:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=8ZW2JvtYDud0D7WpkaVFKxnA19XkQsyCfI0jFCp+has=; b=YYRm0mAGap96KZcaBGhdI8O/JeIXWnBUAuiA7u6NJVKvhQUq23NAAg2fHib7ldf5DT cFpX3vMN+O6RA4qY9SBvkihGDPoC1VTzH1jcRfLNI2RtV4gyvWcDEKJguZZ45kuGVcR3 jMl6CNN7e6GluTNkeoud7sE+Cth7wZ/zBK/Ls= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=K9aGOJEqV5RHFyR3Acv4xTYmojdok/qpECv0DOPUfWKjljRn27kKyP0BEuMs0EpbaL 0RnAvKbi0rC0vLoODSUITFwQkJWBypzRBKX3gcuOk0XrUD7H8CSbKZbjLpAaHuVSVcjM TW8o88MuBHSOdHsSUGJL3zoAmvdgk9m7eyqII= MIME-Version: 1.0 Received: by 10.231.15.7 with SMTP id i7mr122839iba.43.1244569276366; Tue, 09 Jun 2009 10:41:16 -0700 (PDT) In-Reply-To: References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> Date: Tue, 9 Jun 2009 13:41:16 -0400 Message-ID: From: "illoai@gmail.com" To: Daniel Underwood Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 17:41:18 -0000 2009/6/9 Daniel Underwood : > I'm trying to convert all PDF files in a directory to text using > "pdftotext". =A0I tried the following command: > > $ find *.pdf | xargs -0 pdftotext > Error: Couldn't open file 'Ross-JAMA-2007 (Prostate Screening Strategies)= .pdf > Sanda-JAMA-2009 (Prostate Cancer Treatment).pdf > ' > > Why is this not working? since xargs is expecting NUL for seperators you need th' -print0 primary with find --=20 -- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:46:53 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFCE41065674 for ; Tue, 9 Jun 2009 17:46:53 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 4FFFA8FC0A for ; Tue, 9 Jun 2009 17:46:52 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by fxm20 with SMTP id 20so165068fxm.43 for ; Tue, 09 Jun 2009 10:46:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=HINzvHjuSmdC06pmd8rJYMbkN/gOV72JfNB44TKud28=; b=I6sBx2Ymf+E60Zxz0qhhHIdOgQQmnzV6txv79s9phLcnEpoBZgCVKwfoluDfxMMKLQ J59uvto2v9JLof7/yhVRGgoEScX+PJJu4KcysAC6Hi819DwxRlD2BXNAVbMicfjwE9g7 T/eMy0wjvujpV+H+OiGLzMQMazLoQQEBOoksY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=FOddxKgfDi5Nr4H7bo6+aLySlB/Xty29pk/qxP8NMBVt+mvBJN+/TVNIXYsSt9d+w6 TrZhVpySSYNLbyx5J584ES9gU+CjLEcUMdhGxSAEWdcK56OYKWJ5v+Pm/fNp36nN96sn IdJ0BpjG/yN3bD1VBgJ+WD8Fy8S8Wb99ocf5I= MIME-Version: 1.0 Received: by 10.103.249.19 with SMTP id b19mr251738mus.86.1244569612186; Tue, 09 Jun 2009 10:46:52 -0700 (PDT) In-Reply-To: <200906091030.03257.kstewart@owt.com> References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> <200906090942.13729.kstewart@owt.com> <139b44430906090954g5914d81cvcaf2c80b16e727b9@mail.gmail.com> <200906091030.03257.kstewart@owt.com> From: Valentin Bud Date: Tue, 9 Jun 2009 20:46:32 +0300 Message-ID: <139b44430906091046n34ff5e47w3fc42f48b2914e2f@mail.gmail.com> To: Kent Stewart Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: d.forsyth@ru.ac.za, freebsd-questions@freebsd.org Subject: Re: another compile 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: Tue, 09 Jun 2009 17:46:54 -0000 On Tue, Jun 9, 2009 at 8:30 PM, Kent Stewart wrote: > On Tuesday 09 June 2009 09:54:41 am Valentin Bud wrote: > > On Tue, Jun 9, 2009 at 7:42 PM, Kent Stewart wrote: > > > On Tuesday 09 June 2009 08:00:20 am DA Forsyth wrote: > > > > Hiya > > > > > > > > trying to build kernel for 7.2 and get this > > > > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > > > > > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > > > > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs > - > > > > Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > > > > Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc > - > > > > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - > > > > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - > > > > finline-limit=8000 --param inline-unit-growth=100 --param large- > > > > function-growth=1000 -mno-align-long-strings -mpreferred-stack- > > > > boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - > > > > ffreestanding -Werror vers.c > > > > linking kernel.debug > > > > udbp.o(.text+0x59): In function `ng_udbp_disconnect': > > > > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to > > > > `ng_rmnode_self' > > > > udbp.o(.text+0xc9): In function `udbp_detach': > > > > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to > > > > `ng_rmnode_self' > > > > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined > > > > reference to `ng_unref_node' > > > > udbp.o(.text+0x79e): In function `udbp_attach': > > > > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' > > > > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined > > > > reference to `ng_make_node_common' > > > > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined > > > > reference to `ng_name_node' > > > > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined > > > > > > I just cvsuped and did a buildworld and a buildkernel. The kernel > > > compiled without a problem. So, this means that you have probably > > > modified your kernel > > > config file until it doesn't work. Start over with GENERIC and leave > the > > > comment on udbp. > > > > > > Kent > > > > > > -- > > > Kent Stewart > > > Richland, WA > > > > > > http://users.owt.com/kstewart/index.html > > > > > > _______________________________________________ > > > 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, > > > > If you want udbp(4) you have to know that it requires netgraph(4). > > They are both available as modules and/or kernel config options > > (actually udbp(4) is a device :) ). > > If that is all it takes, then, I think that GENERIC should mention > the "options NETGRAPH" as a requirement for udbp. Well i agree with you but it *doesn't*. The man page does it: man 4 udbp: "It requires netgraph(4) to be available. This can be done either by adding options NETGRAPH to your kernel configuration file, or alterna- tively loading netgraph(4) as a module, either from /boot/loader.conf or from the command line, before the udbp module." v > There are numerous places > with "requires miibus" as a comment because a device won't compile without > it. A commented line has often been there because it was a work in progress > such as ULE was for what seems like years or broken for unknown reasons. > GENERIC was always self documenting. > > Kent > > -- > Kent Stewart > Richland, WA > > http://users.owt.com/kstewart/index.html > > -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:47:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7055B10656DC for ; Tue, 9 Jun 2009 17:47:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 916188FC19 for ; Tue, 9 Jun 2009 17:47:58 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59HlnES007744; Tue, 9 Jun 2009 19:47:49 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59HlnSe007741; Tue, 9 Jun 2009 19:47:49 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 19:47:49 +0200 (CEST) From: Wojciech Puchar To: Giorgos Keramidas In-Reply-To: <87bpoxmhof.fsf@kobe.laptop> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <87bpoxmhof.fsf@kobe.laptop> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:47:59 -0000 >> just few months and this will be general unix support list for >> everybody. how about name change? > > Stop the whining already, will you? If you have no useful content to > contribute to a thread, please consider ignoring it. could you precisely define "useful content". I just point out that this list is going completely off topic with GNU configure support. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:49:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70575106586A for ; Tue, 9 Jun 2009 17:49:32 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 753D28FC20 for ; Tue, 9 Jun 2009 17:49:31 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59HnNTA007776; Tue, 9 Jun 2009 19:49:23 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59HnMH6007773; Tue, 9 Jun 2009 19:49:22 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 19:49:22 +0200 (CEST) From: Wojciech Puchar To: Jerry McAllister In-Reply-To: <20090609173527.GB64394@gizmo.acns.msu.edu> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Giorgos Keramidas , Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:49:34 -0000 >> only want to "help people".... > > The most off-topic stuff on this list lately has been your > complaining about stuff being off-topic. Not most, but certainly off topic. But well - with no moderation or other execution of on-topic rule, what you expect? > > On the other hand, using make to grow something running under FreeBSD > is about as on-topic as one can get. i already answered in first place. then it got off-topic, including using configure with solaris x86. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 17:55:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89A301065705 for ; Tue, 9 Jun 2009 17:55:50 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id 27F778FC12 for ; Tue, 9 Jun 2009 17:55:50 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (mailhost3.waddell.com [10.1.10.28]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n59Hsb9N004789; Tue, 9 Jun 2009 12:54:57 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id AE2FE46D8E; Tue, 9 Jun 2009 12:54:37 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost3.waddell.com (Postfix) with ESMTP id 9C66646E10; Tue, 9 Jun 2009 12:54:37 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 12:54:37 -0500 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, 9 Jun 2009 12:54:36 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF16@WADPEXV0.waddell.com> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: OT - help w configure, make, etc. thread-index: AcnpKsuIBfb3jjBSTI2LJ2PdRZSzhQAAIDOw References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> From: "Gary Gatten" To: "Wojciech Puchar" , "Jerry McAllister" X-OriginalArrivalTime: 09 Jun 2009 17:54:37.0384 (UTC) FILETIME=[5AD98480:01C9E92B] Cc: Giorgos Keramidas , freebsd-questions@freebsd.org, Valentin Bud Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 17:55:51 -0000 I this thread dies right now, I PROMISE I'll just figure it out myself... -----Original Message----- From: Wojciech Puchar [mailto:wojtek@wojtek.tensor.gdynia.pl]=20 Sent: Tuesday, June 09, 2009 12:49 PM To: Jerry McAllister Cc: Giorgos Keramidas; Gary Gatten; freebsd-questions@freebsd.org; Valentin Bud Subject: Re: OT - help w configure, make, etc. >> only want to "help people".... > > The most off-topic stuff on this list lately has been your > complaining about stuff being off-topic. Not most, but certainly off topic. But well - with no moderation or other execution of on-topic rule, what=20 you expect? > > On the other hand, using make to grow something running under FreeBSD > is about as on-topic as one can get. i already answered in first place. then it got off-topic, including using=20 configure with solaris x86.
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:07:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19D061065674 for ; Tue, 9 Jun 2009 18:07:44 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id B50FE8FC17 for ; Tue, 9 Jun 2009 18:07:43 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id C77EFEB5060; Tue, 9 Jun 2009 21:07:42 +0300 (EEST) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id B902645088; Tue, 9 Jun 2009 21:07:42 +0300 (EEST) X-Virus-Scanned: amavisd-new at ceid.upatras.gr Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jQbA+t5D06u2; Tue, 9 Jun 2009 21:07:42 +0300 (EEST) Received: from kobe.laptop (adsl24-193.kln.forthnet.gr [77.49.151.193]) by mail.ceid.upatras.gr (Postfix) with ESMTP id 852AA4503F; Tue, 9 Jun 2009 21:07:42 +0300 (EEST) Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n59I7gZO087264; Tue, 9 Jun 2009 21:07:42 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n59I7f72087263; Tue, 9 Jun 2009 21:07:41 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Wojciech Puchar References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <87bpoxmhof.fsf@kobe.laptop> Date: Tue, 09 Jun 2009 21:07:41 +0300 In-Reply-To: (Wojciech Puchar's message of "Tue, 9 Jun 2009 19:47:49 +0200 (CEST)") Message-ID: <8763f5gu1e.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Gary Gatten , freebsd-questions@freebsd.org, Valentin Bud Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 18:07:44 -0000 On Tue, 9 Jun 2009 19:47:49 +0200 (CEST), Wojciech Puchar wrote: >>> just few months and this will be general unix support list for >>> everybody. how about name change? >> >> Stop the whining already, will you? If you have no useful content to >> contribute to a thread, please consider ignoring it. > > could you precisely define "useful content". I just point out that this > list is going completely off topic with GNU configure support. See Roland Smith's post for a useful reply. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:20:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A3EE1065698 for ; Tue, 9 Jun 2009 18:20:47 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id DB6608FC1A for ; Tue, 9 Jun 2009 18:20:46 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by mail-pz0-f195.google.com with SMTP id 33so182542pzk.3 for ; Tue, 09 Jun 2009 11:20:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=k0XAn9gKwRDZ2Pfu5ptfduQkP3xdNyY4Dn6r2+eAY8k=; b=uUt1HR+YHu3mot7fitLwHa7j0naqvIabgull4edSjukueMp5W5uYRMFHk+GAu+Ph8k K9qJ6x0DcSZck6eUtI43QHmYM1sPZGuZEK7YRBNEsVbpw4XB+9NCjvQkFj7ppbSDM+oV hzLd9f4JnuvLjrM/QPT37bPZ8NPLM9JT7pi0w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=JOQ8osp/JukbMOcOnIwGH7GG1I9+B8mTw61LITq/kSSUHS4tOOb6510EhA5WkE7BDG dBlPk4YA3Jgk0CmzC6nnJgg9e3Thpm7lPhh7+BhGFF8UuhVLO1xTVisZMlGYSkiYe8oP dIAFoDKHeFetF30nLRMDYJLffT7MTb9si9yj8= Received: by 10.115.73.20 with SMTP id a20mr567709wal.72.1244571646478; Tue, 09 Jun 2009 11:20:46 -0700 (PDT) Received: from ?131.230.191.52? (ee122.engr.siu.edu [131.230.191.52]) by mx.google.com with ESMTPS id m34sm7756100waf.56.2009.06.09.11.20.44 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 11:20:45 -0700 (PDT) Message-ID: <4A2EA7F0.60501@gmail.com> Date: Tue, 09 Jun 2009 13:20:32 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: "illoai@gmail.com" References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 18:20:47 -0000 illoai@gmail.com wrote: > 2009/6/9 Daniel Underwood : > >> I'm trying to convert all PDF files in a directory to text using >> "pdftotext". I tried the following command: >> >> $ find *.pdf | xargs -0 pdftotext >> Error: Couldn't open file 'Ross-JAMA-2007 (Prostate Screening Strategies).pdf >> Sanda-JAMA-2009 (Prostate Cancer Treatment).pdf >> ' >> >> Why is this not working? >> What about: $ find *.pdf -exec pdftotext {} \; ? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:43:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C9CF1065673 for ; Tue, 9 Jun 2009 18:43:13 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 5907F8FC16 for ; Tue, 9 Jun 2009 18:43:12 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59Ih52B007991; Tue, 9 Jun 2009 20:43:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59Ih4ZN007988; Tue, 9 Jun 2009 20:43:04 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 20:43:04 +0200 (CEST) From: Wojciech Puchar To: Gary Gatten In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF16@WADPEXV0.waddell.com> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> <70C0964126D66F458E688618E1CD008A0793EF16@WADPEXV0.waddell.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Jerry McAllister , Giorgos Keramidas , freebsd-questions@freebsd.org, Valentin Bud Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 18:43:13 -0000 > I this thread dies right now, I PROMISE I'll just figure it out > myself... what exactly do you want to figure? > > -----Original Message----- > From: Wojciech Puchar [mailto:wojtek@wojtek.tensor.gdynia.pl] > Sent: Tuesday, June 09, 2009 12:49 PM > To: Jerry McAllister > Cc: Giorgos Keramidas; Gary Gatten; freebsd-questions@freebsd.org; > Valentin Bud > Subject: Re: OT - help w configure, make, etc. > >>> only want to "help people".... >> >> The most off-topic stuff on this list lately has been your >> complaining about stuff being off-topic. > > Not most, but certainly off topic. > > But well - with no moderation or other execution of on-topic rule, what > you expect? > >> >> On the other hand, using make to grow something running under FreeBSD >> is about as on-topic as one can get. > > i already answered in first place. then it got off-topic, including > using > configure with solaris x86. > > > > > > > >
>
> "This email is intended to be reviewed by only the intended recipient > and may contain information that is privileged and/or confidential. > If you are not the intended recipient, you are hereby notified that > any review, use, dissemination, disclosure or copying of this email > and its attachments, if any, is strictly prohibited. If you have > received this email in error, please immediately notify the sender by > return email and delete this email from your system." >
> > _______________________________________________ > 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 9 18:47:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE9221065670 for ; Tue, 9 Jun 2009 18:47:56 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 6B49B8FC15 for ; Tue, 9 Jun 2009 18:47:56 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by fxm20 with SMTP id 20so206451fxm.43 for ; Tue, 09 Jun 2009 11:47:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=7n/WcAc/xUZPvwP1K1gReg1lfhNpTySr+2TKYMKSz84=; b=FMLmCvbu/2GTx6cFV5bJo9QaxcHUWVWlcTwW6OdmAz5DMh0rsvwxV5U0slBI3FERRE /DDSbnvP23mS1dtsHi3NS6P8uCfYTgbAeKGuxZI/CLR6BcCR7jhmaYLMLXVA/LNJ2GVG 9sZA+hOnFs9HAsBWJg6z7bh8Od5nuRfkVe4Vs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=BNqZn6rehm504fFy3B1uQkgdnCioibE2hAI0XIfDBpkWnndVvYhxLNVaFxIPjoYvBf phCTDAuUwBgKaYgqAMkaOCK6+S2owwB4lqwMAe2gvWjuREoV5LmJtepQa8sFFi3pGtrq Z3crOYbVHg5YZPwqUgmVTcUqPoxsJozz3e55w= MIME-Version: 1.0 Received: by 10.103.212.2 with SMTP id o2mr295746muq.18.1244573275092; Tue, 09 Jun 2009 11:47:55 -0700 (PDT) In-Reply-To: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> <70C0964126D66F458E688618E1CD008A0793EF16@WADPEXV0.waddell.com> From: Valentin Bud Date: Tue, 9 Jun 2009 21:47:35 +0300 Message-ID: <139b44430906091147k52b410d8p47c6abb17d6e36cb@mail.gmail.com> To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Jerry McAllister , Gary Gatten , Giorgos Keramidas , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 18:48:00 -0000 On Tue, Jun 9, 2009 at 9:43 PM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > I this thread dies right now, I PROMISE I'll just figure it out >> myself... >> > > what exactly do you want to figure? > With all due respect Mr. Puchar I guess you haven't read the OP's problem which he posted in the first message. v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:50:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE5F5106564A for ; Tue, 9 Jun 2009 18:50:02 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from QMTA03.emeryville.ca.mail.comcast.net (qmta03.emeryville.ca.mail.comcast.net [76.96.30.32]) by mx1.freebsd.org (Postfix) with ESMTP id C00878FC1D for ; Tue, 9 Jun 2009 18:50:02 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from OMTA09.emeryville.ca.mail.comcast.net ([76.96.30.20]) by QMTA03.emeryville.ca.mail.comcast.net with comcast id 1uXW1c0030S2fkCA3uq3MF; Tue, 09 Jun 2009 18:50:03 +0000 Received: from comcast.net ([98.203.142.76]) by OMTA09.emeryville.ca.mail.comcast.net with comcast id 1uq11c00V1f6R9u8Vuq23d; Tue, 09 Jun 2009 18:50:03 +0000 Received: by comcast.net (sSMTP sendmail emulation); Tue, 09 Jun 2009 11:50:00 -0700 Date: Tue, 9 Jun 2009 11:50:00 -0700 From: Charlie Kester To: freebsd-questions@freebsd.org Message-ID: <20090609185000.GO79355@comcast.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <70C0964126D66F458E688618E1CD008A0793EF15@WADPEXV0.waddell.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF15@WADPEXV0.waddell.com> X-Mailer: Mutt 1.5.x X-Composer: VIM 7.2 User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 18:50:03 -0000 On Tue 09 Jun 2009 at 10:09:17 PDT Gary Gatten wrote: >With all the recent "what's appropriate for this list and wha's not" >issues, I didn't know if this was the appropriate forum or not since >it's not really a FBSD issue. The attempt to restrict this mailing list to "appropriate" questions seems to have been abandoned. The current trend is to indulge discussions on any and all topics. Yours at least has the virtue of being a request for technical assistance. :) I'm not an expert in the GNU autotools either, so I'll be interested to see what answers you get. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:52:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C91421065696 for ; Tue, 9 Jun 2009 18:52:49 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from QMTA09.emeryville.ca.mail.comcast.net (qmta09.emeryville.ca.mail.comcast.net [76.96.30.96]) by mx1.freebsd.org (Postfix) with ESMTP id AB3B18FC0C for ; Tue, 9 Jun 2009 18:52:49 +0000 (UTC) (envelope-from corky1951@comcast.net) Received: from OMTA03.emeryville.ca.mail.comcast.net ([76.96.30.27]) by QMTA09.emeryville.ca.mail.comcast.net with comcast id 1syM1c00A0b6N64A9usqLu; Tue, 09 Jun 2009 18:52:50 +0000 Received: from comcast.net ([98.203.142.76]) by OMTA03.emeryville.ca.mail.comcast.net with comcast id 1uso1c00D1f6R9u8PusoF1; Tue, 09 Jun 2009 18:52:50 +0000 Received: by comcast.net (sSMTP sendmail emulation); Tue, 09 Jun 2009 11:52:47 -0700 Date: Tue, 9 Jun 2009 11:52:47 -0700 From: Charlie Kester To: freebsd-questions@freebsd.org Message-ID: <20090609185247.GP79355@comcast.net> Mail-Followup-To: freebsd-questions@freebsd.org References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20090609173527.GB64394@gizmo.acns.msu.edu> X-Mailer: Mutt 1.5.x X-Composer: VIM 7.2 User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 18:52:50 -0000 On Tue 09 Jun 2009 at 10:35:28 PDT Jerry McAllister wrote: > >The most off-topic stuff on this list lately has been your complaining >about stuff being off-topic. ...and people complaining about Woj's complaints. ...and my own complaining about the people complaining about Woj's complaints. :) From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 18:53:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 673DA106566B for ; Tue, 9 Jun 2009 18:53:18 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 24AD08FC08 for ; Tue, 9 Jun 2009 18:53:17 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id 1EAC15E332 for ; Tue, 9 Jun 2009 20:53:17 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.975 X-Spam-Level: X-Spam-Status: No, score=-1.975 tagged_above=-999 required=5 tests=[AWL=0.625, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 7HINxzlQa84a for ; Tue, 9 Jun 2009 20:53:12 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id 836265E28F for ; Tue, 9 Jun 2009 20:53:12 +0200 (CEST) Message-ID: <4A2EAF98.70700@eskk.nu> Date: Tue, 09 Jun 2009 20:53:12 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) 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 advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 18:53:18 -0000 Hello list I've got a CD-R from a friend, (who runs windows) that I cannot mount on my 7.2-RELEASE system. It's readable in another windows machine. Other CD and DVD's is no problem but this one is. The error I get is: mount -t cd9660 /dev/acd0 /cdrom mount_cd9660: /dev/acd0: Invalid argument I've Googled and read the handbook but I think my settings are ok. Any suggestions? Thanks /Leslie From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:07:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B244106564A for ; Tue, 9 Jun 2009 19:07:30 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.freebsd.org (Postfix) with ESMTP id 30EA48FC17 for ; Tue, 9 Jun 2009 19:07:29 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr13.xs4all.nl (8.13.8/8.13.8) with ESMTP id n59J7SUX019971; Tue, 9 Jun 2009 21:07:28 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 0C745BA98; Tue, 9 Jun 2009 21:07:28 +0200 (CEST) Date: Tue, 9 Jun 2009 21:07:28 +0200 From: Roland Smith To: Leslie Jensen Message-ID: <20090609190728.GA76887@slackbox.xs4all.nl> References: <4A2EAF98.70700@eskk.nu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline In-Reply-To: <4A2EAF98.70700@eskk.nu> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 19:07:30 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 09, 2009 at 08:53:12PM +0200, Leslie Jensen wrote: > Hello list >=20 > I've got a CD-R from a friend, (who runs windows) that I cannot mount on= =20 > my 7.2-RELEASE system. It's readable in another windows machine. >=20 > Other CD and DVD's is no problem but this one is. >=20 > The error I get is: >=20 > mount -t cd9660 /dev/acd0 /cdrom > mount_cd9660: /dev/acd0: Invalid argument >=20 > I've Googled and read the handbook but I think my settings are ok. >=20 > Any suggestions? Is your friend running MS "vista" by any chance?=20 Because that version by default now uses an UDF-based "live file system" [http://en.wikipedia.org/wiki/Live_File_System]. Try mount_udf, or tell your friend to make a proper CD filesystem (called "mastered" in MS parlance). Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkousvAACgkQEnfvsMMhpyWW0wCgm3/7JBD9ElmB8+bcGKGHVh6U ptMAn3baHFd9WZ7txz0TmYs/EBhTrMnJ =uly0 -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:10:20 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10C811065670 for ; Tue, 9 Jun 2009 19:10:20 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 9453D8FC0C for ; Tue, 9 Jun 2009 19:10:19 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so202870ewy.43 for ; Tue, 09 Jun 2009 12:10:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=pBfNVPjdrkhKrfIBRwCwcaDuNsyDnnMD9SDjZESj2xM=; b=xyNjKs/DsB8Ytbxy2tJ3wD1NvdTwXhF4O0vT4Y3sOmIS2NIKoAXNtk9yGGJLhD5U/X BBqLaumfJZpbYIXAQHfHzG3wlkR2Y7QFjHtVJ6qZuQoed/Ryr4dxyet263Ev6CepKdnK F7QsdOvXDJGvOeEdS3JDs/mujtYqynSGd7F0g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=enRNH6BhvdIQv4ZiZNIa3PyKd7Vi8vLADiH3twTQYhLo+xqtIO8fj0Q58IamTo2ec0 J3tFMGm0YTAzZtknbtQBphlS3bDQVBS0HWy7I9KrSa2616KDHuYPD6RrFFL2L+s5Sjms EJZFW4lj9mp8UE1RwPDXZxlsBixxHqLvQ8I0s= MIME-Version: 1.0 Received: by 10.210.11.13 with SMTP id 13mr2702863ebk.27.1244574618653; Tue, 09 Jun 2009 12:10:18 -0700 (PDT) In-Reply-To: <4A2EA7F0.60501@gmail.com> References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@gmail.com> Date: Tue, 9 Jun 2009 15:10:18 -0400 Message-ID: From: Daniel Underwood To: LoH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "illoai@gmail.com" , freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 19:10:20 -0000 $ find *.pdf -exec pdftotext {} \; Error: Document has not the mandatory ending %EOF From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:24:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83BB21065672 for ; Tue, 9 Jun 2009 19:24:00 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 405918FC0C for ; Tue, 9 Jun 2009 19:24:00 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id 5A7705E18E; Tue, 9 Jun 2009 21:23:59 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.98 X-Spam-Level: X-Spam-Status: No, score=-1.98 tagged_above=-999 required=5 tests=[AWL=0.620, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id wKHdhnF6BUwC; Tue, 9 Jun 2009 21:23:54 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id 43D085E328; Tue, 9 Jun 2009 21:23:54 +0200 (CEST) Message-ID: <4A2EB6CA.6090506@eskk.nu> Date: Tue, 09 Jun 2009 21:23:54 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: Roland Smith References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> In-Reply-To: <20090609190728.GA76887@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 19:24:00 -0000 Roland Smith skrev: > On Tue, Jun 09, 2009 at 08:53:12PM +0200, Leslie Jensen wrote: >> Hello list >> >> I've got a CD-R from a friend, (who runs windows) that I cannot mount on >> my 7.2-RELEASE system. It's readable in another windows machine. >> >> Other CD and DVD's is no problem but this one is. >> >> The error I get is: >> >> mount -t cd9660 /dev/acd0 /cdrom >> mount_cd9660: /dev/acd0: Invalid argument >> >> I've Googled and read the handbook but I think my settings are ok. >> >> Any suggestions? > > Is your friend running MS "vista" by any chance? > Because that version by default now uses an UDF-based "live file system" > [http://en.wikipedia.org/wiki/Live_File_System]. > > Try mount_udf, or tell your friend to make a proper CD filesystem > (called "mastered" in MS parlance). > > Roland I tried that as well, same error unfortunately mount -t udf /dev/acd0 /cdrom mount_udf: /dev/acd0: Invalid argument So is this a new MS filesystem that no one but Vista users can read? I'm afraid we'll properly see more of these problems unless support is added to the mount command. /Leslie From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:29:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B09F1065675 for ; Tue, 9 Jun 2009 19:29:30 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-px0-f199.google.com (mail-px0-f199.google.com [209.85.216.199]) by mx1.freebsd.org (Postfix) with ESMTP id 1748B8FC0A for ; Tue, 9 Jun 2009 19:29:30 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by mail-px0-f199.google.com with SMTP id 37so224809pxi.3 for ; Tue, 09 Jun 2009 12:29:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=7g6dTbfdIpnIjnkGWcIMstIhHyqKvTYDea72z7O2oLI=; b=or2fV4+iOlXpjzOsMKSH8Q/lYb2PFtdimhVZgdsGnwDHGGM8DuKdCvy1Fmi/upZ8AK ioBSMECAlQS0BpVdJq86BGGXNwpBwKXOnORihOs9P/pBch6UF8ajEBNp1mVGoA9Z/fX9 CJRD/NzPSnouMfCT7JgNClQE9I90mOFp4EliE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=ipHnNH+NoK+89rR6AGfgKTpHK+aj2crU+SEepABxXq0lp6WAC8JtsjDO0o9IuEyxtL bF/pEvaam/xcX3URe902cUp9P3jcQjXgxEbOAN1Ti9BFUPnT7J7IRpqZ6WJKAsRKF6u6 45mt1faOcx3ldrGuycQY/fsuzdfibevQZcnyk= Received: by 10.114.124.1 with SMTP id w1mr679773wac.13.1244575769873; Tue, 09 Jun 2009 12:29:29 -0700 (PDT) Received: from ?131.230.191.52? (ee122.engr.siu.edu [131.230.191.52]) by mx.google.com with ESMTPS id l30sm7881726waf.0.2009.06.09.12.29.28 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 12:29:29 -0700 (PDT) Message-ID: <4A2EB80C.1010102@gmail.com> Date: Tue, 09 Jun 2009 14:29:16 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@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: PDF inventory 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, 09 Jun 2009 19:29:30 -0000 Daniel Underwood wrote: > $ find *.pdf -exec pdftotext {} \; > Error: Document has not the mandatory ending %EOF > Have you run pdftotext on a single file in your archive as a test? --Joseph Lenox From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:46:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D6B7106566B for ; Tue, 9 Jun 2009 19:46:51 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 1A5178FC0C for ; Tue, 9 Jun 2009 19:46:50 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so227852ewy.43 for ; Tue, 09 Jun 2009 12:46:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=z+lqQMJDZSUaVIjCVcT4ylVLolOtAu6RL5mwdtGitv0=; b=rQRu8YnnxZhE1oEGVAImLGI4H1GVugom4raUOOTTy75+cHEW8YV35eeW+xZVfSANXp OKzOSoMz2TQ/bSNEU5wCBB9bguNwTtOT4+rGO4ba5lT3GlLx7RA/XFn/saDDNWT17Jt2 HADdTgudMUSxU1WMtY9cpIYexWpS8MlBJg2to= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=XxmZHBQYG1OVc2jFy3AdR+KtbaBq2ip2IbuOhScKid+xt5jI5H+ql3WMPoe79Zl6Y2 D+UwEz4wp+c+8ggm9zCZ4tVX9Gm8RZuYaHHMXaCpAQF/WEvfv/Tw870qk9OdNNvLnVpc 9+21dL0QmVHgRNG5AQxyxUWvOvG8DM1X6pq1E= MIME-Version: 1.0 Received: by 10.210.86.10 with SMTP id j10mr6247190ebb.37.1244576809854; Tue, 09 Jun 2009 12:46:49 -0700 (PDT) In-Reply-To: <4A2EB80C.1010102@gmail.com> References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@gmail.com> <4A2EB80C.1010102@gmail.com> Date: Tue, 9 Jun 2009 15:46:49 -0400 Message-ID: From: Daniel Underwood To: LoH Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 19:46:51 -0000 Hmm.. The command find *.pdf -exec pdftotext {} \; works in directories in which no PDF file returns the "Document has not the mandatory ending %EOF" error. When a directory contains one of these files, none of the files get converted. Is there some way to ignore or skip over this %EOF problem and continue operating on the remaining PDFs? From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:52:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44B031065670 for ; Tue, 9 Jun 2009 19:52:52 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id F306C8FC16 for ; Tue, 9 Jun 2009 19:52:51 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.3/8.14.3) with ESMTP id n59JqnJ7037131; Tue, 9 Jun 2009 13:52:49 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.3/8.14.3/Submit) with ESMTP id n59JqnHc037128; Tue, 9 Jun 2009 13:52:49 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Tue, 9 Jun 2009 13:52:49 -0600 (MDT) From: Warren Block To: Leslie Jensen In-Reply-To: <4A2EAF98.70700@eskk.nu> Message-ID: References: <4A2EAF98.70700@eskk.nu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.2 (wonkity.com [127.0.0.1]); Tue, 09 Jun 2009 13:52:49 -0600 (MDT) Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 19:52:52 -0000 On Tue, 9 Jun 2009, Leslie Jensen wrote: > I've got a CD-R from a friend, (who runs windows) that I cannot mount on my > 7.2-RELEASE system. It's readable in another windows machine. > > Other CD and DVD's is no problem but this one is. > > The error I get is: > > mount -t cd9660 /dev/acd0 /cdrom > mount_cd9660: /dev/acd0: Invalid argument > > I've Googled and read the handbook but I think my settings are ok. UDF would be my first guess. If that's not it, maybe file -s /dev/acd0 can identify it. -Warren Block * Rapid City, South Dakota USA From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 19:58:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9DB5D106566B for ; Tue, 9 Jun 2009 19:58:17 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5A3548FC15 for ; Tue, 9 Jun 2009 19:58:17 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id 9C08F5E02D; Tue, 9 Jun 2009 21:58:16 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.985 X-Spam-Level: X-Spam-Status: No, score=-1.985 tagged_above=-999 required=5 tests=[AWL=0.615, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id JJy16N1SDPjk; Tue, 9 Jun 2009 21:58:11 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id 7D87A5E2C4; Tue, 9 Jun 2009 21:58:11 +0200 (CEST) Message-ID: <4A2EBED3.9040300@eskk.nu> Date: Tue, 09 Jun 2009 21:58:11 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: Warren Block References: <4A2EAF98.70700@eskk.nu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 19:58:17 -0000 Warren Block skrev: > On Tue, 9 Jun 2009, Leslie Jensen wrote: > >> I've got a CD-R from a friend, (who runs windows) that I cannot mount >> on my 7.2-RELEASE system. It's readable in another windows machine. >> >> Other CD and DVD's is no problem but this one is. >> >> The error I get is: >> >> mount -t cd9660 /dev/acd0 /cdrom >> mount_cd9660: /dev/acd0: Invalid argument >> >> I've Googled and read the handbook but I think my settings are ok. > > UDF would be my first guess. If that's not it, maybe > > file -s /dev/acd0 > > can identify it. > > -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" > It says :file -s /dev/acd0 /dev/acd0: data From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:13:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6AFC1065672 for ; Tue, 9 Jun 2009 20:13:28 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 7E5278FC19 for ; Tue, 9 Jun 2009 20:13:28 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1ME7hH-0005Uv-R4 for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 20:13:27 +0000 Received: from pool-71-166-149-202.washdc.east.verizon.net ([71.166.149.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Jun 2009 20:13:27 +0000 Received: from nightrecon by pool-71-166-149-202.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Jun 2009 20:13:27 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Tue, 09 Jun 2009 16:15:09 -0400 Lines: 24 Message-ID: References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> <4A2EB6CA.6090506@eskk.nu> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-71-166-149-202.washdc.east.verizon.net Sender: news Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:13:29 -0000 Leslie Jensen wrote: [snip] > > I tried that as well, same error unfortunately > > mount -t udf /dev/acd0 /cdrom > mount_udf: /dev/acd0: Invalid argument > > So is this a new MS filesystem that no one but Vista users can read? I'm > afraid we'll properly see more of these problems unless support is added > to the mount command. > Try kldload udf.ko prior to the mount attempt. Check and see if it auto- loaded udf_iconv.ko as it should. If that one isn't present in kldstat load it too. Don't really know if the particular UDF spec/format that FreeBSD supports is the same as Vista. No Vista here to try. -Mike From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:13:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 873A910656A5 for ; Tue, 9 Jun 2009 20:13:39 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id C67288FC1F for ; Tue, 9 Jun 2009 20:13:38 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KDTff008376; Tue, 9 Jun 2009 22:13:29 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59KDTxJ008373; Tue, 9 Jun 2009 22:13:29 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:13:29 +0200 (CEST) From: Wojciech Puchar To: Leslie Jensen In-Reply-To: <4A2EAF98.70700@eskk.nu> Message-ID: References: <4A2EAF98.70700@eskk.nu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:13:39 -0000 > > The error I get is: > > mount -t cd9660 /dev/acd0 /cdrom > mount_cd9660: /dev/acd0: Invalid argument > > I've Googled and read the handbook but I think my settings are ok. > > Any suggestions? ask your friend what filesystem he use. "what is filesystem?" ;) With windoze user there are only two options - ISO9660 and UDF. Latter if he use "direct write" with CD/DVD - the option that make writable CD/DVD appear like a disk drive letter and you just copy files. Probably it's builtin since windoze XP, but i'm not sure. Unfortunately UDF support on FreeBSD basicly doesn't work. Maybe i'm wrong so try mount_udf From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:14:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E13E1065679 for ; Tue, 9 Jun 2009 20:14:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 877408FC22 for ; Tue, 9 Jun 2009 20:14:20 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KE9C4008389; Tue, 9 Jun 2009 22:14:09 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59KE9BU008386; Tue, 9 Jun 2009 22:14:09 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:14:09 +0200 (CEST) From: Wojciech Puchar To: Charlie Kester In-Reply-To: <20090609185247.GP79355@comcast.net> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> <20090609185247.GP79355@comcast.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 20:14:21 -0000 >> >> The most off-topic stuff on this list lately has been your complaining >> about stuff being off-topic. > > ...and people complaining about Woj's complaints. > > ...and my own complaining about the people complaining about Woj's > complaints. :) and the circle goes on. Who is right - doesn't matter isn't it ? :) From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:14:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A28C31065698 for ; Tue, 9 Jun 2009 20:14:58 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D604E8FC1D for ; Tue, 9 Jun 2009 20:14:57 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KEibP008396; Tue, 9 Jun 2009 22:14:44 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59KEgra008393; Tue, 9 Jun 2009 22:14:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:14:42 +0200 (CEST) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430906091147k52b410d8p47c6abb17d6e36cb@mail.gmail.com> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com> <87k53lnytc.fsf@kobe.laptop> <139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com> <139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com> <20090609173527.GB64394@gizmo.acns.msu.edu> <70C0964126D66F458E688618E1CD008A0793EF16@WADPEXV0.waddell.com> <139b44430906091147k52b410d8p47c6abb17d6e36cb@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Jerry McAllister , Gary Gatten , Giorgos Keramidas , freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 20:14:59 -0000 >> >> what exactly do you want to figure? >> > With all due respect Mr. Puchar I guess you haven't read > the OP's problem which he posted in the first message. i read, but THEN it got completely off topic and THEN i started to complain. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:16:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29AD210656C7 for ; Tue, 9 Jun 2009 20:16:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 670558FC1E for ; Tue, 9 Jun 2009 20:16:42 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KGanq008423; Tue, 9 Jun 2009 22:16:36 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59KGZG7008420; Tue, 9 Jun 2009 22:16:35 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:16:35 +0200 (CEST) From: Wojciech Puchar To: Roland Smith In-Reply-To: <20090609190728.GA76887@slackbox.xs4all.nl> Message-ID: References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Leslie Jensen Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:16:43 -0000 > Because that version by default now uses an UDF-based "live file system" > [http://en.wikipedia.org/wiki/Live_File_System]. > > Try mount_udf Does it actually work now? I tried once in FBSD 6.1 with one made under windoze and mastered DVD (which by standard requirements are UDF, and may be UDF+ISO). None worked. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:26:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2BE51065672 for ; Tue, 9 Jun 2009 20:26:37 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id AEC008FC19 for ; Tue, 9 Jun 2009 20:26:37 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id F34E65E2FA; Tue, 9 Jun 2009 22:26:36 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.99 X-Spam-Level: X-Spam-Status: No, score=-1.99 tagged_above=-999 required=5 tests=[AWL=0.610, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id GtX60WGo464F; Tue, 9 Jun 2009 22:26:32 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id 5E63F5E1A3; Tue, 9 Jun 2009 22:26:32 +0200 (CEST) Message-ID: <4A2EC578.5030604@eskk.nu> Date: Tue, 09 Jun 2009 22:26:32 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: nightrecon@verizon.net References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> <4A2EB6CA.6090506@eskk.nu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:26:38 -0000 Michael Powell skrev: > Leslie Jensen wrote: > > [snip] >> I tried that as well, same error unfortunately >> >> mount -t udf /dev/acd0 /cdrom >> mount_udf: /dev/acd0: Invalid argument >> >> So is this a new MS filesystem that no one but Vista users can read? I'm >> afraid we'll properly see more of these problems unless support is added >> to the mount command. >> > > Try kldload udf.ko prior to the mount attempt. Check and see if it auto- > loaded udf_iconv.ko as it should. If that one isn't present in kldstat load > it too. > > Don't really know if the particular UDF spec/format that FreeBSD supports is > the same as Vista. No Vista here to try. > > -Mike > > > udf.ko was already loaded. I loaded udf_iconv.ko but it didn't get any better. / From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:31:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2537A1065670 for ; Tue, 9 Jun 2009 20:31:21 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s5.blu0.hotmail.com (blu0-omc4-s5.blu0.hotmail.com [65.55.111.144]) by mx1.freebsd.org (Postfix) with ESMTP id D4AF18FC0A for ; Tue, 9 Jun 2009 20:31:20 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP7 ([65.55.111.136]) by blu0-omc4-s5.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 13:31:20 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP7.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 13:31:19 -0700 Date: Tue, 9 Jun 2009 16:31:10 -0400 From: Carmel To: FreeBSD Question Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 09 Jun 2009 20:31:19.0628 (UTC) FILETIME=[3F0618C0:01C9E941] Subject: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: carmel_ny@hotmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:31:21 -0000 I just installed FreeBSD-7.2. I attempted to burn a CD; however, when the burn completes, I receive this message: burncd: ioctl(CDRIOCFIXATE); Input/output error. This is the command line: # burncd -ev -s max fixate data notes.txt Now, if I do not use the 'fixate' command, no error message is displayed; however, the CD is not readable. I have no idea what the problem is. I have used brand new CD disks that work fine on my Windows PCs. Is there a better CD-Burner program that I could use instead? -- Carmel From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:36:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7690A106566B for ; Tue, 9 Jun 2009 20:36:01 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id B280A8FC1D for ; Tue, 9 Jun 2009 20:36:00 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KZpUs008576; Tue, 9 Jun 2009 22:35:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59KZpXu008573; Tue, 9 Jun 2009 22:35:51 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:35:50 +0200 (CEST) From: Wojciech Puchar To: Leslie Jensen In-Reply-To: <4A2EC578.5030604@eskk.nu> Message-ID: References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> <4A2EB6CA.6090506@eskk.nu> <4A2EC578.5030604@eskk.nu> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: nightrecon@verizon.net, freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:36:01 -0000 >>> >> >> Try kldload udf.ko prior to the mount attempt. Check and see if it auto- >> loaded udf_iconv.ko as it should. If that one isn't present in kldstat load >> it too. >> >> Don't really know if the particular UDF spec/format that FreeBSD supports >> is the same as Vista. No Vista here to try. >> >> -Mike >> >> >> > udf.ko was already loaded. I loaded udf_iconv.ko but it didn't get any > better. > / or maybe /usr/ports/sysutils/udfclient may be usefull From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:41:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BDC3106566B for ; Tue, 9 Jun 2009 20:41:49 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 5B1CF8FC0A for ; Tue, 9 Jun 2009 20:41:48 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n59KfhS2008638; Tue, 9 Jun 2009 22:41:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n59Kfhpa008635; Tue, 9 Jun 2009 22:41:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 9 Jun 2009 22:41:43 +0200 (CEST) From: Wojciech Puchar To: Carmel In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Question Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 20:41:49 -0000 > > burncd: ioctl(CDRIOCFIXATE); Input/output error. > > This is the command line: > > # burncd -ev -s max fixate data notes.txt are notes.txt your CD image? at least should be multiple of 2kB, and probably some minimal size. i don't know what is minimal track size but in order of 100K. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:51:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29BCB106564A for ; Tue, 9 Jun 2009 20:51:28 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id AAA388FC21 for ; Tue, 9 Jun 2009 20:51:27 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1ME8I0-0008FV-55 for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 20:51:24 +0000 Received: from pool-71-166-149-202.washdc.east.verizon.net ([71.166.149.202]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Jun 2009 20:51:24 +0000 Received: from nightrecon by pool-71-166-149-202.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 09 Jun 2009 20:51:24 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Tue, 09 Jun 2009 16:53:04 -0400 Lines: 44 Message-ID: References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> <4A2EB6CA.6090506@eskk.nu> <4A2EC578.5030604@eskk.nu> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-71-166-149-202.washdc.east.verizon.net Sender: news Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:51:28 -0000 Leslie Jensen wrote: > > > Michael Powell skrev: >> Leslie Jensen wrote: >> >> [snip] >>> I tried that as well, same error unfortunately >>> >>> mount -t udf /dev/acd0 /cdrom >>> mount_udf: /dev/acd0: Invalid argument >>> >>> So is this a new MS filesystem that no one but Vista users can read? I'm >>> afraid we'll properly see more of these problems unless support is added >>> to the mount command. >>> >> >> Try kldload udf.ko prior to the mount attempt. Check and see if it auto- >> loaded udf_iconv.ko as it should. If that one isn't present in kldstat >> load it too. >> >> Don't really know if the particular UDF spec/format that FreeBSD supports >> is the same as Vista. No Vista here to try. [snip] > udf.ko was already loaded. I loaded udf_iconv.ko but it didn't get any > better. > / A long time ago I tried a Nero add-on of some form or fashion (don't recall the exact name) for Windows that essentially allowed a CD disk to be mounted and used as a disk drive, which allowed for drag and drop in Explorer. It was buggy and crashed regularly so I removed it. I believe this functionality was rolled into the Nero software itself as a feature at some later date/version. This was also incorporated into Vista. Bottom line is this is a non-standard UDF format and since the limited UDF support in FreeBSD doesn't support it you will need to have your friend remaster the disk as a CD9660. The limited support for UDF in FreeBSD predates this feature, and likely will never have it anytime soon. -Mike From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 20:57:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A85A106566B for ; Tue, 9 Jun 2009 20:57:13 +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 6444F8FC0C for ; Tue, 9 Jun 2009 20:57:13 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 7440 invoked from network); 9 Jun 2009 20:57:12 -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 ; 9 Jun 2009 20:57:12 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id ED03E5084E; Tue, 9 Jun 2009 16:57:11 -0400 (EDT) To: carmel_ny@hotmail.com References: From: Lowell Gilbert Date: Tue, 09 Jun 2009 16:57:11 -0400 In-Reply-To: (Carmel's message of "Tue\, 9 Jun 2009 16\:31\:10 -0400") Message-ID: <444oupyvko.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: FreeBSD Question Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Question List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 20:57:13 -0000 Carmel writes: > I just installed FreeBSD-7.2. I attempted to burn a CD; however, > when the burn completes, I receive this message: > > burncd: ioctl(CDRIOCFIXATE); Input/output error. > > This is the command line: > > # burncd -ev -s max fixate data notes.txt > > Now, if I do not use the 'fixate' command, no error message is > displayed; however, the CD is not readable. I have no idea what the > problem is. I have used brand new CD disks that work fine on my Windows > PCs. > > Is there a better CD-Burner program that I could use instead? First of all, you need to make a filesystem to burn onto the CD. I find it very unlikely that you really want to burn a text file directly. I suggest you start by reading the documentation on the subject: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/creating-cds.html -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:07:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A3161065693 for ; Tue, 9 Jun 2009 21:07:17 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id 547238FC17 for ; Tue, 9 Jun 2009 21:07:16 +0000 (UTC) (envelope-from lordofhyphens@gmail.com) Received: by mail-pz0-f195.google.com with SMTP id 33so285014pzk.3 for ; Tue, 09 Jun 2009 14:07:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=EFL5OES+GLt3rSZVj3jQ4XIkb/5dSuII4+q3mLZYA/Y=; b=tVyh4y+DNg8Fy3q7ZMtdqUQKRgLZ9hkpCD+rK+yZ3Myc5CO2PvrCKZMKJh/4N8Xcqz PyTCqWSBfqyP02olkUeUAtabTSh4CSFgE6/4toC3uFNNsHClciKLFJ+asLUDkyiScCWF UR0KB6antMO4uNbbfCfd2joHeEPGks9TkFzsY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=esxBIdmnDJsK00gOIVVcFDUSmrDld+3CIeur4LRwF/7/vgxZljBJlckeIoztcZ98aT WOxNk4XYWoElSXRRR8UUu/7kRUQrl3ZRCASgW8resghwvz/nwmrVB30umnaJowFRqQnR quv3ogu2SavaiUlq2QlHDSI+BwNb+12D5S5AI= Received: by 10.142.214.12 with SMTP id m12mr240754wfg.45.1244581636878; Tue, 09 Jun 2009 14:07:16 -0700 (PDT) Received: from ?131.230.191.52? (ee122.engr.siu.edu [131.230.191.52]) by mx.google.com with ESMTPS id 20sm381764wfi.20.2009.06.09.14.07.15 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 14:07:16 -0700 (PDT) Message-ID: <4A2ECEF7.50001@gmail.com> Date: Tue, 09 Jun 2009 16:07:03 -0500 From: LoH User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Daniel Underwood References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@gmail.com> <4A2EB80C.1010102@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: PDF inventory 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, 09 Jun 2009 21:07:18 -0000 Daniel Underwood wrote: > Yes, it works fine on most PDFs. There are a couple that give me: > > $ pdftotext Sanda-JAMA-2009\ \(Prostate\ Cancer\ Treatment\).pdf > Error: Document has not the mandatory ending %EOF > > It's probably an issue with the PDF itself, not with the program. --Joseph Lenox From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:09:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C17EC106568C for ; Tue, 9 Jun 2009 21:09:16 +0000 (UTC) (envelope-from don_read@att.net) Received: from smtp105.sbc.mail.mud.yahoo.com (smtp105.sbc.mail.mud.yahoo.com [68.142.198.204]) by mx1.freebsd.org (Postfix) with SMTP id 696CE8FC23 for ; Tue, 9 Jun 2009 21:09:16 +0000 (UTC) (envelope-from don_read@att.net) Received: (qmail 82751 invoked from network); 9 Jun 2009 21:09:16 -0000 Received: from unknown (HELO localhost) (don_read@74.235.210.142 with login) by smtp105.sbc.mail.mud.yahoo.com with SMTP; 9 Jun 2009 21:09:15 -0000 X-YMail-OSG: Nbx6eEMVM1k3Fbc0UbK8k1zMOE2Xt1HlO7pwbC4xmFGSLUDPEw02LkUYvli5hf_.SWPuLLK.JR0hvYrKDEk.ekPnAZmEc2Ua_xfb_A0c6E9t57mZNK3Ka9YNwIx1QUJUCuv7yacYU06j9pIxvZvVlPa_wSepjxA.DKYNXZyT8d_dKn6jdni61gKCCaUPu.lnTgSrBR.g4YDKJPewf0YiBTsNNq7crCtusgAO0QNAENcqDDe8SrMvb0vmoI2xNFF7YXiqQp.5GDW_dbV6gRVXg0BhUArH8BJnnK5yOMc22WDpUxY- X-Yahoo-Newman-Property: ymail-3 Date: Tue, 9 Jun 2009 17:09:14 -0400 From: Don Read To: Wojciech Puchar Message-ID: <20090609170914.69c69658@att.net> In-Reply-To: References: <20090607235205.H85986@qroenaqrq.6qbyyneqvnyhc.pbz> <20090608201217.GD34213@slackbox.xs4all.nl> <20090608232056.317b509d.freebsd@edvax.de> <47254991-D6E3-4EFA-B940-09EFDE8C07A8@yahoo.fr> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.1; i386-portbld-freebsd6.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Lars Eighner , freebsd-questions@freebsd.org Subject: Re: General and specific make questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 21:09:17 -0000 On Tue, 9 Jun 2009 16:31:42 +0200 (CEST) Wojciech Puchar said: > >> Correct. I do the same here. > > > > I also do use make to produce LaTeX documents. I even `published' my > > collection of makefiles at https://gna.org/projects/bsdmakepscripts/ > > make is universal too, as many other unix tools. for example i use make > and cpp (C preprocessor) for making HTML pages :) Yep. On the old DG/SCO (spit) box I used to admin; I used a makefile to generate the Sales, Inventory, AR, AP, etc. reports every day. if SGDSR.SP out of date or missing? then run script to spool it to disk. if ARAGE.SP out of date or missing? then run script ... etc. ... -- Don Read don_read@att.net It's always darkest before the dawn. So if you are going to steal the neighbor's newspaper, that's the time to do it. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:09:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF65D106564A for ; Tue, 9 Jun 2009 21:09:18 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9ABEA8FC1A for ; Tue, 9 Jun 2009 21:09:18 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id E78985E355; Tue, 9 Jun 2009 23:09:17 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.995 X-Spam-Level: X-Spam-Status: No, score=-1.995 tagged_above=-999 required=5 tests=[AWL=0.605, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nv18LM7RgwAp; Tue, 9 Jun 2009 23:09:14 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id B0F525E33E; Tue, 9 Jun 2009 23:09:14 +0200 (CEST) Message-ID: <4A2ECF79.6070109@eskk.nu> Date: Tue, 09 Jun 2009 23:09:13 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: nightrecon@verizon.net References: <4A2EAF98.70700@eskk.nu> <20090609190728.GA76887@slackbox.xs4all.nl> <4A2EB6CA.6090506@eskk.nu> <4A2EC578.5030604@eskk.nu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 21:09:19 -0000 Michael Powell skrev: > > A long time ago I tried a Nero add-on of some form or fashion (don't recall > the exact name) for Windows that essentially allowed a CD disk to be mounted > and used as a disk drive, which allowed for drag and drop in Explorer. It > was buggy and crashed regularly so I removed it. I believe this > functionality was rolled into the Nero software itself as a feature at some > later date/version. This was also incorporated into Vista. > > Bottom line is this is a non-standard UDF format and since the limited UDF > support in FreeBSD doesn't support it you will need to have your friend > remaster the disk as a CD9660. The limited support for UDF in FreeBSD > predates this feature, and likely will never have it anytime soon. > > -Mike > > Thank you all. I get the picture! I'll make my friend aware of "filesystems" and ask him to make readable CD's :-) /Leslie From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:13:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E26201065692 for ; Tue, 9 Jun 2009 21:13:08 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-pz0-f195.google.com (mail-pz0-f195.google.com [209.85.222.195]) by mx1.freebsd.org (Postfix) with ESMTP id B91C18FC21 for ; Tue, 9 Jun 2009 21:13:08 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by pzk33 with SMTP id 33so288274pzk.3 for ; Tue, 09 Jun 2009 14:13:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=CQmhqaPHbUSdfAfmm1BxTsMuUkQ3pCEFhATzpGi19Ns=; b=jc4Ql/Ooh/uiEaQau968vZ9Xkk/5igD1qQkkm0dfNSctNt7TRKlNloE7KmW00dm9xw MnVtidSuDlDrdhPxMt9wxb5ndUefNIoggymwhFmxloiOhejkiz5VRwSymdTDiniyRFYs /LToLp7/ur5SEm3Pk0B2qO5Ax3v02qVJGtw5w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=E1S1xtq9n70lh0l8FpTWoIGmq6Xyw/pq1PVJzGas+JZHLLZgSWtcdvWeBFnfe9AbIG 0VhjIQZsBppDl92mpaBubrBA3safNq/+0tVoEWSYZyKA4iW7YuEwckUJnr0B1/bqs3+9 KPo9oV6p3yF8XWR3/DxGt9b/ViCPLW+sMuUsU= MIME-Version: 1.0 Received: by 10.220.74.83 with SMTP id t19mr795350vcj.98.1244581987830; Tue, 09 Jun 2009 14:13:07 -0700 (PDT) In-Reply-To: References: Date: Tue, 9 Jun 2009 15:13:07 -0600 Message-ID: From: Tim Judd To: carmel_ny@hotmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Question Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 21:13:09 -0000 On 6/9/09, Carmel wrote: > I just installed FreeBSD-7.2. I attempted to burn a CD; however, > when the burn completes, I receive this message: > > burncd: ioctl(CDRIOCFIXATE); Input/output error. > > This is the command line: > > # burncd -ev -s max fixate data notes.txt > > Now, if I do not use the 'fixate' command, no error message is > displayed; however, the CD is not readable. I have no idea what the > problem is. I have used brand new CD disks that work fine on my Windows > PCs. > > Is there a better CD-Burner program that I could use instead? > > -- > Carmel do you get the contents of notes.txt when you cat /dev/acd0 You may get some more header info of the CD before the notes.txt is displayed. All you told it to do is to burn, verbatim the file notes.txt without any filesystem onto the CD. All CD/CDFS drivers, op systems, etc use a filesystem on the CD. So the file may be there, but not in a filesystem. mkisofs creates the ISO/CDFS filesystem, to various "ISO standards" so you can burn it on CD. From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:25:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8593106566B for ; Tue, 9 Jun 2009 21:25:52 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 997088FC23 for ; Tue, 9 Jun 2009 21:25:52 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id 49D5C16C00FC; Tue, 9 Jun 2009 23:25:51 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n59LPj9T001901; Tue, 9 Jun 2009 23:25:45 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 9 Jun 2009 23:25:45 +0200 From: Polytropon To: carmel_ny@hotmail.com Message-Id: <20090609232545.7158a882.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Carmel , FreeBSD Question Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 21:25:53 -0000 On Tue, 9 Jun 2009 16:31:10 -0400, Carmel wrote: > I just installed FreeBSD-7.2. I attempted to burn a CD; however, > when the burn completes, I receive this message: > > burncd: ioctl(CDRIOCFIXATE); Input/output error. > > This is the command line: > > # burncd -ev -s max fixate data notes.txt As far as I know, the command should be like # burncd -ev -s max data notes.txt fixate I don't know if the order matters. Furthermore: You know that you are recording notes.txt directly onto the CD and omitting the ISO-9660 filesystem? > Now, if I do not use the 'fixate' command, no error message is > displayed; however, the CD is not readable. Yes, it is not fixated. > I have no idea what the > problem is. I have used brand new CD disks that work fine on my Windows > PCs. I had similar problems with burncd a long while ago, and I dropped it completely in favour of SCSI / CAM based tools. > Is there a better CD-Burner program that I could use instead? There is. Install cdrecord and / or cdrdao for CDs, and growisofs for DVDs. Loat atapicam kernel module. Use it. Be happy. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:27:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10D031065670 for ; Tue, 9 Jun 2009 21:27:25 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id BEF2B8FC19 for ; Tue, 9 Jun 2009 21:27:24 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id F015216C01C3; Tue, 9 Jun 2009 23:27:23 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n59LRNqD001905; Tue, 9 Jun 2009 23:27:23 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 9 Jun 2009 23:27:23 +0200 From: Polytropon To: LoH Message-Id: <20090609232723.71eae3a3.freebsd@edvax.de> In-Reply-To: <4A2ECEF7.50001@gmail.com> References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@gmail.com> <4A2EB80C.1010102@gmail.com> <4A2ECEF7.50001@gmail.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Daniel Underwood , freebsd-questions@freebsd.org Subject: Re: PDF inventory software X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 21:27:25 -0000 On Tue, 09 Jun 2009 16:07:03 -0500, LoH wrote: > Daniel Underwood wrote: > > Yes, it works fine on most PDFs. There are a couple that give me: > > > > $ pdftotext Sanda-JAMA-2009\ \(Prostate\ Cancer\ Treatment\).pdf > > Error: Document has not the mandatory ending %EOF > > > > > > It's probably an issue with the PDF itself, not with the program. Check % file Sanda-JAMA-2009\ \(Prostate\ Cancer\ Treatment\).pdf Just to be sure it REALLY is a PDF file - and not a PPT with wrong name. :-) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:30:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 978A810656CA for ; Tue, 9 Jun 2009 21:30:42 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.103.93]) by mx1.freebsd.org (Postfix) with ESMTP id 4E68A8FC14 for ; Tue, 9 Jun 2009 21:30:41 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (localhost.cis.okstate.edu [127.0.0.1]) by dc.cis.okstate.edu (8.14.2/8.13.8) with ESMTP id n59LUU7E000141 for ; Tue, 9 Jun 2009 16:30:30 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <139.1244583030.1@dc.cis.okstate.edu> Date: Tue, 09 Jun 2009 16:30:30 -0500 From: Martin McCormick Subject: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 21:30:44 -0000 Which signal is sent to a process when one types ^z or Control-z? It appears to be SIGSTOP and according to signal's man page, this is one signal you can't catch. I have an application with a signal handler I wrote and I am trying to discourage folks typing CTRL-Z if it hangs because that does make it seem to go away but it is really still hanging around and any lock files it created are not removed. The effect is about as bad as if it crashed and left lock files. Normally, CTRL-c makes it remove the locks before exiting. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:42:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BF52106568D for ; Tue, 9 Jun 2009 21:42:24 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 3E5E38FC28 for ; Tue, 9 Jun 2009 21:42:23 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 121B93CC96; Tue, 9 Jun 2009 23:42:20 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n59LgF0f002029; Tue, 9 Jun 2009 23:42:15 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Tue, 9 Jun 2009 23:42:15 +0200 From: Polytropon To: Martin McCormick Message-Id: <20090609234215.32201c06.freebsd@edvax.de> In-Reply-To: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 21:42:25 -0000 On Tue, 09 Jun 2009 16:30:30 -0500, Martin McCormick wrote: > Which signal is sent to a process when one types ^z or > Control-z? It appears to be SIGSTOP and according to signal's > man page, this is one signal you can't catch. You can check the setting with this command: % stty -a cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = ; eol2 = ; erase = ^H; erase2 = ^H; intr = ^C; kill = ^U; lnext = ^V; min = 1; quit = ^\; reprint = ^R; start = ^Q; status = ^T; stop = ^S; susp = ^Z; time = 0; werase = ^W; ^^^^^^^^^ This entry indicates that ^Z sends the suspend signal. According to % stty -g ... status=14:stop=13:susp=1a:time=0:werase=17: ... ^^^^^^^ and % man 3 signal says that 17 SIGSTOP stop process stop (cannot be caught or ignored) And I think that 17 (decimal) is refered to as 1a (hexadecimal) in the previous stty command. > I have an application with a signal handler I wrote and > I am trying to discourage folks typing CTRL-Z if it hangs > because that does make it seem to go away but it is really still > hanging around and any lock files it created are not removed. > The effect is about as bad as if it crashed and left lock files. > Normally, CTRL-c makes it remove the locks before exiting. If I read the information above correctly, ^Z cannot be caught. (I'm always interested in statements that correct me if I'm wrong.) -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 21:51:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68BD51065676 for ; Tue, 9 Jun 2009 21:51:41 +0000 (UTC) (envelope-from fbsdlists@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id EE4C98FC1E for ; Tue, 9 Jun 2009 21:51:40 +0000 (UTC) (envelope-from fbsdlists@gmail.com) Received: by ewy8 with SMTP id 8so314580ewy.43 for ; Tue, 09 Jun 2009 14:51:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ofqxukdw1qcQ9OmsULWvXb0tHSTOEG/7F1ZvMY/RplI=; b=rv8tb6+lsgPFz4Le1lBSP99x3o5OO5V4A6bWyh3ne0oa5BnBSI4ZSm277hQ0Me8PYi sxluXgF9TB+AqXVcE0ePeNXWoJ41dI9CwPHDwKU/WLHhCbutOnwowow0oIlciWiCfw0W 4KhsnnptzVLN/ILnDeX/vJIClDoZ+VzabHyT8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=RvAJWbsr6gWthzgCLDTBbkFygPIP2EJYd81vip+U+9mlzhTfgrFFGDgCV8RVKfXbLE YcWl7IO+mMPNzhCaEGJJoa8Bu3lE7tNUybprj4vTFOMQnRRy8bJUNhjeekiWvAwM7Enr 916l66uC5xQOn4dgQXewqsVUFkN59bAYEJG2M= MIME-Version: 1.0 Received: by 10.216.72.68 with SMTP id s46mr217960wed.68.1244584299917; Tue, 09 Jun 2009 14:51:39 -0700 (PDT) In-Reply-To: References: Date: Tue, 9 Jun 2009 17:51:39 -0400 Message-ID: <54db43990906091451g6b149095pd8c0265f9fd0dc33@mail.gmail.com> From: Bob Johnson To: carmel_ny@hotmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: FreeBSD Question Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 21:51:41 -0000 On 6/9/09, Carmel wrote: > I just installed FreeBSD-7.2. I attempted to burn a CD; however, > when the burn completes, I receive this message: > > burncd: ioctl(CDRIOCFIXATE); Input/output error. > I have been getting that error message on and off for some time (years) now. The CD comes out ok, though, so I think it is failing after the fixate process is complete. Without a filesystem, you can still get your file back with "dd if=/dev/acd0 of=newfilename.txt bs=2048" where of course newfilename.txt can be whatever you want the new copy to be called. The other issues raised by your post (no filesystem, other software) have been addressed by others, but fwiw I use mkisofs to build the filesystem, and then burncd to burn it to the cd. For storing data on DVDs, growisofs is much more convenient, install it as part of sysutils/dvd+rw-tools. -- Bob Johnson fbsdlists@gmail.com From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 22:01:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CE33106566B for ; Tue, 9 Jun 2009 22:01:28 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 0A45E8FC0C for ; Tue, 9 Jun 2009 22:01:27 +0000 (UTC) (envelope-from djuatdelta@gmail.com) Received: by ewy8 with SMTP id 8so320929ewy.43 for ; Tue, 09 Jun 2009 15:01:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=7yusMGRrMHG/uaEwPnKKTUrEzoDOQrUx/IGWvXBfKyQ=; b=aAE7rFnhEFXn3j/rObl1qb4pWwErVg3PxFThfX6ITlqCU2SyzxvxLhq+QqPOGRO7co +WoL+6dMPfHRtz1EuKv3S24ai2FfRDbf1e/i7yHiKajawU6Vubdan6WqXzzG9mwjuvfP RjKBCf914HXqEJirjirS51hvmokttrbYET2fE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Bl23BfkewhAZsgGjWAI5AKgORlYTBxWW+AETbrxQjjt+L68WvHFj5BpeRjryUL5AJw s3lcvNPwYrJ7EBrmiU5ePUgzZWt2Z6XeYxceIij8diphNZbPoH+cjOpqsrSPF67qIEcc 3LEop3xY/W5ng2RrqP1+b7XeLcRjKPDsVPuvY= MIME-Version: 1.0 Received: by 10.210.91.7 with SMTP id o7mr2825517ebb.32.1244584887193; Tue, 09 Jun 2009 15:01:27 -0700 (PDT) In-Reply-To: <20090609232723.71eae3a3.freebsd@edvax.de> References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> <4A2EA7F0.60501@gmail.com> <4A2EB80C.1010102@gmail.com> <4A2ECEF7.50001@gmail.com> <20090609232723.71eae3a3.freebsd@edvax.de> Date: Tue, 9 Jun 2009 18:01:27 -0400 Message-ID: From: Daniel Underwood To: Polytropon Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: LoH , freebsd-questions@freebsd.org Subject: Re: PDF inventory 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, 09 Jun 2009 22:01:28 -0000 I retrieved a fresh copy of the error-causing PDF, and now all is well. Thanks for all the excellent help! From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 22:07:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D63A91065670 for ; Tue, 9 Jun 2009 22:07:31 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email1.allantgroup.com (email1.emsphone.com [199.67.51.115]) by mx1.freebsd.org (Postfix) with ESMTP id 8CB0E8FC13 for ; Tue, 9 Jun 2009 22:07:31 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email1.allantgroup.com (8.14.0/8.14.0) with ESMTP id n59M7UPH045217 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Jun 2009 17:07:30 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id n59M7UGV079250 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Jun 2009 17:07:30 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id n59M7UFL079249; Tue, 9 Jun 2009 17:07:30 -0500 (CDT) (envelope-from dan) Date: Tue, 9 Jun 2009 17:07:30 -0500 From: Dan Nelson To: Polytropon Message-ID: <20090609220730.GD56070@dan.emsphone.com> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> <20090609234215.32201c06.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090609234215.32201c06.freebsd@edvax.de> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: ClamAV version 0.94.1, clamav-milter version 0.94.1 on email1.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email1.allantgroup.com [199.67.51.78]); Tue, 09 Jun 2009 17:07:30 -0500 (CDT) X-Scanned-By: MIMEDefang 2.45 Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 22:07:32 -0000 In the last episode (Jun 09), Polytropon said: > On Tue, 09 Jun 2009 16:30:30 -0500, Martin McCormick wrote: > > Which signal is sent to a process when one types ^z or Control-z? It > > appears to be SIGSTOP and according to signal's man page, this is one > > signal you can't catch. ^Z sends a SIGTSTP, which can be caught (or ignored, in your case). 18 SIGTSTP stop process stop signal generated from keyboard > According to > > % stty -g > ... status=14:stop=13:susp=1a:time=0:werase=17: ... ^^^^^^^ > 17 SIGSTOP stop process stop (cannot be caught or > ignored) > > And I think that 17 (decimal) is refered to as 1a (hexadecimal) > in the previous stty command. 1a hex just refers to the control code itself (^Z), and doesn't indicate which signal is sent. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 22:15:48 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D98611065673 for ; Tue, 9 Jun 2009 22:15:48 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from ch-smtp01.sth.basefarm.net (ch-smtp01.sth.basefarm.net [80.76.149.212]) by mx1.freebsd.org (Postfix) with ESMTP id 93EDB8FC16 for ; Tue, 9 Jun 2009 22:15:48 +0000 (UTC) (envelope-from erikt@midgard.homeip.net) Received: from c83-255-48-78.bredband.comhem.se ([83.255.48.78]:64605 helo=falcon.midgard.homeip.net) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.69) (envelope-from ) id 1ME9bP-00072T-4p for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 00:15:33 +0200 Received: (qmail 67743 invoked from network); 10 Jun 2009 00:15:27 +0200 Received: from owl.midgard.homeip.net (10.1.5.7) by falcon.midgard.homeip.net with ESMTP; 10 Jun 2009 00:15:27 +0200 Received: (qmail 43729 invoked by uid 1001); 10 Jun 2009 00:15:27 +0200 Date: Wed, 10 Jun 2009 00:15:27 +0200 From: Erik Trulsson To: Polytropon Message-ID: <20090609221527.GA43458@owl.midgard.homeip.net> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> <20090609234215.32201c06.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090609234215.32201c06.freebsd@edvax.de> User-Agent: Mutt/1.5.19 (2009-01-05) X-Originating-IP: 83.255.48.78 X-Scan-Result: No virus found in message 1ME9bP-00072T-4p. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1ME9bP-00072T-4p c87e6947e8d7d854eb6f21c4cad1555a Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 22:15:49 -0000 On Tue, Jun 09, 2009 at 11:42:15PM +0200, Polytropon wrote: > On Tue, 09 Jun 2009 16:30:30 -0500, Martin McCormick wrote: > > Which signal is sent to a process when one types ^z or > > Control-z? It appears to be SIGSTOP and according to signal's > > man page, this is one signal you can't catch. > > You can check the setting with this command: > > % stty -a > cchars: discard = ^O; dsusp = ^Y; eof = ^D; eol = ; > eol2 = ; erase = ^H; erase2 = ^H; intr = ^C; kill = ^U; > lnext = ^V; min = 1; quit = ^\; reprint = ^R; start = ^Q; > status = ^T; stop = ^S; susp = ^Z; time = 0; werase = ^W; > ^^^^^^^^^ > > This entry indicates that ^Z sends the suspend signal. Not quite. It indicates (according to stty(1)) that ^Z generates the SUSP character. The termios(4) manpage (referenced by stty(1)) says that SUSP If the ISIG flag is enabled, receipt of the SUSP character causes a SIGTSTP signal to be sent to all processes in the foreground process group for which the terminal is the controlling terminal, and the SUSP character is discarded when processed. So it appears to be SIGTSTP which is sent by typing ^Z, which agrees with signal(3) where the SIGTSTP signal is described as "stop signal generated from keyboard" -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 22:17:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6BB4106566C for ; Tue, 9 Jun 2009 22:17:15 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 84FE88FC1D for ; Tue, 9 Jun 2009 22:17:15 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id A50843CDA4; Wed, 10 Jun 2009 00:17:13 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n59MH7HN002251; Wed, 10 Jun 2009 00:17:08 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Wed, 10 Jun 2009 00:17:07 +0200 From: Polytropon To: Dan Nelson Message-Id: <20090610001707.c269f7a0.freebsd@edvax.de> In-Reply-To: <20090609220730.GD56070@dan.emsphone.com> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> <20090609234215.32201c06.freebsd@edvax.de> <20090609220730.GD56070@dan.emsphone.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 22:17:16 -0000 On Tue, 9 Jun 2009 17:07:30 -0500, Dan Nelson wrote: > ^Z sends a SIGTSTP, which can be caught (or ignored, in your case). > > 18 SIGTSTP stop process stop signal generated from > keyboard What is the way to get this information? -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 22:27:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DF071065686 for ; Tue, 9 Jun 2009 22:27:32 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 1C3D48FC12 for ; Tue, 9 Jun 2009 22:27:32 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 4B5F63CD87; Wed, 10 Jun 2009 00:27:30 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n59MRPu4002306; Wed, 10 Jun 2009 00:27:25 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Wed, 10 Jun 2009 00:27:24 +0200 From: Polytropon To: Erik Trulsson Message-Id: <20090610002724.cf3e3831.freebsd@edvax.de> In-Reply-To: <20090609221527.GA43458@owl.midgard.homeip.net> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> <20090609234215.32201c06.freebsd@edvax.de> <20090609221527.GA43458@owl.midgard.homeip.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 22:27:32 -0000 On Wed, 10 Jun 2009 00:15:27 +0200, Erik Trulsson wrote: > Not quite. It indicates (according to stty(1)) that ^Z generates the > SUSP character. > The termios(4) manpage (referenced by stty(1)) says that > > SUSP If the ISIG flag is enabled, receipt of the SUSP character causes > a SIGTSTP signal to be sent to all processes in the foreground > process group for which the terminal is the controlling terminal, > and the SUSP character is discarded when processed. > > So it appears to be SIGTSTP which is sent by typing ^Z, which agrees with > signal(3) where the SIGTSTP signal is described as "stop signal generated > from keyboard" That's highly interesting. Thanks for the pointer to termios man page. I'm always surprised how well intended things work in FreeBSD. =^_^= -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 23:19:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47804106564A for ; Tue, 9 Jun 2009 23:19:13 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from outbound-mail-117.bluehost.com (outbound-mail-117.bluehost.com [69.89.22.17]) by mx1.freebsd.org (Postfix) with SMTP id 174158FC13 for ; Tue, 9 Jun 2009 23:19:12 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 5000 invoked by uid 0); 9 Jun 2009 23:19:12 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by outboundproxy3.bluehost.com with SMTP; 9 Jun 2009 23:19:12 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=apotheon.com; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-Identified-User; b=iwUPX71eZjAbrMTW54pofE3qEPHtOdL0iRWDNPNHTaXaQe22p7yRuvOI6Yz22pX+c8WPbXs2vZRFRHl/Y9cnnmorG21Fmh6Eya5CQtNvHFy5kl8ZR5sVFObto0r2/WxC; Received: from c-24-8-180-234.hsd1.co.comcast.net ([24.8.180.234] helo=kokopelli.hydra) by box543.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MEAb1-0003ZH-TL for freebsd-questions@freebsd.org; Tue, 09 Jun 2009 17:19:12 -0600 Received: by kokopelli.hydra (sSMTP sendmail emulation); Tue, 9 Jun 2009 17:13:47 -0600 Date: Tue, 9 Jun 2009 17:13:47 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20090609231347.GA57940@kokopelli.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> <20090608205549.GA53856@kokopelli.hydra> <20090608173112.13bbc8a1@scorpio> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <20090608173112.13bbc8a1@scorpio> User-Agent: Mutt/1.4.2.3i X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.org} {sentby:smtp auth 24.8.180.234 authed with ren@apotheon.org} Subject: Re: ISP questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 23:19:13 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 08, 2009 at 05:31:12PM -0400, Jerry wrote: > On Mon, 8 Jun 2009 14:55:49 -0600 > Chad Perrin wrote: >=20 > >I try to learn from others' mistakes to reduce the likelihood that I > >will be forced to learn from my own. If you really want to learn from > >your own mistakes, though, go ahead and ignore the instances where > >GoDaddy has screwed over other customers, and just keep using it in > >willful ignorance until the day when your luck changes. I guess > >that's your prerogative. >=20 > I believe you are over generalizing it. I have had two occasions where > FBSD crashed and I lost a considerable amount of data. According to > your statement, I should just say screw FBSD and move on to another OS. FreeBSD doesn't have volition. Using FreeBSD isn't a matter of trusting the software's intentions. GoDaddy executives and managers *do* have volition. Using GoDaddy *is* a matter of trusting the executives' and managers' intentions. Next, we'll be comparing apples and . . . windows, I guess, since oranges at least are fruit. Pun intended. >=20 > Seriously though, if they have X number of clients and only .1% of them > have experienced a problem, is there really a problem? I don't know > since I don't have statistics on GoDaddy. Obviously you do. Would you > be kind enough to post them so I could inspect them myself. If 0.111% of customers are unfortunate enough to end up with something entirely beyond their control causing something to happen that can be imagined to be a violation of GoDaddy's partially undisclosed policies, and 0.1% of GoDaddy customers end up getting their domain names held hostage to the tune of several hundred dollars as a result of those incidents entirely beyond their control, that means that about 90% of people GoDaddy has any way of exploiting, extorting, or otherwise screwing over in a manner defensible in court are getting exactly that treatment. (Note that I'm making up numbers here, just like you.) So . . . you're basically gambling that you'll never be the victim of circumstances that would allow GoDaddy to figure it can get away with screwing you over. I prefer to gamble on other things. Your mileage may vary. --=20 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkou7KsACgkQ9mn/Pj01uKUjBQCg04EpJHfcrlsvxg9zRKuy7o1Y KV8AoNlM2Y1afKdrLbzsrHhao5pNtW/H =HCLC -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 23:19:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 727581065728 for ; Tue, 9 Jun 2009 23:19:24 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from out2.smtp.messagingengine.com (out2.smtp.messagingengine.com [66.111.4.26]) by mx1.freebsd.org (Postfix) with ESMTP id 467E68FC12 for ; Tue, 9 Jun 2009 23:19:24 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from compute1.internal (compute1.internal [10.202.2.41]) by out1.messagingengine.com (Postfix) with ESMTP id 9AA5D35EBBA; Tue, 9 Jun 2009 19:19:23 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Tue, 09 Jun 2009 19:19:23 -0400 X-Sasl-enc: HVGT/tEmUfd91GhtXsDrBw8ZF4Wf3KuSxIEBJ/u5W6ng 1244589563 Received: from hagrid.ewd.goldmark.org (n114.ewd.goldmark.org [72.64.118.114]) by mail.messagingengine.com (Postfix) with ESMTPSA id 292613A704; Tue, 9 Jun 2009 19:19:23 -0400 (EDT) Message-Id: <0F5E9DB6-2342-46E0-B5AB-7BB70837FEF6@goldmark.org> From: Jeffrey Goldberg To: Gary Kline In-Reply-To: <20090609001529.GA7166@thought.org> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 9 Jun 2009 18:19:21 -0500 References: <20090609001529.GA7166@thought.org> X-Mailer: Apple Mail (2.935.3) Cc: FreeBSD Questions Subject: Re: flaw found [in my own program] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 23:19:24 -0000 On Jun 8, 2009, at 7:15 PM, Gary Kline wrote: > not surprisingly, i found a fla w in my getc(fp) program that > tried to read past "" ... the example i added to my > test file was simply the 2 bytes "<" and "?". so if you have a > stray > > " > with a matching close case, the binary hangs on a read. > so, again, can anybody suggest a better example, in C, to get > past two delimiters? Back in the days when I taught introductory C programming, one the the early homework assignments was to write a filter that would strip C- style comments. As a follow-up they had to do this allowing for nested comments. I don't think I can recover things from the back-up tapes that I have for that corse material, but the approach I directed people toward was to have a variable, let's call it status that records one of four states OUTSIDE /* just reading normally, not in the material to be striped */ AFTER_LT /* You've read in a '<' and are looking for a '?' */ INSIDE /* You are in the material to be stripped */ AFTER_Q /* You are in the material to be stripped and have just read a '?' */ then use a switch statement on the character you are reading in. switch(c) { case '<': ... case '?': ... case '>': ... case EOF: ... default: ... } In each case, you look at the current state, decide whether the write 'c' to output and what state to change to. The most common mistake students would make would be to forget the EOF case. I suspect that you may have done the same. -j From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 23:24:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 965A810656CF for ; Tue, 9 Jun 2009 23:24:40 +0000 (UTC) (envelope-from frank@esperance-linux.co.uk) Received: from mailout.zetnet.co.uk (mailout.zetnet.co.uk [194.247.47.231]) by mx1.freebsd.org (Postfix) with ESMTP id 4D3C58FC13 for ; Tue, 9 Jun 2009 23:24:40 +0000 (UTC) (envelope-from frank@esperance-linux.co.uk) Received: from irwell.zetnet.co.uk ([194.247.47.48] helo=zetnet.co.uk) by mailout.zetnet.co.uk with esmtp (Exim 4.63) (envelope-from ) id 1MEAgF-0004xF-Ow; Wed, 10 Jun 2009 00:24:35 +0100 Received: from melon.esperance-linux.co.uk (54-144.adsl.zetnet.co.uk [194.247.54.144]) by zetnet.co.uk (8.14.1/8.14.1/Debian-9) with ESMTP id n59NOZcc027934; Wed, 10 Jun 2009 00:24:35 +0100 Received: by melon.esperance-linux.co.uk (Postfix, from userid 1001) id D04F9FCA505; Wed, 10 Jun 2009 00:24:29 +0100 (BST) Date: Wed, 10 Jun 2009 00:24:29 +0100 From: Frank Shute To: Anton Shterenlikht Message-ID: <20090609232429.GA14221@melon.esperance-linux.co.uk> Mail-Followup-To: Anton Shterenlikht , python@freebsd.org, freebsd-questions@freebsd.org References: <20090609101642.GA38980@mech-cluster238.men.bris.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090609101642.GA38980@mech-cluster238.men.bris.ac.uk> User-Agent: Mutt/1.4.2.3i X-Face: *}~{PHnDTzvXPe'wl_-f%!@+r5; VLhb':*DsX%wEOPg\fDrXWQJf|2\,92"DdS%63t*BHDyQ|OWo@Gfjcd72eaN!4%NE{0]p)ihQ1MyFNtWL X-Operating-System: FreeBSD 6.4-RELEASE-p2 i386 X-Organisation: 'http://www.shute.org.uk/' X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.1.7 (zetnet.co.uk [194.247.46.1]); Wed, 10 Jun 2009 00:24:35 +0100 (BST) Cc: python@freebsd.org, freebsd-questions@freebsd.org Subject: Re: python upgrade 2.5 to 2.6 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Frank Shute List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 23:24:41 -0000 On Tue, Jun 09, 2009 at 11:16:42AM +0100, Anton Shterenlikht wrote: > > I use portmaster. What shall I use instead of pkg_which? > > PORTUPGRADE_CMD?= ${LOCALBASE}/sbin/portmaster > ^^^^^^^^^ changed to portmaster > PKG_WHICH_CMD?= ${LOCALBASE}/sbin/pkg_which > ^^^^^^^^^ this I haven't got > > many thanks > anton It seems that: pkg_info -q -W should produce similar output and pkg_info(1) is part of base. I guess you might need to change your Makefile to use a variable like PKG_WHICH_CMD_ARGS also. Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html From owner-freebsd-questions@FreeBSD.ORG Tue Jun 9 23:40:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEC72106564A for ; Tue, 9 Jun 2009 23:40:44 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id 6DFEA8FC15 for ; Tue, 9 Jun 2009 23:40:44 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n59Nfs9n089176; Tue, 9 Jun 2009 16:41:54 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Tue, 9 Jun 2009 16:40:39 -0700 (PDT) Date: Tue, 9 Jun 2009 16:40:39 -0700 From: Gary Kline To: Jeffrey Goldberg Message-ID: <20090609234039.GB11209@thought.org> References: <20090609001529.GA7166@thought.org> <0F5E9DB6-2342-46E0-B5AB-7BB70837FEF6@goldmark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0F5E9DB6-2342-46E0-B5AB-7BB70837FEF6@goldmark.org> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: FreeBSD Questions Subject: Re: flaw found [in my own program] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 09 Jun 2009 23:40:45 -0000 On Tue, Jun 09, 2009 at 06:19:21PM -0500, Jeffrey Goldberg wrote: > On Jun 8, 2009, at 7:15 PM, Gary Kline wrote: > > > not surprisingly, i found a fla w in my getc(fp) program that > > tried to read past "" ... the example i added to my > > test file was simply the 2 bytes "<" and "?". so if you have a > > stray > > > > " > > > with a matching close case, the binary hangs on a read. > > so, again, can anybody suggest a better example, in C, to get > > past two delimiters? > > Back in the days when I taught introductory C programming, one the the > early homework assignments was to write a filter that would strip C- > style comments. As a follow-up they had to do this allowing for > nested comments. > > I don't think I can recover things from the back-up tapes that I have > for that corse material, but the approach I directed people toward was > to have a variable, let's call it status that records one of four states > > OUTSIDE /* just reading normally, not in the material to be striped > */ > AFTER_LT /* You've read in a '<' and are looking for a '?' */ > INSIDE /* You are in the material to be stripped */ > AFTER_Q /* You are in the material to be stripped and have just > read a '?' */ > > then use a switch statement on the character you are reading in. > > switch(c) { > case '<': ... > case '?': ... > case '>': ... > case EOF: ... > default: ... > } > > In each case, you look at the current state, decide whether the write > 'c' to output and what state to change to. The most common mistake > students would make would be to forget the EOF case. I suspect that > you may have done the same. > > -j :-) yup, this is definitely better that initial approach. i have improved my function to return a 1 after "?", 2 after a "?>" and a 3 if both are found. i still think my function hangs in an loop if only the opening php token is found. thanks for the idea! gary > -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org For FBSD list: http://transfinite.thought.org/slicejourney.php The 4.91a release of Jottings: http://jottings.thought.org/index.php From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 00:19:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1525110656D5 for ; Wed, 10 Jun 2009 00:19:04 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [64.156.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 14B0F8FC14 for ; Wed, 10 Jun 2009 00:19:03 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from eggman.experts-exchange.com (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with ESMTP id 99EEA4A5414F for ; Tue, 9 Jun 2009 17:19:02 -0700 (PDT) Received: by eggman.experts-exchange.com (sSMTP sendmail emulation); Tue, 9 Jun 2009 17:19:01 -0700 Date: Tue, 9 Jun 2009 17:19:01 -0700 From: Jason Helfman To: freebsd-questions@freebsd.org Message-ID: <20090610001900.GC57804@eggman.experts-exchange.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Operating-System: FreeBSD 7.1-RELEASE-p4 GENERIC X-Living-The-Dream: I love the SLO Life! User-Agent: Mutt/1.5.18 (2008-05-17) Subject: kernel compiling 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: Wed, 10 Jun 2009 00:19:05 -0000 Hi. I am trying to figure out how when making the kernel that the number is incremented. For example my system reads: FreeBSD 7.2-RELEASE #4 I have my own kernel that works, however I would like to have it read this: FreeBSD 7.2-RELEASE #0 Is there a way to resolve this? Thanks! Jason From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 00:51:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EBF41065674 for ; Wed, 10 Jun 2009 00:51:11 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id E887D8FC0C for ; Wed, 10 Jun 2009 00:51:10 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (mailhost2.waddell.com [10.1.10.30]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n5A0oPmw002252; Tue, 9 Jun 2009 19:50:40 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id F29948A5D4; Tue, 9 Jun 2009 19:50:24 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost2.waddell.com (Postfix) with ESMTP id DAE1D8A5D2; Tue, 9 Jun 2009 19:50:24 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 9 Jun 2009 19:50:24 -0500 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, 9 Jun 2009 19:50:23 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF1F@WADPEXV0.waddell.com> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: OT - help w configure, make, etc. thread-index: AcnpPyoSBG2kr3u9R1C/x0RQH+n5pAAJI27Q References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com><87k53lnytc.fsf@kobe.laptop><139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com><139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com><20090609173527.GB64394@gizmo.acns.msu.edu><20090609185247.GP79355@comcast.net> From: "Gary Gatten" To: "Wojciech Puchar" , "Charlie Kester" X-OriginalArrivalTime: 10 Jun 2009 00:50:24.0484 (UTC) FILETIME=[707AE240:01C9E965] Cc: freebsd-questions@freebsd.org Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 00:51:11 -0000 Several people have contacted me privately so I'll be in touch with them as needed. I've literally worked on this ALL day (and yesterday) and hacked my way past a number of errors, but STILL don't have a working app. Although I have learned a few useful things, I'm about ready to smash something/someone, so I guess it's time to find a real *nix admin that could prolly fix this in 10 minutes instead of 10 days. If I knew the various scripting / programming stuff better I'm sure I could fix it quickly as well, but that's not my specialty. Guess it's time to learn more - but not now! Thanks to those that offered help, and sorry to start yet another flame war. G PS: I DID actually find something similar to "ports" for Solaris: opencsw.org / blastwave.org. I guess there's some feuding between some of the original dudes, but nonetheless it's nice to have something *close* to ports to work with! Especially when every d@mn developer builds dependencies to another dozen apps for every simple function! I'm ALL about reusing code, but for GAWDS sake, does one REALLY need to link 1,297 (exaggerating) libraries to get the time/date or do simple arithmetic? If it's "substantial" link it, but if it's 10 lines of code, PLEASE just embed it! OK, ranting over - Later! -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Wojciech Puchar Sent: Tuesday, June 09, 2009 3:14 PM To: Charlie Kester Cc: freebsd-questions@freebsd.org Subject: Re: OT - help w configure, make, etc. >>=20 >> The most off-topic stuff on this list lately has been your complaining >> about stuff being off-topic.=20 > > ...and people complaining about Woj's complaints. > > ...and my own complaining about the people complaining about Woj's > complaints. :) and the circle goes on. Who is right - doesn't matter isn't it ? :) _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 02:05:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D361E106566C for ; Wed, 10 Jun 2009 02:05:10 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.103.93]) by mx1.freebsd.org (Postfix) with ESMTP id A3DB38FC2E for ; Wed, 10 Jun 2009 02:05:10 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (localhost.cis.okstate.edu [127.0.0.1]) by dc.cis.okstate.edu (8.14.2/8.13.8) with ESMTP id n5A24J97018545 for ; Tue, 9 Jun 2009 21:04:55 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200906100204.n5A24J97018545@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <18543.1244599459.1@dc.cis.okstate.edu> Date: Tue, 09 Jun 2009 21:04:19 -0500 From: Martin McCormick Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 02:05:11 -0000 Dan Nelson writes: > ^Z sends a SIGTSTP, which can be caught (or ignored, in your case). > > 18 SIGTSTP stop process stop signal generated from > keyboard > > According to > > > > % stty -g > > ... status=14:stop=13:susp=1a:time=0:werase=17: ... > ^^^^^^^ > > 17 SIGSTOP stop process stop (cannot be caught or > > ignored) > > > > And I think that 17 (decimal) is refered to as 1a (hexadecimal) > > in the previous stty command. > > 1a hex just refers to the control code itself (^Z), and doesn't indicate > which signal is sent. Thanks to all. In this case, I made SIGTSTP have the same effect in the program that CTRL-C does (SIGINT) so now either signal makes the application remove the lock and quit gracefully. Again, many thanks to everybody. Martin McCormick From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 02:08:31 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BB54E106566C for ; Wed, 10 Jun 2009 02:08:31 +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 3D61C8FC27 for ; Wed, 10 Jun 2009 02:08:30 +0000 (UTC) (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.13.1) with ESMTP id n5A24BhK095468 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 10 Jun 2009 09:04:11 +0700 (ICT) (envelope-from on@cs.ait.ac.th) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.14.3/8.14.3/Submit) id n5A28RYg062023; Wed, 10 Jun 2009 09:08:27 +0700 (ICT) (envelope-from on) Date: Wed, 10 Jun 2009 09:08:27 +0700 (ICT) Message-Id: <200906100208.n5A28RYg062023@banyan.cs.ait.ac.th> From: Olivier Nicole To: djuatdelta@gmail.com In-reply-to: (message from Daniel Underwood on Tue, 9 Jun 2009 13:18:56 -0400) References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: freebsd-questions@freebsd.org Subject: Re: PDF inventory 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: Wed, 10 Jun 2009 02:08:32 -0000 Daniel, > I'm trying to convert all PDF files in a directory to text using > "pdftotext". I tried the following command: Aside from the syntax of the command find(1) and some article that may be in corrupted PDF, you may consider hacking pdftotext to skip the "do not print" flag in some of the PDF articles. I don't think that many scientific articles would set the flag that prevent from printing them. But some PDF filess have that flag set, and pdftotext would not work on them, unless you patch it (which is easy, could even be a compile option, I don't remember). Best regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 04:05:03 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7BFE61065672 for ; Wed, 10 Jun 2009 04:05:03 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email1.allantgroup.com (email1.emsphone.com [199.67.51.115]) by mx1.freebsd.org (Postfix) with ESMTP id 3515A8FC15 for ; Wed, 10 Jun 2009 04:05:03 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email1.allantgroup.com (8.14.0/8.14.0) with ESMTP id n5A450CU078257 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Jun 2009 23:05:00 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id n5A44xm6012112 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 9 Jun 2009 23:04:59 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id n5A44xDV012109; Tue, 9 Jun 2009 23:04:59 -0500 (CDT) (envelope-from dan) Date: Tue, 9 Jun 2009 23:04:59 -0500 From: Dan Nelson To: Polytropon Message-ID: <20090610040459.GE56070@dan.emsphone.com> References: <200906092130.n59LUU7E000141@dc.cis.okstate.edu> <20090609234215.32201c06.freebsd@edvax.de> <20090609220730.GD56070@dan.emsphone.com> <20090610001707.c269f7a0.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090610001707.c269f7a0.freebsd@edvax.de> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: ClamAV version 0.94.1, clamav-milter version 0.94.1 on email1.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email1.allantgroup.com [199.67.51.78]); Tue, 09 Jun 2009 23:05:00 -0500 (CDT) X-Scanned-By: MIMEDefang 2.45 Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 04:05:03 -0000 In the last episode (Jun 10), Polytropon said: > On Tue, 9 Jun 2009 17:07:30 -0500, Dan Nelson wrote: > > ^Z sends a SIGTSTP, which can be caught (or ignored, in your case). > > > > 18 SIGTSTP stop process stop signal generated from > > keyboard > > What is the way to get this information? That's from the "signal" manpage. -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 05:05:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C94ED106564A for ; Wed, 10 Jun 2009 05:05:21 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.176]) by mx1.freebsd.org (Postfix) with ESMTP id 66B048FC12 for ; Wed, 10 Jun 2009 05:05:21 +0000 (UTC) (envelope-from wahjava@gmail.com) Received: by wa-out-1112.google.com with SMTP id m38so151888waf.27 for ; Tue, 09 Jun 2009 22:05:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received :x-spam-checker-version:x-spam-level:x-spam-status:received:from:to :cc:subject:organization:references:x-face:x-uptime:x-url :x-openpgp-id:x-openpgp-fingerprint:x-os:x-mailer:x-mail-morse :x-attribution:date:in-reply-to:message-id:user-agent:face :mime-version:content-type; bh=+c3xuQ/RtlZtN5fUpxG2PTTRc5HPDke5iB2/C7ol+4Q=; b=nsXDjUqO7JKxVNOzkglUHr3UnS2v8nUh1UBnA3wF/3NDlYg2zsEUGm7GDi1/yn0Ypu Xk2NmZuxSltMDn5O7gcaOVORGrQaZ5y4cxxw/vIz07S5lTNzg5iD4iLOwGJb9KpMWx/t LAy7Pfuy6+OokT1M/9LCLnxn95RMMOItjm2H4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:x-spam-checker-version:x-spam-level:x-spam-status:from:to:cc :subject:organization:references:x-face:x-uptime:x-url:x-openpgp-id :x-openpgp-fingerprint:x-os:x-mailer:x-mail-morse:x-attribution:date :in-reply-to:message-id:user-agent:face:mime-version:content-type; b=PdxKguBjOEwOeP9hPqewITpoha/x6lbGXiANfObFZ6QzJ8T5k4SbqlcNN8tgoi/yNL NSXFiXFfh8S5XELvWP66ClFxobZtSW54SZErQjfLyWGuw0SOROs/MKi4attXYZU/QmGr j4RXquxHlEOibrNuOvt7fkW/InhhLMHMCL310= Received: by 10.115.89.18 with SMTP id r18mr1459788wal.34.1244610320531; Tue, 09 Jun 2009 22:05:20 -0700 (PDT) Received: from chateau.d.lf ([122.161.154.214]) by mx.google.com with ESMTPS id n33sm8309450wag.67.2009.06.09.22.05.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 09 Jun 2009 22:05:20 -0700 (PDT) Sender: Ashish SHUKLA Received: by chateau.d.lf (Postfix, from userid 65534) id 3329630F; Wed, 10 Jun 2009 10:35:27 +0530 (IST) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on chateau.d.lf X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=NO_RELAYS autolearn=unavailable version=3.2.5 Received: from chateau.d.lf (chateau.d.lf [IPv6:::1]) by chateau.d.lf (Postfix) with ESMTP id 60A4815E; Wed, 10 Jun 2009 10:35:16 +0530 (IST) From: wahjava.ml@gmail.com (Ashish SHUKLA) To: "Paul B. Mahol" Organization: alt.religion.emacs References: <86skifqn2x.fsf@chateau.d.lf> <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net> <20090609111703.GA98742@chateau.d.lf> <3a142e750906090634w10e275d3wcaf76f5f117c8f9f@mail.gmail.com> X-Face: )vGQ9yK7Y$Flebu1C>(B\gYBm)[$zfKM+p&TT[[JWl6:]S>cc$%-z7-`46Zf0B*syL.C]oCq[upTG~zuS0.$"_%)|Q@$hA=9{3l{%u^h3jJ^Zl; t7 X-Uptime: 10:32AM up 2:26, 4 users, load averages: 0.14, 0.80, 1.25 X-URL: http://wahjava.wordpress.com/ X-OpenPGP-ID: 762E5E74 X-OpenPGP-Fingerprint: 1E00 4679 77E4 F8EE 2E4B 56F2 1F2F 8410 762E 5E74 X-OS: FreeBSD on FreeBSD 7.2-RELEASE kernel on amd64 architecture X-Mailer: Gnus v5.13 X-Mail-Morse: .-- .- .... .--- .- ...- .- .--.-. --. -- .- .. .-.. .-.-.- -.-. --- -- X-Attribution: =?utf-8?B?4KSG4KS24KWA4KS3?= Date: Wed, 10 Jun 2009 10:35:10 +0530 In-Reply-To: <3a142e750906090634w10e275d3wcaf76f5f117c8f9f@mail.gmail.com> (Paul B. Mahol's message of "Tue, 9 Jun 2009 13:34:56 +0000") Message-ID: <861vpsllvd.fsf@chateau.d.lf> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (x86_64-pc-freebsd) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJ1BMVEWpqal/f39tbW1jY2Md HR2goKCenp6UlJROTk7////9/f35+fnT09ORJdieAAACVklEQVQ4jXXUP2vbQBQA8AvUTkgz5OzY Z0iGWhpS6BSrkECn0mvx0MEJ6AjtYrfoBCVDlD8naJYmNlRfwZq8+mkKlIZaGpJSYmP7Q/XkJDrJ Td8i/H68u3vHPaPufwLdf32AMA4A6GcAgvAamY1pOJiDIFqicTwLswDhfr3uxfFtkAY/GFHPMwzD 8zpnACmIOnE6js7rQb+v4NJrG9od0C+QgpHMy5jBewV+UDSMWiw1Y4fWfyV7+NGFzDsYa3pth9LJ Q4XvXxFHcJRvHOmygn5NAEabnDcQQguarnfoiwSCJ99jmKKcphsZONmWsDK9Ro7cvZOCtQdg8nje egLhc2LNlkLmsezzTFUUy5w18ocox/f0LaLgJy0zO75zk+9pp85GAj36xjqhdI0y3tq2m4dqqcWX zQWBTz8L1irvolXV4J+3q7eCDgVnttjNq6X8H+9KOZsuNk1uCzx8pSp+E9HImfJOTLdcGqo+YKnG EIovizkEn48V7BO+ch2DXcD4ENSpWiU+q8hjjbgTBZCXnZtyj0Ws4Q1Q0B2WXFtYZo65Bbyeeldw RS6qFueM80LlLA29YlVwGRYvFD+kwI/0O+A2PlpOP9GwslUVciHuYGechuBTp922YiDZCrghTknm XSyOM+D3aoRZlo0Jb42zY7DN4p2x4AeZ+QAYutx1sHwTHzMT5cMNduQ9yW3GczN4KZ86kb0c9O8T yXDeFqpl2fryPEAYGXIlezAPXYh2NgVr/gvdoHIuDwuPwOhcWE8f8mmICq41eATkn8x0kuRTIKcB wE9+/QUtiiAnYcaN7wAAAABJRU5ErkJggg== MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Cc: freebsd-questions@freebsd.org Subject: Re: 7.2-RELEASE panics with snd_ds1 loaded. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 05:05:22 -0000 --=-=-= Content-Transfer-Encoding: quoted-printable Paul B Mahol writes: > On 6/9/09, Ashish SHUKLA wrote: >> Hi Mel, >>=20 >> Thanks for responding. >>=20 >> In <200906081647.15069.mel.flynn+fbsd.questions@mailing.thruhere.net>, M= el >> Flynn wrote: >>=20 >> [...] >>=20 >>> Nothing points to the sound module specifically. The first trace is >>> unusable >>> (frames missing) and the second trace panics in sleep, which maybe poin= ts >>> to >>> the sound module and interrupts. Are you not able to panic the system >>> without >>> that sound module loaded? It looks too random to blame one module, more >>> hardware, but it's possible the module exposes a bug elsewhere. From th= is >>> though, it is hard to tell. >>=20 >> Yes, I noticed myself, that there is no reason why to blame 'sound' modu= le >> for >> it. But I noticed my box only panics when there is some activity going on >> with >> sound device, like at one time, it paniced when I was trying to record a= udio >> using gnome-sound-recorder, and another it paniced when I was playing au= dio >> using ogg123. And that it too, it didn't panic immediately after start of >> operation (playing/recording), but only after some time has elapsed. And= the >> system doesn't panic without snd_ds1 loaded even after building ports (l= ike >> openjdk6 and libxul) and using GNOME for 4 hours. BtW, I forgot to menti= on >> in >> last post, but I'm running the GENERIC kernel bundled with 7.2-RELEASE D= VD. >>=20 >> I don't know how to resolve and whether this is some kind of memory issu= e or >> something else. I also experienced something similar panic situation[1] = with >> 8.0-CURRENT which no one else is able to reproduce except me, after whic= h I >> installed 7.2-RELEASE. Any ideas how to trace this problem, it is >> discouraging >> me to continue using FreeBSD for my regular desktop use ? >>=20 >> References: >> [1] - >> http://lists.freebsd.org/pipermail/freebsd-gnome/2009-April/022048.html > Does same problem happens on i386? I've not installed i386 versions of any versions of FreeBSD, as I don't have any spare box. So I can't say if those problems are reproducible on i386 also. > --=20 > Paul Thanks =2D-=20 Ashish SHUKLA --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkovPwsACgkQHy+EEHYuXnQ+lwCgmmjX8HpRZu0vucaR0e0BrBED fDgAmgMIoxJk1DGyHuxN9/sqmsWDDzIZ =w85s -----END PGP SIGNATURE----- --=-=-=-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 06:13:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B33BE106568D for ; Wed, 10 Jun 2009 06:13:08 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 2F3CB8FC13 for ; Wed, 10 Jun 2009 06:13:07 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz17 with SMTP id 17so11587bwz.43 for ; Tue, 09 Jun 2009 23:13:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=HJuimBu8GqXjXFxHeV5+RvKJHy5C0ObCrzEFFJtu2S0=; b=BVkrVfW9j0R5aA9D89JZv6JnESgUSjNNp9K4c+SCoStFf6UkxD7k9WEhTz6Yqbp3ab kizANI73LH54Mx4eGzoAdPUDSQoebpp4gbW8hWJ8QjSTbLJhjPuztZnBd7biJg1+wlxW UlKRbe/mCoUapph6JvI2C/feIv4CdB94ISMJk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=gWd3jvfodEBzJqTNCgH64D55nS8gcTmctsQGcsffit3IIUOZerkM/eHCBBOukwpF99 fDOYOfYzheIljDs5208JY8kuhJIClVcVOi8iI1deEeMhsW1Dh3OzPUbHbXJHyr4RV3Xt C66ufWV9cyLnRayt1oTX7Tmj46m0AcCp02z9Y= MIME-Version: 1.0 Received: by 10.103.24.17 with SMTP id b17mr559740muj.89.1244614387096; Tue, 09 Jun 2009 23:13:07 -0700 (PDT) From: Valentin Bud Date: Wed, 10 Jun 2009 09:12:47 +0300 Message-ID: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> To: freebsd-questions Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 06:13:09 -0000 Hello community, Yesterday I have installed FBSD 7.2-RELEASE. I have installed on a mirror created with gmirror(8). All I have modified on this system is that I have updated the sources, rebuild the world and kernel and of course install. I have named the mirror system0 and all worked well. Now the problem is that i want to glabel the partitions on the mirror so i have followed the following procedure: 1. reboot to single user 2. mount -a 3. tunefs -L var /dev/mirror/system0s1d This commands exits with "Failed to write superblock". After reading the man of gmirrror(8) and glabel(8) i have noticed that both of them store metadata on the last sector of the provider. From this results that what I want to do is not possible, at least my logic tells me that. Since gmirror wrote metadata to the last sector of the provider, glabel tries to rewrite it and the system stops the process to protect the filesystem. But then again for gmirror the providers are the two hdd i use for mirroring and for glabel the provider is the mirror itself. That's again what my logic tells me. So i think there is some kind of separation between the two modules and things should work. I have searched a bit but couldn't find any relevant info on labeling a mirror. I just want to know if this is possible and if it's not I'd like to understand why. Labeling a partition is not a must-have but it's sure nice :). thanks, v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 06:58:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C48F010656B0 for ; Wed, 10 Jun 2009 06:58:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 143538FC12 for ; Wed, 10 Jun 2009 06:58:57 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5A6wouR015083; Wed, 10 Jun 2009 08:58:50 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5A6wmtC015080; Wed, 10 Jun 2009 08:58:49 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 08:58:48 +0200 (CEST) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> Message-ID: References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 06:59:00 -0000 > following > procedure: > 1. reboot to single user > 2. mount -a > 3. tunefs -L var /dev/mirror/system0s1d > This commands exits with "Failed to write superblock". replace mount -a with mount / you can't write directly to partition which is mounted mounted From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 06:59:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4930B106568F for ; Wed, 10 Jun 2009 06:59:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 7131E8FC1A for ; Wed, 10 Jun 2009 06:59:51 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5A6xgLh015096; Wed, 10 Jun 2009 08:59:42 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5A6xfxj015093; Wed, 10 Jun 2009 08:59:41 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 08:59:41 +0200 (CEST) From: Wojciech Puchar To: Gary Gatten In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF1F@WADPEXV0.waddell.com> Message-ID: References: <70C0964126D66F458E688618E1CD008A0793EF0E@WADPEXV0.waddell.com><87k53lnytc.fsf@kobe.laptop><139b44430906090958y224fcb4cs7f0380ab5a747440@mail.gmail.com><139b44430906091016l3ab5991bh2c119c2dffb28ad1@mail.gmail.com><20090609173527.GB64394@gizmo.acns.msu.edu><20090609185247.GP79355@comcast.net> <70C0964126D66F458E688618E1CD008A0793EF1F@WADPEXV0.waddell.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Charlie Kester , freebsd-questions@freebsd.org Subject: RE: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 06:59:52 -0000 > PS: I DID actually find something similar to "ports" for Solaris: > opencsw.org / blastwave.org. I guess there's some feuding between some NetBSD pkgsrc system works under solaris From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 07:30:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50B42106566C for ; Wed, 10 Jun 2009 07:30:18 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 8EED28FC0A for ; Wed, 10 Jun 2009 07:30:17 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5A7U7m1015252; Wed, 10 Jun 2009 09:30:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5A7U7bm015249; Wed, 10 Jun 2009 09:30:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 09:30:07 +0200 (CEST) From: Wojciech Puchar To: Jason Helfman In-Reply-To: <20090610001900.GC57804@eggman.experts-exchange.com> Message-ID: References: <20090610001900.GC57804@eggman.experts-exchange.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: kernel compiling 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: Wed, 10 Jun 2009 07:30:18 -0000 > I am trying to figure out how when making the kernel that the number is > incremented. > > For example my system reads: > FreeBSD 7.2-RELEASE #4 > > I have my own kernel that works, however I would like to have it read this: > FreeBSD 7.2-RELEASE #0 > > Is there a way to resolve this? > the number is incremented every time you do config on the same build directory. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 08:36:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEF10106566B for ; Wed, 10 Jun 2009 08:36:43 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 64CD58FC17 for ; Wed, 10 Jun 2009 08:36:42 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz17 with SMTP id 17so77882bwz.43 for ; Wed, 10 Jun 2009 01:36:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=VBvTc5fwHNgaLJF/DVpIEcgXj+qM3lMBgqt622oYZVQ=; b=baUChBcc0CEOL5Oa88I7G8Imk8U2/kcwAMk9iT2jNAvuqB/K82YCCFVxJkPpfVlB67 CRxsFW/uq+ZFNb6S23txZOED5IeRk8Or3P4+66n7rAlDRzZ5pRuMOTRXcg3sWiFRDSuR 3v1H4ydyFi3pQOKC19cnt7VxSrsmDd7EjvLS4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=sKSuV36hQM5jUmSWR+VpIkoGQRkS2Nk63hydlkbnSlPEpWGRH/WVb4bzXitvzcr/eQ uHRJQBHQeEhn0IKzEC5nSqYi/5YTAR5Tr6yqydM7hF/w/IsEimZFFTg4s0/gnsVHZ2dC nko81ufkyI7C4ejEpCg+oF2XDjkeBsyuEzv5c= MIME-Version: 1.0 Received: by 10.103.39.17 with SMTP id r17mr610340muj.75.1244623002130; Wed, 10 Jun 2009 01:36:42 -0700 (PDT) In-Reply-To: References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> From: Valentin Bud Date: Wed, 10 Jun 2009 11:36:22 +0300 Message-ID: <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 08:36:44 -0000 On Wed, Jun 10, 2009 at 9:58 AM, Wojciech Puchar < wojtek@wojtek.tensor.gdynia.pl> wrote: > following >> procedure: >> 1. reboot to single user >> 2. mount -a >> 3. tunefs -L var /dev/mirror/system0s1d >> This commands exits with "Failed to write superblock". >> > > replace mount -a with mount / > > you can't write directly to partition which is mounted mounted > Thanks this time it worked. I am almost sure (99%) I've tried that already yesterday but the 1% wins. One more question can i label the / partition. I have the same error when i try to label it. v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 09:01:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9340C106566C for ; Wed, 10 Jun 2009 09:01:05 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (unknown [IPv6:2607:f678:1010::34]) by mx1.freebsd.org (Postfix) with ESMTP id 6D5BF8FC1E for ; Wed, 10 Jun 2009 09:01:05 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id n5A913XD065259 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 10 Jun 2009 02:01:03 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id n5A913Qs065258; Wed, 10 Jun 2009 02:01:03 -0700 (PDT) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA24796; Wed, 10 Jun 09 01:50:29 PDT Date: Wed, 10 Jun 2009 01:49:16 -0700 From: perryh@pluto.rain.com To: martin@dc.cis.okstate.edu Message-Id: <4a2f738c.vK+04C2hzxx8edYV%perryh@pluto.rain.com> References: <200906100204.n5A24J97018545@dc.cis.okstate.edu> In-Reply-To: <200906100204.n5A24J97018545@dc.cis.okstate.edu> User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 09:01:05 -0000 Martin McCormick wrote: > Thanks to all. In this case, I made SIGTSTP have the > same effect in the program that CTRL-C does (SIGINT) so now > either signal makes the application remove the lock and quit > gracefully. To each his own, I guess. To anyone familiar with the usual Unix/Linux conventions, this response to ^Z is going to be thoroughly unexpected. Is there any reasonable way to do only the minimum cleanup need for the lock to be safely removed, and then suspend, reacquiring the lock when resumed? From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 09:14:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DA201065672 for ; Wed, 10 Jun 2009 09:14:10 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from d.mail.ru.ac.za (d.mail.ru.ac.za [IPv6:2001:4200:1010::25:4]) by mx1.freebsd.org (Postfix) with ESMTP id B40DA8FC1D for ; Wed, 10 Jun 2009 09:14:09 +0000 (UTC) (envelope-from D.Forsyth@ru.ac.za) Received: from iwr.ru.ac.za ([146.231.64.249]:56927) by d.mail.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MEJsh-000PId-TO; Wed, 10 Jun 2009 11:14:03 +0200 Received: from iwdf-5.iwr.ru.ac.za ([146.231.64.28]) by iwr.ru.ac.za with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MEJsh-000Fqg-V4; Wed, 10 Jun 2009 11:14:03 +0200 From: "DA Forsyth" Organization: IWR To: Kent Stewart , freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 11:14:03 +0200 MIME-Version: 1.0 Message-ID: <4A2F957B.14347.18818A00@d.forsyth.ru.ac.za> Priority: normal In-reply-to: <200906091030.03257.kstewart@owt.com> References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za>, <139b44430906090954g5914d81cvcaf2c80b16e727b9@mail.gmail.com>, <200906091030.03257.kstewart@owt.com> X-mailer: Pegasus Mail for Windows (4.41) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body X-Virus-Scanned: d.mail.ru.ac.za (146.231.129.36) Cc: Subject: Re: another compile error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d.forsyth@ru.ac.za List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 09:14:10 -0000 On 9 Jun 2009 , Kent Stewart entreated about "Re: another compile error": > > > > trying to build kernel for 7.2 and get this > > > > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > > > > > > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > > > > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - > > Hello, > > > > If you want udbp(4) you have to know that it requires netgraph(4). > > They are both available as modules and/or kernel config options > > (actually udbp(4) is a device :) ). > > If that is all it takes, then, I think that GENERIC should mention > the "options NETGRAPH" as a requirement for udbp. There are numerous places > with "requires miibus" as a comment because a device won't compile without > it. A commented line has often been there because it was a work in progress > such as ULE was for what seems like years or broken for unknown reasons. > GENERIC was always self documenting. Thanks guys. having 'options NETGRAPH' is indeed the fix. There is no mention of it being required for udbp in GENERIC, nor in either of the NOTES files. It is mentioned in the man for udbp, which I hadn't read (yet), silly me. -- DA Fo rsyth Network Supervisor Principal Technical Officer -- Institute for Water Research http://www.ru.ac.za/institutes/iwr/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 09:25:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABAC1106566C for ; Wed, 10 Jun 2009 09:25:12 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id 12F238FC16 for ; Wed, 10 Jun 2009 09:25:06 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493580.home.otenet.gr [94.71.93.20]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5A9P5i2008200; Wed, 10 Jun 2009 12:25:05 +0300 Message-ID: <4A2F7BF0.8030606@otenet.gr> Date: Wed, 10 Jun 2009 12:25:04 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Valentin Bud References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> In-Reply-To: <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Wojciech Puchar , freebsd-questions Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 09:25:12 -0000 Valentin Bud wrote: > On Wed, Jun 10, 2009 at 9:58 AM, Wojciech Puchar < > wojtek@wojtek.tensor.gdynia.pl> wrote: > > >> following >> >>> procedure: >>> 1. reboot to single user >>> 2. mount -a >>> 3. tunefs -L var /dev/mirror/system0s1d >>> This commands exits with "Failed to write superblock". >>> >>> >> replace mount -a with mount / >> >> you can't write directly to partition which is mounted mounted >> >> > > Thanks this time it worked. I am almost sure (99%) I've tried that already > yesterday but the 1% wins. > > One more question can i label the / partition. I have the same error when i > try > to label it. > > v > You should be able to. Just reboot into single user mode and *do not* enter any mount commands. The / partition is mounted read only in this case, and tunefs -L will succeed. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 10:33:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA0D61065674 for ; Wed, 10 Jun 2009 10:33:19 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp107.prem.mail.ac4.yahoo.com (smtp107.prem.mail.ac4.yahoo.com [76.13.13.46]) by mx1.freebsd.org (Postfix) with SMTP id 4D7878FC19 for ; Wed, 10 Jun 2009 10:33:19 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 18248 invoked from network); 10 Jun 2009 10:33:18 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:In-Reply-To:References:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=fbEBlDOYXazNPhtiGxWVXVwngMQLiCqyqFq8bZGX8aLb1kLTRFtQOOFNvJsiiSHd24SmkBsMrUfdUoSB7SMeIq/jDeoWgn4s7bAQ3wCBlvEEZJZfUCDcbaANnoTDVtPdj52x3UjU4dWhcRnFQZO+7o9Rt0z7cY3KY+OH7IAvZFY= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp107.prem.mail.ac4.yahoo.com with SMTP; 10 Jun 2009 03:33:18 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: KiROSPMVM1nKG.RuiwXzfd3xU8CEGmK4ZH8v3mm.ohbhmw6hvEjM5dcTQgY72YjtHxFKaDulpxXK4rJlo9XMvtz9QrQ_tf5aVdSLf6t60vwKOXnMmvSftlQ6ylvUwaU1oybbvOun68OdtRXjz_ZsGUtLNtXDi9dIxzEhdhErtwYOn.lNlBComg_Ehnjlpq7zobuFN7MUn_Rk0Bs8sk4lRc3QXz7.eWK2z8IRcrlhRplpEuFb3uBup42k4toqF0bpCv1NBweXCE8u8GNURZh3jgwlutYWrcD2De5XA0VNoAMiHBVqX7JuQ7y3QV7pB9MmMOTDJ3ZUjlJH X-Yahoo-Newman-Property: ymail-3 Date: Wed, 10 Jun 2009 06:33:05 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090610063305.38811af7@scorpio> In-Reply-To: <20090609231347.GA57940@kokopelli.hydra> References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> <20090608205549.GA53856@kokopelli.hydra> <20090608173112.13bbc8a1@scorpio> <20090609231347.GA57940@kokopelli.hydra> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/Im.129obOzprBe884XUoBHg"; protocol="application/pgp-signature" Subject: Re: ISP questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 10:33:20 -0000 --Sig_/Im.129obOzprBe884XUoBHg Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Tue, 9 Jun 2009 17:13:47 -0600 Chad Perrin wrote: >If 0.111% of customers are unfortunate enough to end up with something >entirely beyond their control causing something to happen that can be >imagined to be a violation of GoDaddy's partially undisclosed policies, >and 0.1% of GoDaddy customers end up getting their domain names held >hostage to the tune of several hundred dollars as a result of those >incidents entirely beyond their control, that means that about 90% of >people GoDaddy has any way of exploiting, extorting, or otherwise >screwing over in a manner defensible in court are getting exactly that >treatment. > >(Note that I'm making up numbers here, just like you.) > >So . . . you're basically gambling that you'll never be the victim of >circumstances that would allow GoDaddy to figure it can get away with >screwing you over. I prefer to gamble on other things. Your mileage >may vary. I am not going to debate. 1) Your math doesn't even begin to compute - as you stated. 2) You have supplied no factual proof of your statement. Innuendo is not evidence. Every time you get in a car, you risk your life. Does that mean you should live in a bubble? If you have documented proof of your statements, I would love to see them. If not, you sound like someone who screwed up, got burned and like is now the norm in our society, refusing to take responsibility for it; preferring to place the blame on someone or something else. If you don't like GoDaddy, that is your prerogative. However, slandering them with undocumented statements is rather low. As I said, I have not had a problem with them in the seven years I have used their services. Obviously, that does not coincide with your statements. Out of morbid curiosity, who are you presently using? I am willing to bet that I can find someone with a horror story to tell about them also. Would it be accurate; you tell me? --=20 Jerry gesbbb@yahoo.com QOTD: "Every morning I read the obituaries; if my name's not there, I go to work." --Sig_/Im.129obOzprBe884XUoBHg Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkovi+0ACgkQBvaKIJWWCO3tJACgiP58uoJQhH+P9Ow1yZyEWzdE 7UEAoIZuAZSOmQ2jxsP4oHsjc7CXbRV8 =oHhu -----END PGP SIGNATURE----- --Sig_/Im.129obOzprBe884XUoBHg-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 11:34:38 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 870AA106566C for ; Wed, 10 Jun 2009 11:34:38 +0000 (UTC) (envelope-from frank@esperance-linux.co.uk) Received: from mailout.zetnet.co.uk (mailout.zetnet.co.uk [194.247.47.231]) by mx1.freebsd.org (Postfix) with ESMTP id 3EAE78FC1D for ; Wed, 10 Jun 2009 11:34:38 +0000 (UTC) (envelope-from frank@esperance-linux.co.uk) Received: from irwell.zetnet.co.uk ([194.247.47.48] helo=zetnet.co.uk) by mailout.zetnet.co.uk with esmtp (Exim 4.63) (envelope-from ) id 1MEM4g-0003cx-0j; Wed, 10 Jun 2009 12:34:34 +0100 Received: from melon.esperance-linux.co.uk (54-144.adsl.zetnet.co.uk [194.247.54.144]) by zetnet.co.uk (8.14.1/8.14.1/Debian-9) with ESMTP id n5ABYXaZ012627; Wed, 10 Jun 2009 12:34:33 +0100 Received: by melon.esperance-linux.co.uk (Postfix, from userid 1001) id 5FA01FCA505; Wed, 10 Jun 2009 12:34:28 +0100 (BST) Date: Wed, 10 Jun 2009 12:34:28 +0100 From: Frank Shute To: Norbert Papke Message-ID: <20090610113428.GA17212@melon.esperance-linux.co.uk> Mail-Followup-To: Norbert Papke , freebsd-questions@freebsd.org, Daniel Underwood References: <200906082313.01084.npapke@acm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200906082313.01084.npapke@acm.org> User-Agent: Mutt/1.4.2.3i X-Face: *}~{PHnDTzvXPe'wl_-f%!@+r5; VLhb':*DsX%wEOPg\fDrXWQJf|2\,92"DdS%63t*BHDyQ|OWo@Gfjcd72eaN!4%NE{0]p)ihQ1MyFNtWL X-Operating-System: FreeBSD 6.4-RELEASE-p2 i386 X-Organisation: 'http://www.shute.org.uk/' X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.1.7 (zetnet.co.uk [194.247.46.1]); Wed, 10 Jun 2009 12:34:33 +0100 (BST) Cc: freebsd-questions@freebsd.org, Daniel Underwood Subject: Re: Reproduce previous stdout output without running previous command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Frank Shute List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 11:34:38 -0000 On Mon, Jun 08, 2009 at 11:13:00PM -0700, Norbert Papke wrote: > > On June 8, 2009, Daniel Underwood wrote: > > Further suppose that after running the command, I decide I want to > > save the output to a text file, so I can analyze the results outside > > of the terminal. What can I do? Well, I can do a traditional > > "copy-and-paste", or I could re-enter the previous command and send it > > to a text file (which I ought to have done in the first place). > > > > But is there another option? Is there some variable (such as, > > hypothetically, $output[n], where n=some integer index) that I could > > use to store the results in a text file? Such an option might look > > like the following: > > You could use sysutils/screen from ports. Screen lets you capture your > session in a log file. If you decide you need the output from a previous > command, it would be trivial to extract from the log. > Nobody's mentioned script(1). Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 11:41:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4017106568D for ; Wed, 10 Jun 2009 11:41:14 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id E35598FC23 for ; Wed, 10 Jun 2009 11:41:12 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5ABf5Y2016283; Wed, 10 Jun 2009 13:41:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5ABf5lI016280; Wed, 10 Jun 2009 13:41:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 13:41:05 +0200 (CEST) From: Wojciech Puchar To: Valentin Bud In-Reply-To: <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> Message-ID: References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 11:41:15 -0000 > > Thanks this time it worked. I am almost sure (99%) I've tried that already > yesterday but the 1% wins. > > One more question can i label the / partition. I have the same error when i try > to label it. don't do mount / or boot from liveCD From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 11:42:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 779C410656DF for ; Wed, 10 Jun 2009 11:42:25 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id C576C8FC24 for ; Wed, 10 Jun 2009 11:42:23 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5ABgIKm016303 for ; Wed, 10 Jun 2009 13:42:18 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5ABgIqC016300 for ; Wed, 10 Jun 2009 13:42:18 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 13:42:18 +0200 (CEST) From: Wojciech Puchar To: freebsd-questions@freebsd.org In-Reply-To: <20090610063305.38811af7@scorpio> Message-ID: References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> <20090608205549.GA53856@kokopelli.hydra> <20090608173112.13bbc8a1@scorpio> <20090609231347.GA57940@kokopelli.hydra> <20090610063305.38811af7@scorpio> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: ISP 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: Wed, 10 Jun 2009 11:42:25 -0000 > Every time you get in a car, you risk your life. Does that mean you Everything is dangerous, life itself being the most - always ends with death. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 11:50:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6D6910656EA for ; Wed, 10 Jun 2009 11:50:57 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 487DE8FC1C for ; Wed, 10 Jun 2009 11:50:56 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by fxm20 with SMTP id 20so640883fxm.43 for ; Wed, 10 Jun 2009 04:50:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=NJUL7NKKRvqLQYk25Yv6Rw1JTs1Hb4axFFVNVuNsHKw=; b=p/w1jQezxrKGZPtlQKn+JEJMRYhuUMLSgMVJ+PtTx61Isvh9xu8q5YqkKiOratZC12 cUvryCebjwqQGM8dH1KgL8PyWH28Qr8izo1BWmccgtVLHwWmKTdD1aNID4L+BuqrTp+M e05Jhs9Rxjiaa6P23acWKpWKXajn8mu4Td+AM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=X/RnuunXkgsOKu68TDy/h7LuAlmmZp0sTOJbtklMrhk2KfzurkQna/7gvKsvE7pBSE H4NJIr5RP93XGiCILa3925PjMW6XJqQrvVB9uD7lGP9eJ2byKUKt3IgIJte2uWUgQNM1 +hf3rPdhkbwjTWrw7PlMTblQSmhRHp9TboW1E= MIME-Version: 1.0 Received: by 10.103.225.11 with SMTP id c11mr662061mur.98.1244634656153; Wed, 10 Jun 2009 04:50:56 -0700 (PDT) In-Reply-To: <4A2F7BF0.8030606@otenet.gr> References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> <139b44430906100136k7851f8yd0bb8d712acc5aea@mail.gmail.com> <4A2F7BF0.8030606@otenet.gr> From: Valentin Bud Date: Wed, 10 Jun 2009 14:50:36 +0300 Message-ID: <139b44430906100450j50a158c4r13c2bc09febe8c6d@mail.gmail.com> To: Manolis Kiagias Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Wojciech Puchar , freebsd-questions Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 11:50:58 -0000 On Wed, Jun 10, 2009 at 12:25 PM, Manolis Kiagias wrote: > Valentin Bud wrote: > > On Wed, Jun 10, 2009 at 9:58 AM, Wojciech Puchar < > > wojtek@wojtek.tensor.gdynia.pl> wrote: > > > > > >> following > >> > >>> procedure: > >>> 1. reboot to single user > >>> 2. mount -a > >>> 3. tunefs -L var /dev/mirror/system0s1d > >>> This commands exits with "Failed to write superblock". > >>> > >>> > >> replace mount -a with mount / > >> > >> you can't write directly to partition which is mounted mounted > >> > >> > > > > Thanks this time it worked. I am almost sure (99%) I've tried that > already > > yesterday but the 1% wins. > > > > One more question can i label the / partition. I have the same error when > i > > try > > to label it. > > > > v > > > > You should be able to. Just reboot into single user mode and *do not* > enter any mount commands. The / partition is mounted read only in this > case, and tunefs -L will succeed. > > Yes it worked. Thank you very much. The odd thing is that I once tried to label it after mounting / and rw and afterward changed it to ro with the help of mount and it did not work. a great day, v -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 11:58:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6070C1065695 for ; Wed, 10 Jun 2009 11:58:54 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: from smtp106.prem.mail.ac4.yahoo.com (smtp106.prem.mail.ac4.yahoo.com [76.13.13.45]) by mx1.freebsd.org (Postfix) with SMTP id EB1F98FC14 for ; Wed, 10 Jun 2009 11:58:53 +0000 (UTC) (envelope-from gesbbb@yahoo.com) Received: (qmail 26982 invoked from network); 10 Jun 2009 11:58:53 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:Date:From:To:Subject:Message-ID:Reply-To:Organization:X-Mailer:Face:X-Face:Mime-Version:Content-Type; b=LA90f0VqDwMKEkDyrfVVZn0BMaeFzM0sx7KvfHuh3DopSZoJjD6J4PrV3jdiAfzEi4GvB/FS4NNzttCxCkB0+bnMn0g0pRPjB3TWHWKNQBJfBp5USOSbaowXNr5+pUpYj/zRf6eO/7/VgJiLpMEomGs0gGU9aiCWebnecnbW5CM= ; Received: from c-76-23-177-172.hsd1.ny.comcast.net (gesbbb@76.23.177.172 with login) by smtp106.prem.mail.ac4.yahoo.com with SMTP; 10 Jun 2009 04:58:53 -0700 PDT X-Yahoo-SMTP: yeAAMgKswBATCul4lSbCWspvTA-- X-YMail-OSG: l5J1PpoVM1lgLbUURhQa.F.vQpMwo.LNudzgOGYTNE4meEiGjXuinDLBWz40_YT7gFqsthq2ZQfX.pzU10eb_qpLKhL_cSKFArc1yMWIGqm0Sfru.hTSdhm1S8O3_U6mi_Bk9zPUoDMUgg0GOSGRb8OZf2FYEedSFIIzQ1s6BhGL.4sabXLHkIux9mJN9ZvsJnnzWxzjMAvrrDuHb8X9dN5AyXIiYVgUikb6b_gZmM4tHmTCA3U8Iz9mI17PPWxg8PXvBBWRyOgSw1QpAWgFj5ORxE0dz73A7rzZ.KZ3fhcmfNFQz6nAGel8k4OwR0b2U.QjnelE X-Yahoo-Newman-Property: ymail-3 Date: Wed, 10 Jun 2009 07:58:51 -0400 From: Jerry To: freebsd-questions@freebsd.org Message-ID: <20090610075851.6dcf86b3@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC 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 Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/E_uMahreTzyZfC20tJSqZwM"; protocol="application/pgp-signature" Subject: Security Problem: linux-pango-1.10.2.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: Wed, 10 Jun 2009 11:58:54 -0000 --Sig_/E_uMahreTzyZfC20tJSqZwM Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable There is a reported security problem with linux-pango-1.10.2.3 in the ports system. That is preventing me from building the 'nspluginwrapper' port. Actually, I did build it by using the "DISABLE_VULNERABILITIES=3Dyes" flag; however, I do not really like doing it that way. This problem has been known for awhile now. Does anyone know when this port will be fixed? --=20 Jerry gesbbb@yahoo.com One father is more than a hundred schoolmasters. George Herbert --Sig_/E_uMahreTzyZfC20tJSqZwM Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkovn/wACgkQBvaKIJWWCO2RogCaA7uuVnvdtBeVi8OcbekmN+/O E/0AnRrmFdxG74s53sv68hufjF17IXiC =qYPX -----END PGP SIGNATURE----- --Sig_/E_uMahreTzyZfC20tJSqZwM-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 12:20:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D753E106564A for ; Wed, 10 Jun 2009 12:20:08 +0000 (UTC) (envelope-from dhaneshkk@hotmail.com) Received: from snt0-omc3-s30.snt0.hotmail.com (snt0-omc3-s30.snt0.hotmail.com [65.55.90.169]) by mx1.freebsd.org (Postfix) with ESMTP id A6CE68FC08 for ; Wed, 10 Jun 2009 12:20:08 +0000 (UTC) (envelope-from dhaneshkk@hotmail.com) Received: from SNT111-W14 ([65.55.90.137]) by snt0-omc3-s30.snt0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 10 Jun 2009 05:20:08 -0700 Message-ID: X-Originating-IP: [218.248.24.18] From: dhaneshk k To: , Date: Wed, 10 Jun 2009 12:20:07 +0000 Importance: Normal In-Reply-To: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> MIME-Version: 1.0 X-OriginalArrivalTime: 10 Jun 2009 12:20:08.0477 (UTC) FILETIME=[CB4314D0:01C9E9C5] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: RE: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 12:20:09 -0000 List members=3B http://www.freebsd.org/doc/en/books/handbook/geom-glabel.html Starting with FreeBSD 7.2=2C the glabel(8) class supports a new label type for UFS file systems=2C based on the unique file system id=2C ufsid. Is the above clause applicable in this case ? instead of using tunefs -L= =20 can we use# glabel status ? and can use the ufsid labels of /dev/ufsid/ and edit /etc/fstab ent= ries for the partitions? > From: valentin.bud@gmail.com > Date: Wed=2C 10 Jun 2009 09:12:47 +0300 > To: freebsd-questions@freebsd.org > Subject: glabel(8) a gmirror(8) doesn't work >=20 > Hello community=2C >=20 > Yesterday I have installed FBSD 7.2-RELEASE. I have installed on a mirro= r > created with gmirror(8). All I have modified on this system is that I hav= e > updated the sources=2C rebuild the world and kernel and of course install= . >=20 > I have named the mirror system0 and all worked well. Now the problem > is that i want to glabel the partitions on the mirror so i have followed = the > following > procedure: > 1. reboot to single user > 2. mount -a > 3. tunefs -L var /dev/mirror/system0s1d > This commands exits with "Failed to write superblock". >=20 > After reading the man of gmirrror(8) and glabel(8) i have noticed that b= oth > of them > store metadata on the last sector of the provider. From this results that > what I want > to do is not possible=2C at least my logic tells me that. Since gmirror w= rote > metadata > to the last sector of the provider=2C glabel tries to rewrite it and the > system stops the > process to protect the filesystem. But then again for gmirror the provide= rs > are > the two hdd i use for mirroring and for glabel the provider is the mirror > itself. That's > again what my logic tells me. So i think there is some kind of separation > between the > two modules and things should work. >=20 > I have searched a bit but couldn't find any relevant info on labeling a > mirror. I just > want to know if this is possible and if it's not I'd like to understand w= hy. >=20 > Labeling a partition is not a must-have but it's sure nice :). >=20 > thanks=2C > v >=20 > --=20 > network warrior since 2005 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe=2C send any mail to "freebsd-questions-unsubscribe@freebsd= .org" _________________________________________________________________ cricket and news. Logon to MSN Video for the latest clips http://www.exploremyway.com= From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 12:29:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EBE59106566B for ; Wed, 10 Jun 2009 12:29:50 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: from mail-bw0-f214.google.com (mail-bw0-f214.google.com [209.85.218.214]) by mx1.freebsd.org (Postfix) with ESMTP id 63FE98FC19 for ; Wed, 10 Jun 2009 12:29:50 +0000 (UTC) (envelope-from valentin.bud@gmail.com) Received: by bwz10 with SMTP id 10so69883bwz.43 for ; Wed, 10 Jun 2009 05:29:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=UoAMqdmGCMc+1m9OwZQ0Xhd0c3pOn+iUf0Ob30sE0cs=; b=P10sJMCcrnRm0pVRYEtbFh3YqNP2beJK2hcxTBae6JZXsPFI0VsOnG3fU6clvuTi38 NUYvga0t1786S3wP37qOKi3zRikiOZJW7TQyPq3hv9pp9pG+09oMZpF+KQIRgc+Q0YUk FR7HYCHnhB/BGbSzsOvbgmfGLfZSYQPBthq60= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=pMN7GjTCk865LG0eIe27PRwBam9RIre8jpC4HPTqSgTtcz8LyAkNt5m7l/PhQllFDk I25mR/c+iODWzolkx+WoTXIpT748hLNjlsrm1E1Nv451SCJ8GXrpmi/k3ZLbm6Et3Img 2XxexE7r7pXAuzpgfwLkZ2d97jQmFZE/uJS5M= MIME-Version: 1.0 Received: by 10.103.192.2 with SMTP id u2mr690485mup.31.1244636989190; Wed, 10 Jun 2009 05:29:49 -0700 (PDT) In-Reply-To: References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> From: Valentin Bud Date: Wed, 10 Jun 2009 15:29:29 +0300 Message-ID: <139b44430906100529n3d7e93e2kd209731b2da498e0@mail.gmail.com> To: dhaneshk k Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 12:29:51 -0000 On Wed, Jun 10, 2009 at 3:20 PM, dhaneshk k wrote: > List members; > > http://www.freebsd.org/doc/en/books/handbook/geom-glabel.html > > Starting with FreeBSD 7.2, the glabel(8)class supports a new label type for > UFS file systems, based on the unique file system id, ufsid. > > Is the above clause applicable in this case ? instead of using tunefs -L > > > can we use# glabel status ? > > and can use the ufsid labels of /dev/ufsid/ and edit /etc/fstab > entries for the partitions? > Well yes you are right. The point of labeling the partitions was/is to make the names more easier to remember IMO. Remembering a string (the ufsid) is not quite my specialty. Anyway thanks for the heads up. v > > > > > > > From: valentin.bud@gmail.com > > Date: Wed, 10 Jun 2009 09:12:47 +0300 > > To: freebsd-questions@freebsd.org > > Subject: glabel(8) a gmirror(8) doesn't work > > > > > Hello community, > > > > Yesterday I have installed FBSD 7.2-RELEASE. I have installed on a mirror > > created with gmirror(8). All I have modified on this system is that I > have > > updated the sources, rebuild the world and kernel and of course install. > > > > I have named the mirror system0 and all worked well. Now the problem > > is that i want to glabel the partitions on the mirror so i have followed > the > > following > > procedure: > > 1. reboot to single user > > 2. mount -a > > 3. tunefs -L var /dev/mirror/system0s1d > > This commands exits with "Failed to write superblock". > > > > After reading the man of gmirrror(8) and glabel(8) i have noticed that > both > > of them > > store metadata on the last sector of the provider. From this results that > > what I want > > to do is not possible, at least my logic tells me that. Since gmirror > wrote > > metadata > > to the last sector of the provider, glabel tries to rewrite it and the > > system stops the > > process to protect the filesystem. But then again for gmirror the > providers > > are > > the two hdd i use for mirroring and for glabel the provider is the mirror > > itself. That's > > again what my logic tells me. So i think there is some kind of separation > > between the > > two modules and things should work. > > > > I have searched a bit but couldn't find any relevant info on labeling a > > mirror. I just > > want to know if this is possible and if it's not I'd like to understand > why. > > > > Labeling a partition is not a must-have but it's sure nice :). > > > > thanks, > > v > > > > -- > > network warrior since 2005 > > _______________________________________________ > > 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" > > ------------------------------ > Get easy photo sharing with Windows LiveT Photos. Drag n' drop > -- network warrior since 2005 From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 12:45:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 883561065673 for ; Wed, 10 Jun 2009 12:45:34 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 199E98FC19 for ; Wed, 10 Jun 2009 12:45:33 +0000 (UTC) (envelope-from andrewlylegould@gmail.com) Received: by fxm20 with SMTP id 20so679009fxm.43 for ; Wed, 10 Jun 2009 05:45:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=edFd9PO2913fCvDsXEbBPAl1Bv+nXwq1X6AUgIp56LE=; b=fsCNvvIWkxryvldsQf78UviZ31Sb5lifJoLYOduBNntXqS5K7rk3RAosKzno/c4DjF vAvt0bofVC1vU27MS3KrH3pctZnK9YF6akt3uue0zPNSU6lYa+DwX3uzWKrqVC1JwQJB ArS7NwMMFy58Lxe7pLiEEpieh1Otjvuwcp2Ck= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=A7Ih0CTgeC8FDRtC7efSz0xlw6kCZgf7F0gs/K3UoYYyOdLE33ZlCh6OZUvmFSZW9q P++hhcfTzY8ya1iela0bCKR3634tlofwuSt5BvhYbE/rUw6oF/me6TRIPbd/otttfQvD 8I5xKSvxmB4uXeLcFroP7Y3wHuuYpzHRUDeeA= MIME-Version: 1.0 Received: by 10.103.24.11 with SMTP id b11mr665202muj.133.1244637932653; Wed, 10 Jun 2009 05:45:32 -0700 (PDT) Date: Wed, 10 Jun 2009 07:45:32 -0500 Message-ID: From: Andrew Gould To: FreeBSD Questions Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: using gutenprint drivers - cups vs foomatic X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 12:45:34 -0000 There is a gutenprint driver for my printer (Epson Stylus Photo 280) that doesn't appear in the gutenprint or foomatic ppd directories in /usr/local/share. It only appears after I install gutenprint-cups, and then it appears in a gutenprint subfolder somewhere under /usr/local/share/cups/. Since many of the installed applications don't seem to want to access the cups printer, I'd like to switch back to lpd rather than always recompiling applications with CUPS support. Will the ppd files under /usr/local/share/cups work with foomatic and lpd? Thanks, Andrew From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 12:53:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C300B1065673 for ; Wed, 10 Jun 2009 12:53:22 +0000 (UTC) (envelope-from bsam@ns.kfs.ru) Received: from ns.kfs.ru (kfs.kfs.ru [194.186.81.194]) by mx1.freebsd.org (Postfix) with ESMTP id 758458FC16 for ; Wed, 10 Jun 2009 12:53:22 +0000 (UTC) (envelope-from bsam@ns.kfs.ru) Received: from bsam by ns.kfs.ru with local (Exim 4.67 (FreeBSD)) (envelope-from ) id 1MEMu5-00019Y-7Z for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 16:27:41 +0400 To: freebsd-questions@freebsd.org References: <20090610075851.6dcf86b3@scorpio> From: Boris Samorodov Date: Wed, 10 Jun 2009 16:27:41 +0400 In-Reply-To: <20090610075851.6dcf86b3@scorpio> (Jerry's message of "Wed, 10 Jun 2009 07:58:51 -0400") Message-ID: <99365170@serv3.int.kfs.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 Sender: "Boris B. Samorodov" Subject: Re: Security Problem: linux-pango-1.10.2.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: Wed, 10 Jun 2009 12:53:23 -0000 On Wed, 10 Jun 2009 07:58:51 -0400 Jerry wrote: > There is a reported security problem with linux-pango-1.10.2.3 in the > ports system. That is preventing me from building the 'nspluginwrapper' > port. Actually, I did build it by using the > "DISABLE_VULNERABILITIES=yes" flag; however, I do not really like doing > it that way. > This problem has been known for awhile now. Does anyone know when this > port will be fixed? The answer is yes, if someone find an rpm package of linux-pango for Fedora Core 4 which is not vulnarable. WBR -- bsam From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 13:33:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17E67106567B for ; Wed, 10 Jun 2009 13:33:52 +0000 (UTC) (envelope-from me@janh.de) Received: from mailhost.uni-hamburg.de (mailhost.uni-hamburg.de [134.100.32.155]) by mx1.freebsd.org (Postfix) with ESMTP id C7A8C8FC1D for ; Wed, 10 Jun 2009 13:33:46 +0000 (UTC) (envelope-from me@janh.de) Received: from localhost (localhost [127.0.0.1]) by mailhost.uni-hamburg.de (Postfix) with ESMTP id 012CF901B7; Wed, 10 Jun 2009 15:33:45 +0200 (CEST) X-Virus-Scanned: by University of Hamburg (RRZ/mailhost) Received: from mailhost.uni-hamburg.de ([127.0.0.1]) by localhost (mailhost.uni-hamburg.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Hh9jqKMyY25C; Wed, 10 Jun 2009 15:33:44 +0200 (CEST) Received: from janh.freebsd (privat-131jes.math.uni-hamburg.de [134.100.221.76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: fmjv004) by mailhost.uni-hamburg.de (Postfix) with ESMTPSA id BC7239001E; Wed, 10 Jun 2009 15:33:44 +0200 (CEST) Message-ID: <4A2FB630.8040408@janh.de> Date: Wed, 10 Jun 2009 15:33:36 +0200 From: Jan Henrik Sylvester User-Agent: Thunderbird 2.0.0.21 (X11/20090405) MIME-Version: 1.0 To: questions-list freebsd Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: disk with high frequency noise only 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, 10 Jun 2009 13:33:52 -0000 The hard disk of a new computer makes annoying high frequency noises -- probably while seeking -- on FreeBSD 7.2-RELEASE. I booted up a Linux live CD and could not hear anything doing the same kind of access. (To test that, I put a ports tree on a FAT partition and did 'cat */*/Makefile' from FreeBSD and Linux.) Using sysutils/ataidle, I changed the AAM to different values with no effect. (The disk does not support APM.) What is different between FreeBSD and Linux in this regard? Is the disk probably broken? (I guess I would be out of luck with support if I cannot reproduce it on a different OS.) The disk is a WDC WD1600AAJS-07PSA0 with firmware 05.06H05. Thanks, Jan Henrik From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 13:35:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 962991065673 for ; Wed, 10 Jun 2009 13:35:22 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id E2ABA8FC18 for ; Wed, 10 Jun 2009 13:35:21 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493580.home.otenet.gr [94.71.93.20]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5ADZKfk021373; Wed, 10 Jun 2009 16:35:20 +0300 Message-ID: <4A2FB698.9090007@otenet.gr> Date: Wed, 10 Jun 2009 16:35:20 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: dhaneshk k References: <139b44430906092312y2a16cb58o3248c1ac9c3f497d@mail.gmail.com> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, valentin.bud@gmail.com Subject: Re: glabel(8) a gmirror(8) doesn't 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: Wed, 10 Jun 2009 13:35:23 -0000 dhaneshk k wrote: > List members; > > http://www.freebsd.org/doc/en/books/handbook/geom-glabel.html > > Starting with FreeBSD 7.2, the glabel(8) class > supports a new label type for UFS file > systems, based on the unique file system id, ufsid. > > Is the above clause applicable in this case ? instead of using tunefs -L > > can we use# glabel status ? > > and can use the ufsid labels of /dev/ufsid/ and edit /etc/fstab entries for the partitions? > > > Yes, exactly as noted in the Handbook's example. Still ufsid labels are not exactly 'memorable' From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 14:02:23 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D0F11065674 for ; Wed, 10 Jun 2009 14:02:23 +0000 (UTC) (envelope-from allceus@host.datatriangle.com) Received: from host.datatriangle.com (host.datatriangle.com [69.16.229.230]) by mx1.freebsd.org (Postfix) with ESMTP id 2CA928FC08 for ; Wed, 10 Jun 2009 14:02:23 +0000 (UTC) (envelope-from allceus@host.datatriangle.com) Received: from allceus by host.datatriangle.com with local (Exim 4.69) (envelope-from ) id 1MENBm-0007VD-DB for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 08:45:58 -0400 To: freebsd-questions@freebsd.org Recieved: Date: Wed, 10 Jun 2009 08:45:58 -0400 From: dr.dawn-elise_snipes@allceus.com Message-ID: <3b1b1c81e896cc8e7f5ef3c901d2078e@localhost.localdomain> X-Priority: 3 X-Mailer: PHPMailer [version 1.73] X-Mailer: phplist v2.10.9 X-MessageID: 10 X-ListMember: freebsd-questions@freebsd.org Precedence: bulk MIME-Version: 1.0 Content-Type: multipart/related; type="text/html"; boundary="b1_3b1b1c81e896cc8e7f5ef3c901d2078e" X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - host.datatriangle.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [32006 32007] / [47 12] X-AntiAbuse: Sender Address Domain - host.datatriangle.com X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: [AllCEUs.com] View Counseling Education Videos Online at Blip.tv X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 14:02:24 -0000 --b1_3b1b1c81e896cc8e7f5ef3c901d2078e Content-Type: text/plain; charset = "UTF-8" Content-Transfer-Encoding: 8bit -View AllCEUs counseling education videos -20% savings code for CEUs, from the already lowest industry cost (code: 4989) Don't want any more message from us, just let us know: http://allceus.com/mail_list/?p=unsubscribe&uid=4499e5ff375326efdcd9e044bebad6f3 Having trouble viewing this email? View it in your browser. To update your preferences visit http://allceus.com/mail_list/?p=preferences&uid=4499e5ff375326efdcd9e044bebad6f3 Dr. Dawn-Elise Snipes dr.dawn-elise_snipes@allceus.com PO BOX 1688 Alachua, FL 32616 -- Powered by PHPlist, www.phplist.com -- --b1_3b1b1c81e896cc8e7f5ef3c901d2078e-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 14:16:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 748C81065677 for ; Wed, 10 Jun 2009 14:16:39 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-pz0-f197.google.com (mail-pz0-f197.google.com [209.85.222.197]) by mx1.freebsd.org (Postfix) with ESMTP id 4AA428FC19 for ; Wed, 10 Jun 2009 14:16:39 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by pzk35 with SMTP id 35so76625pzk.3 for ; Wed, 10 Jun 2009 07:16:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=o4EPZbo/GgOgKduD++Lbn418LL3o/CJbxQVCNKtVxPU=; b=Zb0kscLQWuMBJRbz0cFg24+fhTLrg1SDn8THx8Cq3l4B5tQ7e7jeVexs1l0VmD8M2A 18Scnh6a0zhXWCES0hdcfnpaKF1SN9x6mitjW+75zqBNLcRhiMNEQsrX2bBXQib/F8R0 TDcVFFcAAuL1pKIZgtCTBawTVkVYdYlbN548c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=ExKoVLQ5LqTc4HZC+ryHfXjygHW1XRmvmrr32jWcBlmbI+IjVvoZGYOGGD6Dl9ssEF sjvsXYRWbuKv3xB2LQdFf6ZBYZl4hTiE9xFieWGVSQu25yAUC1n+tZLWbwf4SUxjggKh 77+YqbLOVLikE4yRnF9Vo8jP6QpXDex5MI/Ek= MIME-Version: 1.0 Received: by 10.220.71.10 with SMTP id f10mr999531vcj.13.1244643398403; Wed, 10 Jun 2009 07:16:38 -0700 (PDT) In-Reply-To: <4A2FB630.8040408@janh.de> References: <4A2FB630.8040408@janh.de> Date: Wed, 10 Jun 2009 08:16:38 -0600 Message-ID: From: Tim Judd To: Jan Henrik Sylvester Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: questions-list freebsd Subject: Re: disk with high frequency noise only 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, 10 Jun 2009 14:16:39 -0000 if it's the same high-frequency noise like an alarm, like a trouble indicator.. I had a SCSI that would scream for a few minutes every hour a long time ago. Later I kept up reading and it seemed to indicate an overheating sensor and the alarm trips. is there adequate cooling for that drive, both over and under it? On 6/10/09, Jan Henrik Sylvester wrote: > The hard disk of a new computer makes annoying high frequency noises -- > probably while seeking -- on FreeBSD 7.2-RELEASE. > > I booted up a Linux live CD and could not hear anything doing the same > kind of access. (To test that, I put a ports tree on a FAT partition and > did 'cat */*/Makefile' from FreeBSD and Linux.) > > Using sysutils/ataidle, I changed the AAM to different values with no > effect. (The disk does not support APM.) > > What is different between FreeBSD and Linux in this regard? > > Is the disk probably broken? (I guess I would be out of luck with > support if I cannot reproduce it on a different OS.) > > The disk is a WDC WD1600AAJS-07PSA0 with firmware 05.06H05. > > Thanks, > Jan Henrik > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 14:36:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E419C1065670 for ; Wed, 10 Jun 2009 14:36:50 +0000 (UTC) (envelope-from me@janh.de) Received: from mailhost.uni-hamburg.de (mailhost.uni-hamburg.de [134.100.32.155]) by mx1.freebsd.org (Postfix) with ESMTP id 9B3BC8FC16 for ; Wed, 10 Jun 2009 14:36:50 +0000 (UTC) (envelope-from me@janh.de) Received: from localhost (localhost [127.0.0.1]) by mailhost.uni-hamburg.de (Postfix) with ESMTP id 995BC90050; Wed, 10 Jun 2009 16:36:49 +0200 (CEST) X-Virus-Scanned: by University of Hamburg (RRZ/mailhost) Received: from mailhost.uni-hamburg.de ([127.0.0.1]) by localhost (mailhost.uni-hamburg.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Um4HC39GNGPh; Wed, 10 Jun 2009 16:36:49 +0200 (CEST) Received: from janh.freebsd (privat-131jes.math.uni-hamburg.de [134.100.221.76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: fmjv004) by mailhost.uni-hamburg.de (Postfix) with ESMTPSA id 82DFF900C0; Wed, 10 Jun 2009 16:36:49 +0200 (CEST) Message-ID: <4A2FC501.10809@janh.de> Date: Wed, 10 Jun 2009 16:36:49 +0200 From: Jan Henrik Sylvester User-Agent: Thunderbird 2.0.0.21 (X11/20090405) MIME-Version: 1.0 To: questions-list freebsd References: <4A2FB630.8040408@janh.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Tim Judd Subject: Re: disk with high frequency noise only 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, 10 Jun 2009 14:36:51 -0000 Tim Judd wrote: > On 6/10/09, Jan Henrik Sylvester wrote: >> The hard disk of a new computer makes annoying high frequency noises -- >> probably while seeking -- on FreeBSD 7.2-RELEASE. >> >> I booted up a Linux live CD and could not hear anything doing the same >> kind of access. (To test that, I put a ports tree on a FAT partition and >> did 'cat */*/Makefile' from FreeBSD and Linux.) >> >> Using sysutils/ataidle, I changed the AAM to different values with no >> effect. (The disk does not support APM.) >> >> What is different between FreeBSD and Linux in this regard? >> >> Is the disk probably broken? (I guess I would be out of luck with >> support if I cannot reproduce it on a different OS.) >> >> The disk is a WDC WD1600AAJS-07PSA0 with firmware 05.06H05. > if it's the same high-frequency noise like an alarm, like a trouble No, it does not sound like a deliberate signal. It is more like high frequency scratching at the upper range of the hearable spectrum. I have heard a similar noise from other hard disks, but much more quiet and not quite as high. This one is extremely annoying. It cannot be due to overheating, since it is there from the first boot, but only on FreeBSD -- especially if I access many small files. Thanks, Jan Henrik From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 16:07:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21339106566C for ; Wed, 10 Jun 2009 16:07:27 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id B074E8FC0A for ; Wed, 10 Jun 2009 16:07:26 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 06E227E837; Wed, 10 Jun 2009 08:07:23 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 08:07:16 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <200906100204.n5A24J97018545@dc.cis.okstate.edu> <4a2f738c.vK+04C2hzxx8edYV%perryh@pluto.rain.com> In-Reply-To: <4a2f738c.vK+04C2hzxx8edYV%perryh@pluto.rain.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906100807.18528.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: martin@dc.cis.okstate.edu, perryh@pluto.rain.com Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 16:07:27 -0000 On Wednesday 10 June 2009 00:49:16 perryh@pluto.rain.com wrote: > Martin McCormick wrote: > > Thanks to all. In this case, I made SIGTSTP have the > > same effect in the program that CTRL-C does (SIGINT) so now > > either signal makes the application remove the lock and quit > > gracefully. > > To each his own, I guess. To anyone familiar with the usual > Unix/Linux conventions, this response to ^Z is going to be > thoroughly unexpected. Is there any reasonable way to do > only the minimum cleanup need for the lock to be safely > removed, and then suspend, reacquiring the lock when resumed? Agreed. You're solving the wrong problem by mapping CTRL-Z to CTRL-C. The questions you should be asking are: 1) Why are stale locks bad for the app? 2) Why do stale locks occur to begin with? 3) Do the locks really solve the problem you thought you needed them for to begin with? 4) Why is it not possible to remove the locks if the PID that created them is not instance of said program? -- Mel From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 16:15:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 800171065670 for ; Wed, 10 Jun 2009 16:15:41 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 36B708FC15 for ; Wed, 10 Jun 2009 16:15:41 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 1FD5B7E837; Wed, 10 Jun 2009 08:15:40 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 08:15:34 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <4A2EAF98.70700@eskk.nu> <4A2EBED3.9040300@eskk.nu> In-Reply-To: <4A2EBED3.9040300@eskk.nu> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906100815.35844.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Leslie Jensen Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 16:15:41 -0000 On Tuesday 09 June 2009 11:58:11 Leslie Jensen wrote: > It says > > :file -s /dev/acd0 > > /dev/acd0: data The other possibility is that the CD isn't closed (fixated). UDF is a superset of CD9660 anyway, so even UDF formatted should be mountable with cd9660. -- Mel From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 16:20:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53FED1065673 for ; Wed, 10 Jun 2009 16:20:05 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 93C248FC15 for ; Wed, 10 Jun 2009 16:20:04 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AGJujD017583; Wed, 10 Jun 2009 18:19:56 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AGJumh017580; Wed, 10 Jun 2009 18:19:56 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 18:19:56 +0200 (CEST) From: Wojciech Puchar To: Mel Flynn In-Reply-To: <200906100815.35844.mel.flynn+fbsd.questions@mailing.thruhere.net> Message-ID: References: <4A2EAF98.70700@eskk.nu> <4A2EBED3.9040300@eskk.nu> <200906100815.35844.mel.flynn+fbsd.questions@mailing.thruhere.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Leslie Jensen Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 16:20:05 -0000 > The other possibility is that the CD isn't closed (fixated). UDF is a superset no it is not. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 16:28:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2413E1065686 for ; Wed, 10 Jun 2009 16:28:24 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.103.93]) by mx1.freebsd.org (Postfix) with ESMTP id DB74F8FC0C for ; Wed, 10 Jun 2009 16:28:23 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (localhost.cis.okstate.edu [127.0.0.1]) by dc.cis.okstate.edu (8.14.2/8.13.8) with ESMTP id n5AGSEOF031566 for ; Wed, 10 Jun 2009 11:28:14 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200906101628.n5AGSEOF031566@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 11:28:14 -0500 From: Martin McCormick Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 16:28:24 -0000 Mel Flynn writes: > Agreed. You're solving the wrong problem by mapping CTRL-Z to CTRL-C. The > questions you should be asking are: > 1) Why are stale locks bad for the app? Because if there is one, nobody else in our group can use the app to assign IP addresses. I made it back in 1993 so that only one person could use it at a time because it adds and or deletes records from the DNS and DHCP servers. > 2) Why do stale locks occur to begin with? > 3) Do the locks really solve the problem you thought you needed them for Now, there's an excellent question. They almost never do and when they do, something very bad has happened and it needs immediate attention. It could be that somebody put the program to sleep because it hung as was recently the case or that it choked so to speak which means it abnormally ended. > 4) Why is it not possible to remove the locks if the PID that created > them is > not instance of said program? The locks are owned by root as the program runs setuid to root chmod 4755. On occasion, I find stuff I did 16 years ago and wonder, What was I thinking? I will revisit the signal handler and make it output an error message on CTRL-Z because we don't want it running if it isn't in use. Thanks for points well taken. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 16:53:21 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05A1B106566B for ; Wed, 10 Jun 2009 16:53:21 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id BB8718FC14 for ; Wed, 10 Jun 2009 16:53:20 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id D0D147E837; Wed, 10 Jun 2009 08:53:19 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 08:53:18 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <4A2EAF98.70700@eskk.nu> <200906100815.35844.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906100853.18716.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Wojciech Puchar , Leslie Jensen Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 16:53:21 -0000 On Wednesday 10 June 2009 08:19:56 Wojciech Puchar wrote: > > The other possibility is that the CD isn't closed (fixated). UDF is a > > superset > > no it is not. Well, the 1.02 version ("DVD-video") is, but I see the UDF format has let go of ISO9660 support in later versions. Pity. -- Mel From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 17:04:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC0A51065670 for ; Wed, 10 Jun 2009 17:04:25 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 758EE8FC08 for ; Wed, 10 Jun 2009 17:04:25 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 8E65E7E837; Wed, 10 Jun 2009 09:04:24 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 09:04:23 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <200906101628.n5AGSEOF031566@dc.cis.okstate.edu> In-Reply-To: <200906101628.n5AGSEOF031566@dc.cis.okstate.edu> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906100904.23590.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Martin McCormick Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 17:04:26 -0000 On Wednesday 10 June 2009 08:28:14 Martin McCormick wrote: > Mel Flynn writes: > > Agreed. You're solving the wrong problem by mapping CTRL-Z to CTRL-C. The > > questions you should be asking are: > > 1) Why are stale locks bad for the app? > > Because if there is one, nobody else in our group can use the > app to assign IP addresses. I made it back in 1993 so that only > one person could use it at a time because it adds and or deletes > records from the DNS and DHCP servers. If this is the sole purpose of the program, I would retire it if you're using ISC provided software for these services. rndc and omshell can do all of this using atomic operations. Information is gathered first, then sent in one block to the server, so even if two people try to modify/delete the same record, the one that comes first makes the change, and the second one is handled according to the new information. -- Mel From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 17:39:29 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5FF191065670 for ; Wed, 10 Jun 2009 17:39:29 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 3BE408FC0C for ; Wed, 10 Jun 2009 17:39:29 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=cube.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MERlk-000Ai8-Hi; Wed, 10 Jun 2009 13:39:28 -0400 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by cube.entropy.prv (Postfix) with ESMTP id 098782FB7A97; Wed, 10 Jun 2009 13:39:24 -0400 (EDT) Message-ID: <4A2FEFCB.8050903@FreeBSD.org> Date: Wed, 10 Jun 2009 13:39:23 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Joe Auty References: <552574.63307.qm@web39108.mail.mud.yahoo.com> <4A29D256.4050902@netmusician.org> In-Reply-To: <4A29D256.4050902@netmusician.org> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.1 (/) Cc: bf , freebsd-questions@FreeBSD.org Subject: Re: GCC/GCJ and pdftk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 17:39:29 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Joe Auty wrote: > bf wrote: >> > >>> However, I've also read in the pdftk port logs that gcj is included in >>> GCC 3.4+ when WITHOUT_JAVA in the GCC Makefile is set to no or commented >>> out. So, I compiled GCC with gcj support without a problem, and >> >> >> Oh yes, did you? Really? How? Better look again. >> > > Yes, I did: > > $ ls /usr/local/bin/gcj* > /usr/local/bin/gcj42 /usr/local/bin/gcjh42 > > Hi Joe, I've done some experimentation here on my amd64 virtual machine, and I haven't been able to convince gcc 4.2 to build with libjava/gcj support yet. It doesn't appear to be as simple as commenting out the WITHOUT_JAVA parts of gcc42/Makefile. On my machine, there are directives in the gcc configure script to prevent libjava from building on FreeBSD. However, this could be due to the fact that my VM is running -CURRENT from late last year. Can you send me the output of "uname -a" of the machine where you ran your gcc+libgcj build successfully? Thank you, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFKL+/L0sRouByUApARArZ4AKCIg6Y/M7uYgL3mMRuU0frqFtQdDACfbCov ogJbyz19CmCUhvR+FUBD1PI= =39jV -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 17:51:36 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60DBA106566C for ; Wed, 10 Jun 2009 17:51:36 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 1421A8FC1E for ; Wed, 10 Jun 2009 17:51:35 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by qyk3 with SMTP id 3so1365725qyk.3 for ; Wed, 10 Jun 2009 10:51:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=EP4EKTyZUFkvHblh38Bw8uiRmT6CzuJdTY7PeQPQl80=; b=k/Endi6jfkIXj30tCkjFrna0SHJWpscp2NyU8GXdHmx+3t/5rC4gJ5dFLtpREFPbvM fsQ9iofgZ/I+UdCVeg6DEh84uxEHRIaENui4ZREVl7ws41tCtn/3MV2i1yMCraUU/ysp R6/00REUav9NlJ1gPdtyAMTz/QzRrYq+MECzY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=W8D893RJE09nb5/vNcIwVXJtSnkZ1+U8bsreWtjiEVYeqnL+UtMDk2rgjRkbN1uA2z KX/RKaMn/Xu10HATcFFgy05yhu5MrBfhZKcyoDgx4bT9XHjI5+rHEIEd809KDE1MiEzs MlUC/Nv/soBwKVvLFwHa/+WcCl2Poi/cy681U= MIME-Version: 1.0 Received: by 10.231.16.72 with SMTP id n8mr540226iba.49.1244656295129; Wed, 10 Jun 2009 10:51:35 -0700 (PDT) In-Reply-To: References: <3D527043-AF88-4A26-8029-FD51159E6ABB@yahoo.fr> Date: Wed, 10 Jun 2009 13:51:35 -0400 Message-ID: From: "illoai@gmail.com" To: Daniel Underwood , freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: PDF inventory 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: Wed, 10 Jun 2009 17:51:36 -0000 2009/6/9 Daniel Underwood : > When I enter: > > $ find *.pdf -print0 | xargs -0 pdftotext > > nothing seems to happen. =A0Although there is no error message, the text > files are not created. Any idea why? > Ah, apologies. I was just testing with $ find *.pdf -print0 | xargs -0 cat to see if the pipe itself worked as expected. I guess pdftotext is one of those things I've yet to grok, since on my end all I get is the -h message from pdftotext. PS I'm glad you did find (better) help on the list. --=20 -- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:02:45 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93E17106566B for ; Wed, 10 Jun 2009 18:02:45 +0000 (UTC) (envelope-from kwerrett@enticelabs.com) Received: from mho-01-ewr.mailhop.org (mho-01-ewr.mailhop.org [204.13.248.71]) by mx1.freebsd.org (Postfix) with ESMTP id 61C1C8FC12 for ; Wed, 10 Jun 2009 18:02:45 +0000 (UTC) (envelope-from kwerrett@enticelabs.com) Received: from 69.169.181.4.provo.static.broadweavenetworks.net ([69.169.181.4] helo=remote.enticelabs.com) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1MERrx-000Jwl-0c for freebsd-questions@FreeBSD.org; Wed, 10 Jun 2009 17:45:49 +0000 Received: from SBS.enticelabs.local ([fe80::33ac:1da5:1f2f:4070]) by SBS.enticelabs.local ([fe80::33ac:1da5:1f2f:4070%11]) with mapi; Wed, 10 Jun 2009 11:45:46 -0600 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 69.169.181.4 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18poQMy30jFGnJbPUlcKRz40glpu03NJgI= From: Kate Werrett To: "freebsd-questions@FreeBSD.org" Date: Wed, 10 Jun 2009 11:45:44 -0600 Thread-Topic: Advertising Inquiry Thread-Index: Acnp80fmOQLcugstQtiraSAEpdkwvQ== Message-ID: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Advertising Inquiry X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:02:45 -0000 Are you the right person to talk to about advertising on www.freebsd.org? Thank you, Kate Werrett Publisher Analyst EnticeLabs, Inc. (801) 692-4058 kwerrett@enticelabs.com From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:09:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C234C106566B for ; Wed, 10 Jun 2009 18:09:14 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.169]) by mx1.freebsd.org (Postfix) with ESMTP id 9567D8FC0C for ; Wed, 10 Jun 2009 18:09:14 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so377500wfg.7 for ; Wed, 10 Jun 2009 11:09:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=FsjW1K8l4kobllPvTfaNarWCmLab5Hru+vdQ3O6vEhg=; b=Uaw+yMrtH5bdBhyOGbAWZKGTeYO1joDfr7YNZGTpJQpFu4uCUroZ2Mlg56QuSipg7w gNoECTzS4oBsq8BrJ7YhrF44BWGz5ZgDZ4WDheIRE9y+QYRSBwSUk0j8gYuwsyblYsTZ nFTFCEj2CTKSBMD5XNRsbbDRkfouUSew8SX6A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type:content-transfer-encoding; b=seUJqYTehZ3T8eUF95Z3fo6Y/Upo9mlJlDoYDnGhOnQOdqGOrjyvNYZ5RCkyeY0NVL /FV804FqEvyPMmS/RFpVYadsp3uZAIhIEtzt55g1hIe444NLgtdIrifUfolo/D1H6r25 zgNxF5VtSoAVGnB2uWWh40wkEObsvnh7iCuGc= MIME-Version: 1.0 Sender: christopher.maness@gmail.com Received: by 10.220.90.144 with SMTP id i16mr1381778vcm.14.1244655927908; Wed, 10 Jun 2009 10:45:27 -0700 (PDT) Date: Wed, 10 Jun 2009 10:45:27 -0700 X-Google-Sender-Auth: a33886ed971ec504 Message-ID: From: Chris Maness To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: AFP Client 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: Wed, 10 Jun 2009 18:09:15 -0000 Is there an AFP client for FreeBSD? I have a mac with a gargantuan hard drive, and I would like to back up my FreeBSD server to it, and back up my mac to my FreeBSD server. I have seen where FreeBSD can be an AFP server, but there is little information on the client. Any suggestions? Thanks, Chris Maness From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:11:53 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1C03106564A for ; Wed, 10 Jun 2009 18:11:53 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id 751E58FC13 for ; Wed, 10 Jun 2009 18:11:53 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from vanquish.ws.pitbpa0.priv.collaborativefusion.com (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTPSA id 596E4EBC0A; Wed, 10 Jun 2009 14:11:52 -0400 (EDT) Date: Wed, 10 Jun 2009 14:11:51 -0400 From: Bill Moran To: Kate Werrett Message-Id: <20090610141151.e84b31b9.wmoran@potentialtech.com> In-Reply-To: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> References: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.14.7; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@FreeBSD.org" Subject: Re: Advertising Inquiry X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:11:53 -0000 In response to Kate Werrett : > Are you the right person to talk to about advertising on www.freebsd.org? > Thank you, Obviously, you didn't look at the site. There is no advertising on it. There is nobody to contact. -- Bill Moran http://www.potentialtech.com http://people.collaborativefusion.com/~wmoran/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:15:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9CFE71065677 for ; Wed, 10 Jun 2009 18:15:40 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id 5E69D8FC0A for ; Wed, 10 Jun 2009 18:15:40 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n5AIFdRs001204 for ; Wed, 10 Jun 2009 14:15:39 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n5AIFb6c001202; Wed, 10 Jun 2009 14:15:37 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id D68D3BEDB; Wed, 10 Jun 2009 14:13:35 -0400 (EDT) To: freebsd-questions@freebsd.org In-reply-to: <70C0964126D66F458E688618E1CD008A0793EF14@WADPEXV0.waddell.com> (Ggatten@waddell.com) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090610181335.D68D3BEDB@kev.msw.wpafb.af.mil> Date: Wed, 10 Jun 2009 14:13:35 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Re: OT - help w configure, make, etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 18:15:41 -0000 This is a bit off-topic, but the same basic method works pretty well under BSD, and it's useful when you don't have exactly the port you need or the exact version of a library that a port expects. >> On Tue, 9 Jun 2009 12:06:04 -0500, >> "Gary Gatten" said: G> Yep, one reason I thought OT would be best is I'm trying to move this G> app to a Solaris 10 x86 system (don't ask). Here's what I did under Solaris-10. First, build the stuff that GNU autotools needs, like GNU m4: me% wget http://ftp.gnu.org/gnu/m4/m4-1.4.13.tar.gz me% gtar xzf m4-1.4.13.tar.gz me% cd m4-1.4.13 me% CC=gcc CFLAGS=-O2 ./configure --mandir=/usr/local/man \ --program-prefix=g me% make me% make check root# make install me% make distclean me% gm4 --version m4 (GNU M4) 1.4.13 Copyright (C) 2009 Free Software Foundation, Inc. The program-prefix part installs it as "gm4", just in case your vendor version of m4 is unique in some way. me% wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.63.tar.gz me% gtar xzf autoconf-2.63.tar.gz me% cd autoconf-2.63 me% CC=gcc CFLAGS=-O2 EMACS=no ./configure --mandir=/usr/local/man me% make me% make check root# make install me% make distclean You'll also need automake to get a recent version of "aclocal": me% wget http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz me% gtar xzf automake-1.11.tar.gz me% cd automake-1.11 me% CC=gcc CFLAGS=-O2 ./configure --mandir=/usr/local/man me% make me% make check root# make install me% make clean As far as recreating the build system for ntop, that's a snap after the auto-stuff is installed: me% wget http://downloads.sourceforge.net/ntop/ntop-3.3.10.tar.gz me% gtar xzf ntop-3.3.10.tar.gz me% cd ntop-3.3.10 me% ./autogen.sh However, "ntop" depends on "rrdtool" being installed, and that drags in everything on Earth: me% wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3.8.tar.gz me% gtar xzf rrdtool-1.3.8.tar.gz me% cd rrdtool-1.3.8 me% cat /tmp/doconfig #!/bin/sh CC=gcc CFLAGS=-O2 LDFLAGS="-L/opt/sfw/lib" CPPFLAGS="-I/opt/sfw/include" LIBTOOL=/opt/sfw/bin/libtool export CC CFLAGS LDFLAGS CPPFLAGS LIBTOOL ./configure --disable-nls --disable-ruby --disable-libintl exit 0 me% sh /tmp/doconfig checking build system type... i386-pc-solaris2.10 ... I could not find a working copy of cairo-png I could not find a working copy of cairo-svg I could not find a working copy of cairo-pdf I could not find a working copy of cairo-ps I could not find a working copy of pangocairo configure: error: Please fix the library issues listed and try again. At this point, I was in dependency hell. I tried messing with the load and include compiler flags to get to the versions under /opt/sfw, but I had no luck. There's probably some really easy way to build this, or I could just build the required libraries, but I didn't have time to mess with it. -- Karl Vogel I don't speak for the USAF or my company A host of nameservers --collective nouns, June 1999 LINGUIST From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:17:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E1111065678 for ; Wed, 10 Jun 2009 18:17:42 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: from mail-bw0-f214.google.com (mail-bw0-f214.google.com [209.85.218.214]) by mx1.freebsd.org (Postfix) with ESMTP id 149388FC18 for ; Wed, 10 Jun 2009 18:17:41 +0000 (UTC) (envelope-from frlinux@gmail.com) Received: by bwz10 with SMTP id 10so328876bwz.43 for ; Wed, 10 Jun 2009 11:17:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=QN89JcbL37R2ZCN2dKitLF9FQ1PVp+XCrIzRm1VhAMs=; b=gFhER+9EmZZVRbvkKdwxTdrw/WxLo5NIigAP6TZuGekG2nukPFMqlawLbXbfWMwbGW NU1ENof0yyLIiqaECDet3LnKK9Z1ijcjy6Btgjg+Ycji9oDD8/XjyApyVGpWb1ojVsi0 SGfJdQMfEigsB8wIoyX1v1lLT59ChJHWM4Suk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=vNxmmjaygfsnq6Hy+3ok9hGfdvVyYoKb3c0Kw+3o3/F0+wV/1QoszxZn3D+UYuocRF GYvECsSebY0WF2fhwBtnbX10JDaqIAs8q1cNZsX9jcJNZEUp1sSWwzyKNaqQiElYOMaw V2xTABvJ51WD+Ym2QLm6Zk0Ov4e/jqMlD0VH4= MIME-Version: 1.0 Received: by 10.223.106.14 with SMTP id v14mr1521913fao.49.1244657860901; Wed, 10 Jun 2009 11:17:40 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 19:17:40 +0100 Message-ID: From: FRLinux To: Chris Maness Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 18:17:43 -0000 On Wed, Jun 10, 2009 at 6:45 PM, Chris Maness wrote: > an AFP server, but there is little information on the client. =A0Any > suggestions? rsync ? Cheers, Steph From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:24:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81B02106564A for ; Wed, 10 Jun 2009 18:24:15 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 5D9968FC17 for ; Wed, 10 Jun 2009 18:24:15 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=cube.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MEST1-000BHP-34; Wed, 10 Jun 2009 14:24:12 -0400 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by cube.entropy.prv (Postfix) with ESMTP id 023652FB8074; Wed, 10 Jun 2009 14:24:06 -0400 (EDT) Message-ID: <4A2FFA41.7080805@FreeBSD.org> Date: Wed, 10 Jun 2009 14:24:01 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Chris Maness References: In-Reply-To: X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.1 (/) Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client in FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 18:24:15 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Chris Maness wrote: > Is there an AFP client for FreeBSD? I have a mac with a gargantuan > hard drive, and I would like to back up my FreeBSD server to it, and > back up my mac to my FreeBSD server. I have seen where FreeBSD can be > an AFP server, but there is little information on the client. Any > suggestions? > > Thanks, > Chris Maness Hi Chris, It looks like this has some potential: http://sourceforge.net/projects/afpfs-ng Care to write a port for it? Cheers, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFKL/pB0sRouByUApARAi9SAJ4q1KubS8TvgS3sXPakz1L/maP7NgCeJuul XjHUeICU7DBm2DlQy53U3L0= =0PRJ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:31:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69C71106564A for ; Wed, 10 Jun 2009 18:31:04 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.24]) by mx1.freebsd.org (Postfix) with ESMTP id B9ABD8FC14 for ; Wed, 10 Jun 2009 18:31:03 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so540632qwe.7 for ; Wed, 10 Jun 2009 11:31:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=P3Ez0YX7xr3wcu5HRmAr39/w+b8iSeTKjvDtt/Dm1r8=; b=KLmUrOFj+0OhiXR06XU6MYn+6ZdFsG0R0p1hZUSWIQvFhSw2NcMi3dLW3GxO5hwRNU E7dsuZhebnPM8efKsGNSJ+MSCJ6RCJibAsHfBsrvmO71zvS6Q3UYRyLjYLp5vNRTBd6b CkgXDOP3fFc2waVY3+fKQzDLyYrwhbRiRsQk4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=FfBuvyly0FGj4PxVXYMNJqfG5EfIro12dtdbj/9MsKxzdtQmzuyNCOSYph2+WODhvy w8qRwnYbwgqJ0FoxTyXzTyGzcsYNxC6yagovAMC+viVTfY6Kdn6rKP6GgVZ9SDrewvyX u60QLLqwUpgpnR/ZHhNLK4ARRZ22iT9jKtgl8= MIME-Version: 1.0 Sender: christopher.maness@gmail.com Received: by 10.220.100.5 with SMTP id w5mr1425854vcn.62.1244658662590; Wed, 10 Jun 2009 11:31:02 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 11:31:02 -0700 X-Google-Sender-Auth: c61a440b9b9df698 Message-ID: From: Chris Maness To: FRLinux Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 18:31:04 -0000 >> an AFP server, but there is little information on the client. =A0Any >> suggestions? > > rsync ? > > Cheers, > Steph > Well I am using the dump command, and I am not sure if I want to dump to the same partition that I am backing up. Can I use rsync to pipe the dump output via ssh? Thanks, Chris From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:36:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 60CEB1065674 for ; Wed, 10 Jun 2009 18:36:59 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id EE93A8FC16 for ; Wed, 10 Jun 2009 18:36:58 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by qyk3 with SMTP id 3so1412282qyk.3 for ; Wed, 10 Jun 2009 11:36:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=hxdtkTRY+caHDJZkrBFR8OD92Dh1oXkQvuCq4lrjSP8=; b=hzrDYoDHTCAaqzuJE7RllCseX2DmUr1py0WGlYPsYuRjuiV/2vBJ9eVE+9IK0Ui+Om Z9iCtYOKTT/XgWwwJo7ZWFYM1VlWoKdpuaI5d+8s3vkCiO+Z9kaAd9cT8RJjxgXp3CQz 6Wtcuy9SiPu4Fa/qzTHWrd6cTvfvDjPgXQ+p4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=f2mdJzEO4NTfDAAXO9wlveHhWoDWeY4YIkG6CGmIiaETFE0JNA5ukkg0LwQkUDdkWz /LZOYmckzvF9X03Pp7bKxm+OaCgqrNRE7WpVkFXg9dHsMLZPKxzcVb7FDyfC5xy6vXo0 d3akmON3UnVaOtP8cfez9aDRHhfSJKctpPC94= MIME-Version: 1.0 Sender: christopher.maness@gmail.com Received: by 10.220.96.204 with SMTP id i12mr1428825vcn.94.1244659018254; Wed, 10 Jun 2009 11:36:58 -0700 (PDT) In-Reply-To: <4A2FFA41.7080805@FreeBSD.org> References: <4A2FFA41.7080805@FreeBSD.org> Date: Wed, 10 Jun 2009 11:36:58 -0700 X-Google-Sender-Auth: 6086e8e3eedf76b4 Message-ID: From: Chris Maness To: glarkin@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 18:36:59 -0000 On Wed, Jun 10, 2009 at 11:24 AM, Greg Larkin wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Chris Maness wrote: >> Is there an AFP client for FreeBSD? =A0I have a mac with a gargantuan >> hard drive, and I would like to back up my FreeBSD server to it, and >> back up my mac to my FreeBSD server. =A0I have seen where FreeBSD can be >> an AFP server, but there is little information on the client. =A0Any >> suggestions? >> >> Thanks, >> Chris Maness > > Hi Chris, > > It looks like this has some potential: > http://sourceforge.net/projects/afpfs-ng > > Care to write a port for it? > > Cheers, > Greg > - -- > Greg Larkin Yea, I was looking for a port for it, but there isn't any. I don't have the time right now to port it or start a new port. Thanks, Chris From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:37:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4176A1065687 for ; Wed, 10 Jun 2009 18:37:58 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.247]) by mx1.freebsd.org (Postfix) with ESMTP id F15DE8FC24 for ; Wed, 10 Jun 2009 18:37:56 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by an-out-0708.google.com with SMTP id c3so515758ana.13 for ; Wed, 10 Jun 2009 11:37:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=24DPlbPMnx3iQJlOuWqvUL/tkbJuBeOlh0IKv8ftHtU=; b=WpBaEChq1iHpRRNw6wiwAaSdXDpPk15z3cKWlG9qKAujpqs0kboVRELu4lJMDU1BuH d4rY/2FW8yg36MwQWcdgibkpAFICeL+UNTXQMRbflDG4fYk9yhTFiYJsNdAsYabxYlqu aDtMDuV1xCw85QYA8/oVs9mN63hqM9qK2jkyc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=cOUT41x+3t1cLK+tQuyuRKMOAfKvyvLU9wrDR3EmHyvu8OV3LiWLUHe+K/7S4ixVf8 MdfIJcZzXcJ84tWKW4LAXpPiw+lt4wdfa3OhIt9Qsx5kToK4b0iM7+OlVe1AlYjNSRil t7OrxIEcp2RvhqNVcXvuXqPPQu/F2vDJE7+UA= MIME-Version: 1.0 Received: by 10.100.227.18 with SMTP id z18mr1715763ang.67.1244659076229; Wed, 10 Jun 2009 11:37:56 -0700 (PDT) Date: Wed, 10 Jun 2009 11:37:56 -0700 Message-ID: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> From: Steve Franks To: FreeBSD Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: devd or devfs for ucom? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:37:58 -0000 I'm having trouble making my ucom devices public, following the handbook (had it working on 7.0, but had a disk crash). So, should I be using devd.conf or devfs.rules? They sure seem built to do the same thing to me... Thanks, Steve From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:46:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 703E210656C1 for ; Wed, 10 Jun 2009 18:46:06 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr10.xs4all.nl (smtp-vbr10.xs4all.nl [194.109.24.30]) by mx1.freebsd.org (Postfix) with ESMTP id 04CAA8FC16 for ; Wed, 10 Jun 2009 18:46:05 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr10.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5AIk49l021501; Wed, 10 Jun 2009 20:46:04 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 45DF2BA8E; Wed, 10 Jun 2009 20:46:04 +0200 (CEST) Date: Wed, 10 Jun 2009 20:46:04 +0200 From: Roland Smith To: Steve Franks Message-ID: <20090610184604.GA1102@slackbox.xs4all.nl> References: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="RnlQjJ0d97Da+TV1" Content-Disposition: inline In-Reply-To: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: FreeBSD Mailing List Subject: Re: devd or devfs for ucom? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:46:07 -0000 --RnlQjJ0d97Da+TV1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 10, 2009 at 11:37:56AM -0700, Steve Franks wrote: > I'm having trouble making my ucom devices public, following the > handbook (had it working on 7.0, but had a disk crash). >=20 > So, should I be using devd.conf or devfs.rules? They sure seem built > to do the same thing to me... For setting device permissions, you should use devfs.rules in this case, since USB devices can come and go at any time. devfs.conf is for devices present at boot time. See devfs.rules(5) and devfs.conf(5). The purpose of devd is more to perform other actions (e.g. run a script or program) if a certain event occurs. See e.g. devd.conf(5). Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --RnlQjJ0d97Da+TV1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkov/2wACgkQEnfvsMMhpyXI0wCeIlpaqLWzBaTDFsl5NSaCt3J3 zskAnR/ZqefXG/aBp44XqYBSvz5bRfGV =zn6M -----END PGP SIGNATURE----- --RnlQjJ0d97Da+TV1-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:47:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 345F31065678 for ; Wed, 10 Jun 2009 18:47:02 +0000 (UTC) (envelope-from freebsd-questions@pp.dyndns.biz) Received: from iph2.telenor.se (iph2.telenor.se [195.54.127.133]) by mx1.freebsd.org (Postfix) with ESMTP id B2FE78FC13 for ; Wed, 10 Jun 2009 18:47:01 +0000 (UTC) (envelope-from freebsd-questions@pp.dyndns.biz) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AqMCALOZL0rDNmV4mWdsb2JhbACBT5ZkAQEBAQEICwoHErd5hA0F X-IronPort-AV: E=Sophos;i="4.42,197,1243807200"; d="scan'208";a="17558447" Received: from ironport.bredband.com ([195.54.101.120]) by iph2.telenor.se with ESMTP; 10 Jun 2009 20:36:28 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvYdACuaL0pV4jsLPGdsb2JhbACBT5ZaAQEBATa4BYQNBQ X-IronPort-AV: E=Sophos;i="4.42,197,1243807200"; d="scan'208";a="535904420" Received: from c-0b3be255.107-1-64736c10.cust.bredbandsbolaget.se (HELO gatekeeper.pp.dyndns.biz) ([85.226.59.11]) by ironport1.bredband.com with ESMTP; 10 Jun 2009 20:36:27 +0200 Received: from [192.168.69.67] (phobos [192.168.69.67]) by gatekeeper.pp.dyndns.biz (8.14.3/8.14.3) with ESMTP id n5AIaPS5087012 for ; Wed, 10 Jun 2009 20:36:26 +0200 (CEST) (envelope-from freebsd-questions@pp.dyndns.biz) Message-ID: <4A2FFD29.9020905@pp.dyndns.biz> Date: Wed, 10 Jun 2009 20:36:25 +0200 From: =?ISO-8859-1?Q?Morgan_Wesstr=F6m?= User-Agent: Thunderbird 2.0.0.21 (X11/20090430) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Python 2.6 and upgrade-site-packages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:47:02 -0000 I haven't performed the upgrade from 2.5 to 2.6 yet but I notice my /usr/local/lib/python2.5/site-packages is empty. Does that mean I can skip running upgrade-site-packages afterwards and avoid the problems with portmaster, currently discussed on the list? /Morgan From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:47:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67DF510656A6 for ; Wed, 10 Jun 2009 18:47:15 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from mail-yx0-f200.google.com (mail-yx0-f200.google.com [209.85.210.200]) by mx1.freebsd.org (Postfix) with ESMTP id 20A288FC14 for ; Wed, 10 Jun 2009 18:47:14 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by yxe38 with SMTP id 38so227865yxe.3 for ; Wed, 10 Jun 2009 11:47:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=fTQButXEsKSsEARosgaWXxVk9+9KcDbk2TAhU/XjJeI=; b=DF20uP1/uvyZ8Tc/z7eB52+n83ff/L9zxWBKwa0IUHr8gAR0i/YMP9ghGQdjK8KFdJ 42H91PonmCmr6nGUKzuHTSMig1tXZTA7q7voBYcyh5cuAlY7EB0QKnBfGgHtEFeCkXer nLnQyKWKbcB88FOiFHnoYXZAkz4Gi/gx1imxM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=CPy7oY3JCDla2EE1/w0wsSnvrq5EOZznYXVzhARuPV5yJH35ROIa0nhIJ0uusBZxzp wx7C5MNndl6KsWWB0fpvmw8+oCdh1kQqgNEd6agOlgyeNidTkC6Uu4VIcwVBFsfZ1QeH rx/tCiIXtwlgHjazKEJjTGIIRDJ+ZSIKAnc+A= MIME-Version: 1.0 Received: by 10.100.197.7 with SMTP id u7mr1726300anf.108.1244659634411; Wed, 10 Jun 2009 11:47:14 -0700 (PDT) In-Reply-To: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> References: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> Date: Wed, 10 Jun 2009 11:47:14 -0700 Message-ID: <539c60b90906101147r222a3faeg9ccf3195dc6c3d4b@mail.gmail.com> From: Steve Franks To: FreeBSD Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: devd or devfs for ucom? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:47:15 -0000 On Wed, Jun 10, 2009 at 11:37 AM, Steve Franks wro= te: > I'm having trouble making my ucom devices public, following the > handbook (had it working on 7.0, but had a disk crash). > > So, should I be using devd.conf or devfs.rules? =A0They sure seem built > to do the same thing to me... > > Thanks, > Steve > While I wouldn't mind an answer to that question, it's actually working; however, my program that uses libftdi & libusb to talk to my ugen still needs to run as sudo to see the device - but if I run chmod 666 /dev/* (which I'm sure is a bad idea), I don't need sudo; what device is required for libusb besides ugen? The hub? Best, Steve From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:52:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14B2E1065676 for ; Wed, 10 Jun 2009 18:52:15 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 3160C8FC2A for ; Wed, 10 Jun 2009 18:52:14 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=cube.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MESu8-000BbL-7j; Wed, 10 Jun 2009 14:52:12 -0400 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by cube.entropy.prv (Postfix) with ESMTP id DBECA2FB83EF; Wed, 10 Jun 2009 14:52:07 -0400 (EDT) Message-ID: <4A3000D6.1020404@FreeBSD.org> Date: Wed, 10 Jun 2009 14:52:06 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Chris Maness References: <4A2FFA41.7080805@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.6 (/) Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client in FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 18:52:15 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Chris Maness wrote: > On Wed, Jun 10, 2009 at 11:24 AM, Greg Larkin wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Chris Maness wrote: >>> Is there an AFP client for FreeBSD? I have a mac with a gargantuan >>> hard drive, and I would like to back up my FreeBSD server to it, and >>> back up my mac to my FreeBSD server. I have seen where FreeBSD can be >>> an AFP server, but there is little information on the client. Any >>> suggestions? >>> >>> Thanks, >>> Chris Maness >> Hi Chris, >> >> It looks like this has some potential: >> http://sourceforge.net/projects/afpfs-ng >> >> Care to write a port for it? >> >> Cheers, >> Greg >> - -- >> Greg Larkin > > Yea, I was looking for a port for it, but there isn't any. I don't > have the time right now to port it or start a new port. > > Thanks, > Chris Hi Chris, Will it at least compile on your system? If it does, and it works as expected, there's no need to write a port for it right away. If you're interested in adding it to the ports tree at some point later, I would be happy to provide some guidance. Cheers, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFKMADW0sRouByUApARAvonAJ0X+jCaivFtkWFXztoMpZBr/vR0IQCcDNUY o3n9jXe2ulzJr0dOXMa3yk4= =pYt7 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 18:58:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 597AE106566B for ; Wed, 10 Jun 2009 18:58:42 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.freebsd.org (Postfix) with ESMTP id C73088FC15 for ; Wed, 10 Jun 2009 18:58:41 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr13.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5AIwe4F024991; Wed, 10 Jun 2009 20:58:40 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 5A7D2BA8E; Wed, 10 Jun 2009 20:58:40 +0200 (CEST) Date: Wed, 10 Jun 2009 20:58:40 +0200 From: Roland Smith To: Steve Franks Message-ID: <20090610185840.GA1521@slackbox.xs4all.nl> References: <539c60b90906101137v542a6185s5ffe06407759da1f@mail.gmail.com> <539c60b90906101147r222a3faeg9ccf3195dc6c3d4b@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: <539c60b90906101147r222a3faeg9ccf3195dc6c3d4b@mail.gmail.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: FreeBSD Mailing List Subject: Re: devd or devfs for ucom? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 18:58:42 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 10, 2009 at 11:47:14AM -0700, Steve Franks wrote: > On Wed, Jun 10, 2009 at 11:37 AM, Steve Franks w= rote: > > I'm having trouble making my ucom devices public, following the > > handbook (had it working on 7.0, but had a disk crash). > > > > So, should I be using devd.conf or devfs.rules? =A0They sure seem built > > to do the same thing to me... > > > > Thanks, > > Steve > > >=20 > While I wouldn't mind an answer to that question, it's actually > working; however, my program that uses libftdi & libusb to talk to my > ugen still needs to run as sudo to see the device - but if I run chmod > 666 /dev/* (which I'm sure is a bad idea), I don't need sudo; what > device is required for libusb besides ugen? The hub? It will need access to /dev/usb* My solution was to create a group called 'usb', adding my user-id as a member, and set that as the group of /dev/usb*, with permissions 0660: ------- /etc/devfs.rules excerpt ------- [myrules=3D10] add path 'uscanner*' mode 0660 group usb add path 'usb*' mode 0660 group usb add path 'ugen*' mode 0660 group usb ------- /etc/devfs.rules excerpt ------- ------- /etc/rc.conf excerpt ------- # Set the default devfs ruleset. devfs_system_ruleset=3D"myrules" ------- /etc/rc.conf excerpt ------- Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkowAmAACgkQEnfvsMMhpyXDswCghmYQlnEcHelHhp/6C/MVQpyO rtUAn2C94z4b5yQRhUEG34Jow1DX6ZQK =bN0N -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:03:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A3441065692 for ; Wed, 10 Jun 2009 19:03:43 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 1CDC48FC15 for ; Wed, 10 Jun 2009 19:03:41 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AJ3Yj0018176; Wed, 10 Jun 2009 21:03:34 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AJ3Wjn018173; Wed, 10 Jun 2009 21:03:33 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 21:03:32 +0200 (CEST) From: Wojciech Puchar To: Mel Flynn In-Reply-To: <200906100853.18716.mel.flynn+fbsd.questions@mailing.thruhere.net> Message-ID: References: <4A2EAF98.70700@eskk.nu> <200906100815.35844.mel.flynn+fbsd.questions@mailing.thruhere.net> <200906100853.18716.mel.flynn+fbsd.questions@mailing.thruhere.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Leslie Jensen Subject: Re: Need advise on how to mount certain CD's X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 19:03:43 -0000 > > Well, the 1.02 version ("DVD-video") is, but I see the UDF format has let go > of ISO9660 support in later versions. Pity. but the CD/DVD must be "finished" so UDF incremental format is scanned and ISO data generated. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:05:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C24821065686 for ; Wed, 10 Jun 2009 19:05:47 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id 7FAC28FC1D for ; Wed, 10 Jun 2009 19:05:42 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so530414ywe.13 for ; Wed, 10 Jun 2009 12:05:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=3JbWIcgQReuuK704bM1rtNMyImOIw0SiexVlzC/BQJ4=; b=VfCUXAtz6LMX+rhiHNsWFcPNJzZlBCvtocHakKB/ghoqFTCTNkWBdM4PR4zTnHUIki d26AdGJ7Um3+ygCD7GS13SZ7bQRV17qyKT1HYIdgmbFAtCeg3HbT8CauPRRu1dhLY5ZR DiNAXTNdrXHauSyW5U36bYhVe8LNIzfIYhUQ0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=wvj7pV0Kr/GWI2RftRl4ls1gLVCjS0cqffOBGyaEFYrHPcK2+Aa5GYbyfPwpu8dWHc ZtHdMrp0MGNKOFnDAIB9u9KnBzhRMAdc9V/E9XRG5uajz9I7RTR99iGDVo5YllsRuckd pXVeLPzKmuOQJ5xVSrrLEThFtSEP4yojuw5qU= MIME-Version: 1.0 Received: by 10.100.172.16 with SMTP id u16mr1750023ane.85.1244660738551; Wed, 10 Jun 2009 12:05:38 -0700 (PDT) Date: Wed, 10 Jun 2009 12:05:38 -0700 Message-ID: <539c60b90906101205g5c1281k34ed5b5c69666df4@mail.gmail.com> From: Steve Franks To: Roland Smith Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD Mailing List Subject: Re: ugen device no permissions for libusb [was: Re: devd or devfs for ucom?] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 19:05:48 -0000 >> While I wouldn't mind an answer to that question, it's actually >> working; however, my program that uses libftdi & libusb to talk to my >> ugen still needs to run as sudo to see the device - but if I run chmod >> 666 /dev/* (which I'm sure is a bad idea), I don't need sudo; what >> device is required for libusb besides ugen? =A0The hub? > > It will need access to /dev/usb* > > My solution was to create a group called 'usb', adding my user-id as a > member, and set that as the group of /dev/usb*, with permissions 0660: > > ------- /etc/devfs.rules excerpt ------- > [myrules=3D10] > add path 'uscanner*' mode 0660 group usb > add path 'usb*' mode 0660 group usb > add path 'ugen*' mode 0660 group usb > ------- /etc/devfs.rules excerpt ------- > > ------- /etc/rc.conf excerpt ------- > # Set the default devfs ruleset. > devfs_system_ruleset=3D"myrules" > ------- /etc/rc.conf excerpt ------- Ah! Perfect, that was the ticket - I didn't have permissions for the usb device, even though I had permissions for ugen. Should've occurred to me sooner. Been running it under sudo for a few weeks now... Thanks, Roland, Steve From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:05:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 507E5106567A for ; Wed, 10 Jun 2009 19:05:54 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 8CBF08FC12 for ; Wed, 10 Jun 2009 19:05:53 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AJ5ABQ018191; Wed, 10 Jun 2009 21:05:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AJ57N4018188; Wed, 10 Jun 2009 21:05:10 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 21:05:07 +0200 (CEST) From: Wojciech Puchar To: Chris Maness In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 19:05:54 -0000 MacOS X is unix-based. All it's GUI and other isn't unixlike, but base system is. You may compile unix commands on it. Maybe just ftpd, or rsync? On Wed, 10 Jun 2009, Chris Maness wrote: > Is there an AFP client for FreeBSD? I have a mac with a gargantuan > hard drive, and I would like to back up my FreeBSD server to it, and > back up my mac to my FreeBSD server. I have seen where FreeBSD can be > an AFP server, but there is little information on the client. Any > suggestions? > > Thanks, > Chris Maness > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:06:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DE8E106564A for ; Wed, 10 Jun 2009 19:06:26 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 453B98FC13 for ; Wed, 10 Jun 2009 19:06:24 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AJ5jD3018198; Wed, 10 Jun 2009 21:05:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AJ5jfW018195; Wed, 10 Jun 2009 21:05:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Wed, 10 Jun 2009 21:05:45 +0200 (CEST) From: Wojciech Puchar To: Chris Maness In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FRLinux , freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 19:06:26 -0000 > Well I am using the dump command, and I am not sure if I want to dump > to the same partition that I am backing up. > > Can I use rsync to pipe the dump output via ssh? you don't need rsync to it. you need dump and ssh - as you said From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:06:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A16010656C5 for ; Wed, 10 Jun 2009 19:06:32 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id 2BA238FC25 for ; Wed, 10 Jun 2009 19:06:31 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n5AJ6VMB004855 for ; Wed, 10 Jun 2009 15:06:31 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n5AJ6V1s004854; Wed, 10 Jun 2009 15:06:31 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id 6B89ABEDB; Wed, 10 Jun 2009 15:06:06 -0400 (EDT) To: freebsd-questions@freebsd.org In-reply-to: <200906090945.48548.kirk@strauser.com> (message from Kirk Strauser on Tue, 9 Jun 2009 09:45:48 -0500) Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090610190606.6B89ABEDB@kev.msw.wpafb.af.mil> Date: Wed, 10 Jun 2009 15:06:06 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 19:06:32 -0000 >> On Tue, 9 Jun 2009 03:10:46 am Matthew Seaman wrote: M> Or store your data in a RDBMS rather than in the filesystem. >> On Tue, 9 Jun 2009 09:45:48 -0500, Kirk Strauser said: K> Hear, hear. I'm hard pressed to imagine why you'd need 100M 1KB files. DBs are great when you have structured data, but semi-structured text (like email) makes for a very poor fit. To see why, have a look at http://www.memoryhole.net/~kyle/databaseemail.html If you really need to store 100 million smallish chunks of information, consider using zip. Create 256 folders named 00-ff: #!/bin/sh hex='0 1 2 3 4 5 6 7 8 9 a b c d e f' for x in $hex ; do for y in $hex ; do mkdir ${x}${y} done done exit 0 Use the hash of your choice to map the name of each chunk to one of 256 zipfiles under each directory. This gives you 64k zipfiles, and if you put 1500 or so chunks in each one, you're pretty close to 100 million. me% cat mkchunks #!/usr/bin/perl -w for $chunk (@ARGV) { $_ = chunk2file($chunk); $file = "$1/$2.zip" if m/(..)(..)/; print "$file $chunk\n"; } exit(0); sub chunk2file { my $str = shift; my ($byte, $sum); use integer; $sum = 0; foreach $byte (unpack("C*", $str)) { # SDBM hash $sum = $byte + 65587 * $sum; } $sum &= 0xffff; # keep lowest 16 bits no integer; return sprintf("%4.4x", $sum); } me% ./mkchunks freebsd solaris 16/f7.zip freebsd ca/1f.zip solaris You'll get a better distribution if you use a hash like Digest::SHA1. -- Karl Vogel I don't speak for the USAF or my company People like you are the reason people like me need medication. --bumper sticker From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:10:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 936831065877 for ; Wed, 10 Jun 2009 19:10:11 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from mail-pz0-f197.google.com (mail-pz0-f197.google.com [209.85.222.197]) by mx1.freebsd.org (Postfix) with ESMTP id 5BF278FC08 for ; Wed, 10 Jun 2009 19:10:10 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by mail-pz0-f197.google.com with SMTP id 35so266370pzk.3 for ; Wed, 10 Jun 2009 12:10:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=rMHyzJhkEEI+MmCeM0tUr5PguPy7yep0T03linMvitY=; b=op/KV9MUbXbal5vKUFCQ7aA13jMr7nqqnWipPXIL/PS2AJtP8y9CzE/9beiwY0e/bD c74ViASUA11oMJ6KFUvGTz19esD/A6PPzIWV+kchFuu4I4QYtdIYdtkTGDL1eNHLnDka R5XoA2+CfcNjeL2wdinsoW9pdZ3TPaq9rHVho= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=jHjZ1djcaxCMRHf7I/WJzzrr6ARMJ7Kwc/l1z/Y1XHPN1vaJgJ46cveTqbEwIko7xG hKVQhByInjm8QE1OI/AY0aaunZqns897Brf89PtvLZMUn4zzDyZbZ4xr6z0zkOLaqc4j TKsY7jtpjQ+huBGc9n00Blsx9uXoAd0oEyt8s= MIME-Version: 1.0 Sender: christopher.maness@gmail.com Received: by 10.220.90.209 with SMTP id j17mr1434446vcm.61.1244661009768; Wed, 10 Jun 2009 12:10:09 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 12:10:09 -0700 X-Google-Sender-Auth: 6827d8776320dc03 Message-ID: From: Chris Maness To: Wojciech Puchar Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 19:10:12 -0000 On Wed, Jun 10, 2009 at 12:05 PM, Wojciech Puchar wrote: > MacOS X is unix-based. All it's GUI and other isn't unixlike, but base > system is. > > You may compile unix commands on it. Maybe just ftpd, or rsync? > > I use dump. I think dumping to the same partition that you are backing up is a bad idea. In order to use these methods I would have to dump, then transfer the dump file. If I can use rsync to pipe the dump output, that would probably work. I think I remember reading about that somewhere. Thanks, Chris From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:10:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35CA1106568B for ; Wed, 10 Jun 2009 19:10:22 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.freebsd.org (Postfix) with ESMTP id A2B3A8FC12 for ; Wed, 10 Jun 2009 19:10:21 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr15.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5AJ9Wnn060537; Wed, 10 Jun 2009 21:09:46 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id ACB15BA8E; Wed, 10 Jun 2009 21:09:32 +0200 (CEST) Date: Wed, 10 Jun 2009 21:09:32 +0200 From: Roland Smith To: Chris Maness Message-ID: <20090610190932.GB1521@slackbox.xs4all.nl> References: <4A2FFA41.7080805@FreeBSD.org> <4A3000D6.1020404@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="p4qYPpj5QlsIQJ0K" Content-Disposition: inline In-Reply-To: <4A3000D6.1020404@FreeBSD.org> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 19:10:22 -0000 --p4qYPpj5QlsIQJ0K Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 10, 2009 at 02:52:06PM -0400, Greg Larkin wrote: >=20 > Chris Maness wrote: > > On Wed, Jun 10, 2009 at 11:24 AM, Greg Larkin wrot= e: > >> -----BEGIN PGP SIGNED MESSAGE----- > >> Hash: SHA1 > >> > >> Chris Maness wrote: > >>> Is there an AFP client for FreeBSD? I have a mac with a gargantuan > >>> hard drive, and I would like to back up my FreeBSD server to it, and > >>> back up my mac to my FreeBSD server. I have seen where FreeBSD can be > >>> an AFP server, but there is little information on the client. Any > >>> suggestions? If you want to transfer dumps, netcat (nc) is the fastest way to go. I guess it doesn't come with OS X, since it is available from macports or darwinports.=20 I was able to saturate the 10 Mbit connection between a laptop and a desktop when transferring a dump file. :-) Of course you can also pipe the dump output directly to netcat, but in that case the speed of the dump is the bottleneck. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --p4qYPpj5QlsIQJ0K Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkowBOwACgkQEnfvsMMhpyXCQwCdEFyndzNq+0kVGXyAHoLxQDLr i/AAoKl7QAIRu4Qc/M1NCVHcXuA5LqTj =buRO -----END PGP SIGNATURE----- --p4qYPpj5QlsIQJ0K-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 19:52:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CBFF106567A for ; Wed, 10 Jun 2009 19:52:52 +0000 (UTC) (envelope-from timm@ticore.de) Received: from businessbox4.server-home.net (businessbox4.server-home.net [195.137.212.34]) by mx1.freebsd.org (Postfix) with ESMTP id DBF128FC12 for ; Wed, 10 Jun 2009 19:52:51 +0000 (UTC) (envelope-from timm@ticore.de) Received: from [192.168.1.51] (e176175031.adsl.alicedsl.de [85.176.175.31]) by businessbox4.server-home.net (Postfix) with ESMTP id 5699F332802D; Wed, 10 Jun 2009 21:23:36 +0200 (CEST) Message-ID: <4A300842.9030908@ticore.de> Date: Wed, 10 Jun 2009 21:23:46 +0200 From: Timm Wimmers User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Chris Maness , freebsd-questions@freebsd.org References: In-Reply-To: X-Enigmail-Version: 0.95.7 OpenPGP: id=8E7B1F18; url= Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: AFP Client 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: Wed, 10 Jun 2009 19:52:52 -0000 Chris Maness schrieb: > Well I am using the dump command, and I am not sure if I want to dump > to the same partition that I am backing up. > > Can I use rsync to pipe the dump output via ssh? rsync works on files, dump on filesystems. If you want to use dump, the fine FreeBSD manuals says: # /sbin/dump -0uan -f - /usr | \ gzip -2 | ssh -c blowfish \ targetuser@targetmachine.example.com \ dd of=/mybigfiles/dump-usr-l0.gz man ssh for setting up authentication with keys. On the mac, you must enable remote login under "Systempanel -> Sharing -> Services" if I remember correctly. -- Timm From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 20:34:29 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83E4B106564A for ; Wed, 10 Jun 2009 20:34:29 +0000 (UTC) (envelope-from pgiessel@mac.com) Received: from asmtpout013.mac.com (asmtpout013.mac.com [17.148.16.88]) by mx1.freebsd.org (Postfix) with ESMTP id 6CD038FC1B for ; Wed, 10 Jun 2009 20:34:29 +0000 (UTC) (envelope-from pgiessel@mac.com) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=ISO-8859-1 Received: from spool002.mac.com ([10.150.69.52]) by asmtp013.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0KL100BK9IFRUT20@asmtp013.mac.com> for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 13:34:09 -0700 (PDT) Received: from webmail041 ([10.13.128.41]) by spool002.mac.com (Sun Java(tm) System Messaging Server 6.3-8.01 (built Dec 16 2008; 32bit)) with ESMTP id <0KL100LKNIGA1090@spool002.mac.com>; Wed, 10 Jun 2009 13:33:48 -0700 (PDT) Date: Wed, 10 Jun 2009 12:33:45 -0800 From: Peter Giessel To: Chris Maness Message-id: <53717320816774023408331140292780926381-Webmail@me.com> Received: from [69.178.5.90] from webmail.me.com with HTTP; Wed, 10 Jun 2009 12:33:45 -0800 X-Originating-IP: 69.178.5.90 Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 20:34:29 -0000 On Wednesday, June 10, 2009, at 09:45AM, "Chris Maness" wrote: >Is there an AFP client for FreeBSD? I have a mac with a gargantuan >hard drive, and I would like to back up my FreeBSD server to it, and >back up my mac to my FreeBSD server. I have seen where FreeBSD can be >an AFP server, but there is little information on the client. Any >suggestions? I regularly backup my FreeBSD boxes using dump and ssh to a very large hard drive on my mac. Here is how I do it: - Turn on SSH access on the mac (I believe in OSX.5 it is called "Remote Login") - Setup PubkeyAuthentication: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/openssh.html (Section 14.11.6 - works the same on Mac and FreeBSD) - Wrote a script similar to this: *************************************************** #!/bin/sh /sbin/dump -1uaL -f - / | gzip -2 | ssh user@192.168.0.xxx dd of="/Volumes/Remote\ Backup/root.gz" /sbin/dump -1uaL -f - /tmp | gzip -2 | ssh user@192.168.0.xxx dd of="/Volumes/Remote\ Backup/tmp.gz" /sbin/dump -1uaL -f - /var | gzip -2 | ssh user@192.168.0.xxx dd of="/Volumes/Remote\ Backup/var.gz" /sbin/dump -1uaL -f - /usr | gzip -2 | ssh user@192.168.0.xxx dd of="/Volumes/Remote\ Backup/usr.gz" echo "Dumps Done" *************************************************** (of course adjust the user from "user" to your actual ssh username, adjust "Remote\ Backup" to your actual volume name, and fix the IP address to be the mac's actual IP address, and adjust the dump level as desired.) - Added this to crontab: *************************************************** # Run the backup script 5 4 * * * root /root/backup-script *************************************************** Runs every day backing up my unix partitions to the filenames given (root.gz, etc) on the volume on my Mac. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:13:33 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4F5F10656BE for ; Wed, 10 Jun 2009 21:13:33 +0000 (UTC) (envelope-from gbell72@rogers.com) Received: from web88005.mail.re2.yahoo.com (web88005.mail.re2.yahoo.com [206.190.37.192]) by mx1.freebsd.org (Postfix) with SMTP id 3762A8FC14 for ; Wed, 10 Jun 2009 21:13:33 +0000 (UTC) (envelope-from gbell72@rogers.com) Received: (qmail 98829 invoked by uid 60001); 10 Jun 2009 20:46:51 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rogers.com; s=s1024; t=1244666811; bh=whKyBU84bqOWrbGAC3sbJa0QoLUaICz9olWKs5LYo/0=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=6Lyr6zHKCCbtm/fCmHRvJMny9/9+72K+kZgIwoDMaLRu5W//XFkYYDK1ICLQE5Kkwzz1VkDm0BD+7Ua7VL6W8uqWPmi6717Em1nVy8H1kSxdie3vGJPvzFgPM9G8uf+6yvFYRxNK0z96dCUpzZD4GvfzInwM1dBCKGescsw9zy0= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=ZzfJKk+a4iZhd8o0CzyX2p2hFFsjwC4bhqOawdkL4t3zO08HGcuUaWb8osFaq89bnT3r43a+q7r28QTOlrouUMXMYV81DfseVsoa0cw6sv59e4hHOrevxnSoqq8ACzzz1fud9xIOFXmr+6WRuyoZfilNcxc5TvpCf4XyMdCpXbk=; Message-ID: <500375.93665.qm@web88005.mail.re2.yahoo.com> X-YMail-OSG: s82WsJkVM1mOjWNbGYQX9_zkMGYd3TrPvcIY7tOoo.qYYPWUn12edS83m_tO2geYwTOMkL49LFWWiUzm4wl7.fpyX8xErLCMjDm_Iyc2.ZoSLb7ijaAQJ4c8pxY2WLPi9Cf4x6yRX5i93JKnwPS2dRU_p.4DSOQ.jW7Y7Oss8Qf7eE_eSq1fi3htZwkpfBTCx1xnhJ7R8HdmVBgTdAz_PKaLPHSlcArHfhcd48Q8fAyutd1O0lwyd8BRgRr537NNMDK38fevVV4Xu8Gn9nKnygytJ2IMrle2AqsLS1dPIru7ltZ3a21lBmRB7IwuCQ2aYsD2 Received: from [99.233.37.239] by web88005.mail.re2.yahoo.com via HTTP; Wed, 10 Jun 2009 13:46:51 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.10 Date: Wed, 10 Jun 2009 13:46:51 -0700 (PDT) From: gbell72@rogers.com To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Subject: CF cards X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gbell72@rogers.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 21:13:34 -0000 Hi,=0A=0ACould anyone recommend a decent CF card and CF to ATA adapter that= works well with freebsd.=A0 My intended use for it is on a machine providi= ng firewall and dns services for my internal network.=0A=0AThanks=0A=0AGard= ner Bell=0A=0A From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:33:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52B181065670 for ; Wed, 10 Jun 2009 21:33:32 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.103.93]) by mx1.freebsd.org (Postfix) with ESMTP id 241748FC18 for ; Wed, 10 Jun 2009 21:33:31 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (localhost.cis.okstate.edu [127.0.0.1]) by dc.cis.okstate.edu (8.14.2/8.13.8) with ESMTP id n5ALXJZV091416 for ; Wed, 10 Jun 2009 16:33:19 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200906102133.n5ALXJZV091416@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <91414.1244669599.1@dc.cis.okstate.edu> Date: Wed, 10 Jun 2009 16:33:19 -0500 From: Martin McCormick Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 21:33:32 -0000 Mel Flynn writes: > If this is the sole purpose of the program, I would retire it if you're > using > ISC provided software for these services. rndc and omshell can do all of > this > using atomic operations. Information is gathered first, then sent in one > block > to the server, so even if two people try to modify/delete the same > record, the > one that comes first makes the change, and the second one is handled > according > to the new information. Quite true. The ISC software is wonderful but it doesn't deal with static bootP and even worse static IP addresses that have no bootP associated with them. We have tons of both. Dynamic DHCP isn't really a good solution for printers and servers. BootP is much more stable for them since nobody can bump them off. We have some departments on campus that are like herding cats in that there is always somebody hard-coding their IP address in to a DHCP lease, etc. We have other areas where people have had the same dynamic lease for literally years and think it is static. We usually set up a subnet about half dynamic and half static which works well for us. The program I wrote reads the dhcpd.conf file and blocks out the dynamic ranges so one can not assign a static entry in those ranges so it has grown to work with the ISC products. It reads the subnet mask, finds the dynamic ranges and then compares against the A records in DNS to quickly find the next free IP address. We use both bind and the ISC DHCP server and are very satisfied customers. When you use omshell to add a bootP entry, it inserts it as a clause in the dhcpd.leases file but you still must specify all the parameters yourself. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:35:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EC70106568C for ; Wed, 10 Jun 2009 21:35:10 +0000 (UTC) (envelope-from kline@thought.org) Received: from aristotle.thought.org (ns1.thought.org [209.180.213.210]) by mx1.freebsd.org (Postfix) with ESMTP id C04168FC08 for ; Wed, 10 Jun 2009 21:35:09 +0000 (UTC) (envelope-from kline@thought.org) Received: from thought.org (tao.thought.org [10.47.0.250]) (authenticated bits=0) by aristotle.thought.org (8.14.2/8.14.2) with ESMTP id n5ALaIi3099203; Wed, 10 Jun 2009 14:36:18 -0700 (PDT) (envelope-from kline@thought.org) Received: by thought.org (nbSMTP-1.00) for uid 1002 kline@thought.org; Wed, 10 Jun 2009 14:35:03 -0700 (PDT) Date: Wed, 10 Jun 2009 14:35:03 -0700 From: Gary Kline To: Bill Moran Message-ID: <20090610213503.GF15932@thought.org> References: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> <20090610141151.e84b31b9.wmoran@potentialtech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090610141151.e84b31b9.wmoran@potentialtech.com> User-Agent: Mutt/1.4.2.3i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: With 22++ years of service to the Unix community. X-Spam-Status: No, score=-4.4 required=3.6 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.2.3 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on aristotle.thought.org Cc: Kate Werrett , "freebsd-questions@FreeBSD.org" Subject: Re: Advertising Inquiry X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 21:35:10 -0000 On Wed, Jun 10, 2009 at 02:11:51PM -0400, Bill Moran wrote: > In response to Kate Werrett : > > > Are you the right person to talk to about advertising on www.freebsd.org? > > Thank you, > > Obviously, you didn't look at the site. There is no advertising on it. > There is nobody to contact. > That's right, Bill, but it might be that Ms. Werrett is interested in becoming one of the underwriters of the FreeBSD Project. Ms. Werrett, if you are interested in going further than an ad, please let the rest of us know. The -questions email is a general-purpose mailing list. Chances are that there is a someone with more knowledge of the Project. -- Gary Kline kline@thought.org http://www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:35:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2DC11065689 for ; Wed, 10 Jun 2009 21:35:11 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from outbound-mail-309.bluehost.com (outbound-mail-309.bluehost.com [67.222.54.2]) by mx1.freebsd.org (Postfix) with SMTP id C07E08FC0A for ; Wed, 10 Jun 2009 21:35:11 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 29818 invoked by uid 0); 10 Jun 2009 21:35:11 -0000 Received: from unknown (HELO box543.bluehost.com) (74.220.219.143) by outboundproxy6.bluehost.com with SMTP; 10 Jun 2009 21:35:11 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=apotheon.com; h=Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent:X-Identified-User; b=k5MoW6lsY3eiFLzdfdzgOsMWE2I+mMltt2k7QfQyByn+MI7b9Lm+liWtgio8zoBwF14F+p4n4pdbSW1m4WjHIZJGepcxVDh+sIXcdpeTbkTrP+pZ3i+sYJbyJFkeVh+Y; Received: from c-24-8-180-234.hsd1.co.comcast.net ([24.8.180.234] helo=kokopelli.hydra) by box543.bluehost.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MEVRu-0003xg-NS for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 15:35:11 -0600 Received: by kokopelli.hydra (sSMTP sendmail emulation); Wed, 10 Jun 2009 15:29:46 -0600 Date: Wed, 10 Jun 2009 15:29:46 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20090610212946.GA72597@kokopelli.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <4096aedd0906040923p6288e319ia083f47c7ccc29e1@mail.gmail.com> <64c038660906042034v43b340c6jf1e001ac9941f1f6@mail.gmail.com> <20090608014629.GA9091@kokopelli.hydra> <20090608044543.0c6d4602@scorpio> <20090608205549.GA53856@kokopelli.hydra> <20090608173112.13bbc8a1@scorpio> <20090609231347.GA57940@kokopelli.hydra> <20090610063305.38811af7@scorpio> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <20090610063305.38811af7@scorpio> User-Agent: Mutt/1.4.2.3i X-Identified-User: {2737:box543.bluehost.com:apotheon:apotheon.org} {sentby:smtp auth 24.8.180.234 authed with ren@apotheon.org} Subject: Re: ISP 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: Wed, 10 Jun 2009 21:35:12 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 10, 2009 at 06:33:05AM -0400, Jerry wrote: > On Tue, 9 Jun 2009 17:13:47 -0600 > Chad Perrin wrote: >=20 > >If 0.111% of customers are unfortunate enough to end up with something > >entirely beyond their control causing something to happen that can be > >imagined to be a violation of GoDaddy's partially undisclosed policies, > >and 0.1% of GoDaddy customers end up getting their domain names held > >hostage to the tune of several hundred dollars as a result of those > >incidents entirely beyond their control, that means that about 90% of > >people GoDaddy has any way of exploiting, extorting, or otherwise > >screwing over in a manner defensible in court are getting exactly that > >treatment. > > > >(Note that I'm making up numbers here, just like you.) > > > >So . . . you're basically gambling that you'll never be the victim of > >circumstances that would allow GoDaddy to figure it can get away with > >screwing you over. I prefer to gamble on other things. Your mileage > >may vary. >=20 > I am not going to debate. >=20 > 1) Your math doesn't even begin to compute - as you stated. How do you figure? > 2) You have supplied no factual proof of your statement. Innuendo is not > evidence. Try http://nodaddy.com for examples. >=20 > Every time you get in a car, you risk your life. Does that mean you > should live in a bubble? If you have documented proof of your > statements, I would love to see them. If not, you sound like someone > who screwed up, got burned and like is now the norm in our society, > refusing to take responsibility for it; preferring to place the blame on > someone or something else. I haven't been burned by GoDaddy. As you might have surmised from previous statements (if you were paying enough attention), I have chosen to learn from others' mistakes in the case of GoDaddy rather than obstinately insisting on making such a mistake for myself. Thanks for degrading the apparent rigor of your own arguments by descending into ad hominem fallacy, though, assuming I've done something I haven't so you can blame me, the hypothetical victim, for what has(n't actually) been done to me. The only way I remember having been "burned" by my choice of registrar, and thus having to learn from my own mistake, was the case of using a single provider for both domain registration and Webhosting. I learned from that experience that if a single provider handles both domain registration and Webhosting for that domain, it makes it really easy for that provider to screw the user by making it as difficult as possible to move one or the other service to a different provider, thus costing more money over a longer period while giving crappy service -- essentially creating an artificial lock-in situation from which it may be difficult to extricate oneself. I didn't have that particular problem with GoDaddy, but I certainly wouldn't put it past that company. >=20 > If you don't like GoDaddy, that is your prerogative. However, > slandering them with undocumented statements is rather low. As I said, > I have not had a problem with them in the seven years I have used their > services. Obviously, that does not coincide with your statements. You didn't ask for documentation, and that's not the direction the discussion was going. I provided a URL so you can see some corroborating documentation of real-world incidents above, though, now that you've specifically brought up the point of such evidence. The fact you, yourself have not had a problem, may well be a matter of nothing but luck. In fact, I'm sure most GoDaddy customers haven't had a problem. That's sorta the point, though -- as long as the incidence of problems is kept below a particular threshold, GoDaddy is free to screw over that small percentage of exceptions with relative impunity, unless those who know about such incidents try to get the word out to help other would-be customers protect themselves. It's not like I have a selfish aim in suggesting one use a different registrar; I don't run, or work for, or otherwise have a relationship with, a competing company (other than being another company's customer, of course). >=20 > Out of morbid curiosity, who are you presently using? I am willing to > bet that I can find someone with a horror story to tell about them > also. Would it be accurate; you tell me? I'm using pairNIC. If you find such horror stories, please let me know, and I'll investigate them to determine whether I consider them credible and suggestive of the likelihood that the same thing could happen to me. Some horror stories are suggestive of bad policy to which I don't want to submit myself; others are merely suggestive of a fluke, or exaggeration. The fact is that the GoDaddy horror stories I've seen have, in some cases, actually been thoroughly documented not only by the parties involved (on both sides, in fact), but by the news media as well, and they're very suggestive of policies that can lead to terrible abuses of customers in the future. Meanwhile, pairNIC doesn't have a hundreds of dollars ransom policy, so in that regard at least I know I'm in better shape than I would be with GoDaddy. --=20 Chad Perrin [ original content licensed OWL: http://owl.apotheon.org ] Quoth H. L. Mencken: "Democracy is the theory that the common people know what they want and deserve to get it good and hard." --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEARECAAYFAkowJcoACgkQ9mn/Pj01uKWniACgnRg0UTHpqPimbj7gj19GKLY1 fEIAnAmrAcXFbrOqIC5WTDMoLL9gq2O3 =CZMA -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:40:26 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18D461065672 for ; Wed, 10 Jun 2009 21:40:26 +0000 (UTC) (envelope-from chrisneudorf@yahoo.ca) Received: from web65602.mail.ac4.yahoo.com (web65602.mail.ac4.yahoo.com [76.13.9.70]) by mx1.freebsd.org (Postfix) with SMTP id C81BB8FC28 for ; Wed, 10 Jun 2009 21:40:25 +0000 (UTC) (envelope-from chrisneudorf@yahoo.ca) Received: (qmail 51100 invoked by uid 60001); 10 Jun 2009 21:13:45 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.ca; s=s1024; t=1244668425; bh=3rV85xIOwt1kllMBDSNXOjyYkhGfAZL4CURhxYJ4ZTw=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=cRv3P1jig8y/T3pFIvd1z1DZhLykyrjpL1MQczJjwYch+/5nGXJ8rwqPfTo0KT7ZAsmdGYi9sLItT+T3HnKSr0//JFw6f4DJY+kaKPjYpQP9DKirJARl9kWDUOW6PT7dj8dgVetOzM9XFNQcs0Pj7t0viJ6WIH/VpbKz8QpS9q0= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.ca; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=KxZx4OYRMUDmf3XQzf27+NTpaDlyGxO4nzHzvwrIuOzSh4oJDzgN8dxCaxEtcT3eAuizm1/8QXAsiic/dbQ1oUeO8cz7nzxazb61jIQSIaxGY9R86/HKQOhgm1Ig5SgSf6M0W7jGehBzaeb8fFKKH1CT2CEjI3+Nw1ZmHQDtWDQ=; Message-ID: <652787.50367.qm@web65602.mail.ac4.yahoo.com> X-YMail-OSG: hYh1VkEVM1l4M87D9O.f_yzgnLBnnBqEfGwHfbDiMGVmKfUvIikVBp8px3fh2bhJvp0hfSZZ1Wcf4GXT9s74NN2jR0RkY01r50SwNmJHzuD4nFyT0FHBy0_aNodzUmsq5MDuKrOSDQM3HE_pFdqAutEWSioh8Mf3PTHPE5G_qJ4ZCHlKGY5W7oTyygZ87zku_QBcmj4uRZqunjtgGYu1cusl36HzOMmFBMvqieNR6fWe0moKiFRIzFLE3Ao38KFqi6tVVrkQuRojVEmpBQpKYou4K7fPSTsCaOrQeTBKbuWKliFYrETJFpwToPbevTYrWkjIr4DsP_9VyQTo28I7zJ5mbohcx6MAWQA- Received: from [136.159.120.61] by web65602.mail.ac4.yahoo.com via HTTP; Wed, 10 Jun 2009 14:13:45 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Wed, 10 Jun 2009 14:13:45 -0700 (PDT) From: Chris Neudorf To: FreeBSD Support MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 10 Jun 2009 21:48:54 +0000 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: FreeSBIE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 21:40:26 -0000 Hello, I'm not sure who to contact about this, but there is a problem with the freesbie.org website. I can't seem to connect to it. With Mozilla Firefox 3.0.1.0, I get the error message "Network Timeout, The server at www.freesbie.org is taking too long to respond." and with Internet Explorer 7, I get an error message "Internet Explorer cannot display webpage". --Christopher /\ . . /\ __________________________________________________________________ Get a sneak peak at messages with a handy reading pane with All new Yahoo! Mail: http://ca.promos.yahoo.com/newmail/overview2/ From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 21:59:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9051B1065673 for ; Wed, 10 Jun 2009 21:59:27 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5438FC0A for ; Wed, 10 Jun 2009 21:59:26 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MEVpM-0002om-Cu for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 21:59:24 +0000 Received: from 220.85-200-86.bkkb.no ([85.200.86.220]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jun 2009 21:59:24 +0000 Received: from solskogen by 220.85-200-86.bkkb.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jun 2009 21:59:24 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Christer Solskogen Date: Wed, 10 Jun 2009 23:59:05 +0200 Lines: 18 Message-ID: References: <500375.93665.qm@web88005.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 220.85-200-86.bkkb.no User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1b3pre) Gecko/20090223 Thunderbird/3.0b2 In-Reply-To: <500375.93665.qm@web88005.mail.re2.yahoo.com> Sender: news Subject: Re: CF 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: Wed, 10 Jun 2009 21:59:27 -0000 On 6/10/09 10:46 PM, gbell72@rogers.com wrote: > Hi, > > Could anyone recommend a decent CF card and CF to ATA adapter that works well with freebsd. My intended use for it is on a machine providing firewall and dns services for my internal network. > I got a card reader one from this swedish guy. http://www.kabelpiraten.se/catalog/product_info.php?cPath=44_27&products_id=191 I tried a couple of different CF cards, and as far as I can see every card goes. It depends more on how much money you want to spend (more money, more speed and capacity) -- chs From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:04:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 163EE1065672 for ; Wed, 10 Jun 2009 22:04:59 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 0DBFF8FC15 for ; Wed, 10 Jun 2009 22:04:57 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AM4mGt019097; Thu, 11 Jun 2009 00:04:48 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AM4mpc019094; Thu, 11 Jun 2009 00:04:48 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 00:04:48 +0200 (CEST) From: Wojciech Puchar To: gbell72@rogers.com In-Reply-To: <500375.93665.qm@web88005.mail.re2.yahoo.com> Message-ID: References: <500375.93665.qm@web88005.mail.re2.yahoo.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="1626729238-458690465-1244671488=:19027" Cc: freebsd-questions@freebsd.org Subject: Re: CF 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: Wed, 10 Jun 2009 22:04:59 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --1626729238-458690465-1244671488=:19027 Content-Type: TEXT/PLAIN; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8BIT > Could anyone recommend a decent CF card and CF to ATA adapter that works well with freebsd.  My intended use for it is on a machine providing firewall and dns services for my internal network. > all should work - ATA adapter has no electronics on it, as CF is ATA compatible just have different connector. So any ATA adapter, but check CF card before buying --1626729238-458690465-1244671488=:19027-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:06:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B96B106566C for ; Wed, 10 Jun 2009 22:06:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 78E578FC0C for ; Wed, 10 Jun 2009 22:06:51 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5AM67XA019116; Thu, 11 Jun 2009 00:06:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5AM65gP019113; Thu, 11 Jun 2009 00:06:07 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 00:06:05 +0200 (CEST) From: Wojciech Puchar To: Chris Maness In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Wed, 10 Jun 2009 22:06:52 -0000 > I use dump. I think dumping to the same partition that you are > backing up is a bad idea. works fine and WILL work fine by design. just you have to create directory, flag it with nodump and dump to file in that directory From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:12:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 409A01065680 for ; Wed, 10 Jun 2009 22:12:05 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s10.blu0.hotmail.com (blu0-omc4-s10.blu0.hotmail.com [65.55.111.149]) by mx1.freebsd.org (Postfix) with ESMTP id F04B38FC18 for ; Wed, 10 Jun 2009 22:12:04 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP46 ([65.55.111.137]) by blu0-omc4-s10.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 10 Jun 2009 15:12:04 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP46.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Wed, 10 Jun 2009 15:12:04 -0700 Date: Wed, 10 Jun 2009 18:11:56 -0400 From: Carmel To: FreeBSD Question Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 10 Jun 2009 22:12:04.0552 (UTC) FILETIME=[7C7E0C80:01C9EA18] Subject: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: carmel_ny@hotmail.com, FreeBSD Question List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 22:12:05 -0000 This is my first attempt to compile in a driver in a new kernel I am attempting to build. Using loader.conf, I have the 'snd_hda' driver presently being loaded. I want to compile it directly into the kernel. I tried this: device snd_hda # Sound driver Unfortunately, the kernel will not build. What is the proper way to build a kernel with sound embedded into it? Thanks! -- Carmel From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:20:07 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67A861065678 for ; Wed, 10 Jun 2009 22:20:07 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 280548FC0C for ; Wed, 10 Jun 2009 22:20:02 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 730EE3CBC2; Thu, 11 Jun 2009 00:20:00 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5AMJsIc002179; Thu, 11 Jun 2009 00:19:54 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 11 Jun 2009 00:19:54 +0200 From: Polytropon To: Chris Neudorf Message-Id: <20090611001954.3d3631ca.freebsd@edvax.de> In-Reply-To: <652787.50367.qm@web65602.mail.ac4.yahoo.com> References: <652787.50367.qm@web65602.mail.ac4.yahoo.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Support Subject: Re: FreeSBIE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 22:20:07 -0000 On Wed, 10 Jun 2009 14:13:45 -0700 (PDT), Chris Neudorf wrote: > Hello, > > I'm not sure who to contact about this, but there is a problem with > the freesbie.org website. I can't seem to connect to it. Me neither. % telnet 83.149.156.188 80 Trying 83.149.156.188... ... long long time passes ... telnet: connect to address 83.149.156.188: Operation timed out telnet: Unable to connect to remote host And nothing more. Seems that the site (or their web server in particular) is down. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:22:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D0161065673 for ; Wed, 10 Jun 2009 22:22:30 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id DF27B8FC15 for ; Wed, 10 Jun 2009 22:22:29 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493580.home.otenet.gr [94.71.93.20]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5AMMSHW004928; Thu, 11 Jun 2009 01:22:28 +0300 Message-ID: <4A303224.5030406@otenet.gr> Date: Thu, 11 Jun 2009 01:22:28 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: carmel_ny@hotmail.com, FreeBSD Question References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Re: Compiling in sound driver in 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, 10 Jun 2009 22:22:30 -0000 Carmel wrote: > This is my first attempt to compile in a driver in a new kernel I am > attempting to build. > > Using loader.conf, I have the 'snd_hda' driver presently being loaded. > I want to compile it directly into the kernel. I tried this: > > device snd_hda # Sound driver > > Unfortunately, the kernel will not build. What is the proper way to > build a kernel with sound embedded into it? > > Thanks! > > Well, just add the following line too: device sound (This is automatically loaded too when the module is used) From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:25:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E5441065733 for ; Wed, 10 Jun 2009 22:25:06 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id D1B648FC26 for ; Wed, 10 Jun 2009 22:25:05 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id A6C313CB1C; Thu, 11 Jun 2009 00:25:04 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5AMOxaW002200; Thu, 11 Jun 2009 00:24:59 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 11 Jun 2009 00:24:59 +0200 From: Polytropon To: carmel_ny@hotmail.com, FreeBSD Question Message-Id: <20090611002459.10b4765a.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Carmel Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 22:25:06 -0000 On Wed, 10 Jun 2009 18:11:56 -0400, Carmel wrote: > This is my first attempt to compile in a driver in a new kernel I am > attempting to build. > > Using loader.conf, I have the 'snd_hda' driver presently being loaded. > I want to compile it directly into the kernel. I tried this: > > device snd_hda # Sound driver > > Unfortunately, the kernel will not build. What is the proper way to > build a kernel with sound embedded into it? I have this: # Sound device sound device snd_cmi As far as I know, both "sound" and "snd_*" for your particular hardware is needed in the kernel configuration file. I'm not sure if only "device sound" is sufficient and / or will load snd_* required automatically. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:28:25 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B3091065672 for ; Wed, 10 Jun 2009 22:28:25 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr11.xs4all.nl (smtp-vbr11.xs4all.nl [194.109.24.31]) by mx1.freebsd.org (Postfix) with ESMTP id D4FC18FC20 for ; Wed, 10 Jun 2009 22:28:24 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr11.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5AMSNnx009271; Thu, 11 Jun 2009 00:28:23 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 12B4DBAAF; Thu, 11 Jun 2009 00:28:23 +0200 (CEST) Date: Thu, 11 Jun 2009 00:28:23 +0200 From: Roland Smith To: carmel_ny@hotmail.com Message-ID: <20090610222823.GA7364@slackbox.xs4all.nl> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gBBFr7Ir9EOA20Yy" Content-Disposition: inline In-Reply-To: X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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, 10 Jun 2009 22:28:25 -0000 --gBBFr7Ir9EOA20Yy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 10, 2009 at 06:11:56PM -0400, Carmel wrote: > This is my first attempt to compile in a driver in a new kernel I am > attempting to build. >=20 > Using loader.conf, I have the 'snd_hda' driver presently being loaded. > I want to compile it directly into the kernel. I tried this: > Unfortunately, the kernel will not build. What is the proper way to > build a kernel with sound embedded into it? =20 You're missing something: =20 device sound > device snd_hda # Sound driver Have you looked at the manual page? 'man snd_hda' would have told you this. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --gBBFr7Ir9EOA20Yy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkowM4YACgkQEnfvsMMhpyUJCgCeLOMqkpkaR6Gv46JhNf7H9c7I WeYAn3SS8b9EcZK6aSZLI6WqsgpHDbsb =XFiL -----END PGP SIGNATURE----- --gBBFr7Ir9EOA20Yy-- From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:51:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 865EC106566B for ; Wed, 10 Jun 2009 22:51:45 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 411578FC17 for ; Wed, 10 Jun 2009 22:51:44 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MEWe0-0004mH-0U for freebsd-questions@freebsd.org; Wed, 10 Jun 2009 22:51:44 +0000 Received: from pool-71-166-137-248.washdc.east.verizon.net ([71.166.137.248]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jun 2009 22:51:43 +0000 Received: from nightrecon by pool-71-166-137-248.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 10 Jun 2009 22:51:43 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Wed, 10 Jun 2009 18:53:26 -0400 Lines: 20 Message-ID: References: <652787.50367.qm@web65602.mail.ac4.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-71-166-137-248.washdc.east.verizon.net Sender: news Subject: Re: FreeSBIE X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 22:51:45 -0000 Chris Neudorf wrote: > Hello, > > I'm not sure who to contact about this, but there is a problem with the > freesbie.org website. I can't seem to connect to it. With Mozilla Firefox > 3.0.1.0, I get the error message "Network Timeout, The server at > www.freesbie.org is taking too long to respond." and with Internet > Explorer 7, I get an error message "Internet Explorer cannot display > webpage". > This happens every so often, as the list has seen this question before. More than likely at some point they'll come back up. When, and how long it takes, we will see. They've probably had some form of calamity that will take them some time to work out. -Mike From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:54:36 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C61C11065673 for ; Wed, 10 Jun 2009 22:54:36 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 829EB8FC0C for ; Wed, 10 Jun 2009 22:54:36 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: by gxk3 with SMTP id 3so1509291gxk.19 for ; Wed, 10 Jun 2009 15:54:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=tfSzJfNIrCBLu0j0xQRKiqmfmzY7qALVypGkIIzu1pI=; b=nZNEx3xMUXLnikVVmEYuwzLSXHI4kEOp4JEoitqC7qWnc9ftORNNh0mlmSp3OzuXKz Jec5USttU3d+nCdYQ/sjuOJ08KUlRSXiNpSewrHLoKOXAbSBRQF6M7dVnWjVOENvRqkS d40QD4dOsY1/45ff74M/HdeeIXIG1wsfdyZSM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=uyr+QUQtn40xLP+A+7dOvqPYahCNvn1Rc1vE0bDDtXwDIGXt6rBwWqhMlKr3/n1ZTF eSi302wDQbxIMmoz0xx28Ayub6XCPksPycqdwvCeBISikZ8F+Rafmz0XiIZ8yjgqCfea ycBgWAnwbHajmyJORPvP44ImvCdM1vMKvPxjA= MIME-Version: 1.0 Received: by 10.151.137.1 with SMTP id p1mr3604675ybn.194.1244672571662; Wed, 10 Jun 2009 15:22:51 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 15:22:51 -0700 Message-ID: From: patrick To: Chris Maness , freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: AFP Client 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: Wed, 10 Jun 2009 22:54:37 -0000 Mac OS X supports NFS, so you could always mount your Mac on FreeBSD via NF= S. Patrick On Wed, Jun 10, 2009 at 10:45 AM, Chris Maness wrote= : > Is there an AFP client for FreeBSD? =A0I have a mac with a gargantuan > hard drive, and I would like to back up my FreeBSD server to it, and > back up my mac to my FreeBSD server. =A0I have seen where FreeBSD can be > an AFP server, but there is little information on the client. =A0Any > suggestions? > > Thanks, > Chris Maness > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 22:59:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1BDD106566B for ; Wed, 10 Jun 2009 22:59:18 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 5AB008FC19 for ; Wed, 10 Jun 2009 22:59:18 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: by qyk3 with SMTP id 3so1680194qyk.3 for ; Wed, 10 Jun 2009 15:59:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=4A+8N2yGNF+rwmF03LF7y9qR9Z+8UtMr3KNM7t9mrts=; b=Vg9Mf2BYT+3w9K483vV7aJPPIf1vChD42K0uUFQnh6FHgd/2P4pPmkSW8NVfNl9tBI Kq8OvUEUja0qZmzJ25bJ3NeI+d08Bvn+kZEj/qr2aG/A8W/ebAqHgTTANLyJ51N/YIx5 Lp0wMCLgvrZsbL156/uhGzTvh6CSUiDGHZ32U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=AGO6xGx+ed0tRC9LOgZQq4stuyp7DWgCwsrXuE/QjbreliSE7YLY6WwPnTBMtDCVqe KTK73w5SFutQni8zfnFmmAbThKSKVXWiFn3Ub9kGaULrJPFLvsjaOAoCXFy2y2vyvmEg sh8kbaDqSZAXlrQMV1fjCpByxCtuetKb2evqA= MIME-Version: 1.0 Received: by 10.229.89.202 with SMTP id f10mr452375qcm.71.1244674757671; Wed, 10 Jun 2009 15:59:17 -0700 (PDT) In-Reply-To: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> Date: Wed, 10 Jun 2009 15:59:17 -0700 Message-ID: <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> From: Kelly Jones To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 10 Jun 2009 22:59:18 -0000 On 6/8/09, Kelly Jones wrote: > What UFS-like filesystem has unlimited inodes, but is a drop-in > replacement for ext3, and is fairly easy to configure? Thanks to everyone who replied. I'm using 100+ rented cloud servers to do stuff for me and rsync the results back to a server I own. I'm sure I could use a db or zip file somehow, but my goal is to get the data centralized ASAP, since I'm paying per hour for the rented cloud servers. DBs and ZIP files would take more time. Once I have the data on my server, I can take as much time as I want. My problem: I ran out of inodes during the rsync process, and had to re-do some of the work, wasting some of my cloud servers time/money. I ended up settling on zfs. It hung hard once (had to reboot the server), which scares me, but it otherwise behaves very well. With compress=gzip-9, it's even saving me disk space. Yes, I realize cloud computing is cheap (and I'm actually still on a free trial), but I value efficiency. -- We're just a Bunch Of Regular Guys, a collective group that's trying to understand and assimilate technology. We feel that resistance to new ideas and technology is unwise and ultimately futile. From owner-freebsd-questions@FreeBSD.ORG Wed Jun 10 23:23:08 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AE13B106564A for ; Wed, 10 Jun 2009 23:23:08 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from mail1.sourcehosting.net (113901-app1.sourcehosting.net [72.32.213.11]) by mx1.freebsd.org (Postfix) with ESMTP id 895F58FC0C for ; Wed, 10 Jun 2009 23:23:08 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from 68-189-245-235.dhcp.oxfr.ma.charter.com ([68.189.245.235] helo=cube.entropy.prv) by mail1.sourcehosting.net with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MEX8C-000FA2-CI; Wed, 10 Jun 2009 19:23:01 -0400 Received: from [127.0.0.1] (fireball.entropy.prv [192.168.1.12]) by cube.entropy.prv (Postfix) with ESMTP id 40A472FBA74F; Wed, 10 Jun 2009 19:22:56 -0400 (EDT) Message-ID: <4A30404C.4090806@FreeBSD.org> Date: Wed, 10 Jun 2009 19:22:52 -0400 From: Greg Larkin Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Joe Auty References: <552574.63307.qm@web39108.mail.mud.yahoo.com> <4A29D256.4050902@netmusician.org> <4A29D77F.5000608@netmusician.org> In-Reply-To: <4A29D77F.5000608@netmusician.org> X-Enigmail-Version: 0.95.7 OpenPGP: id=1C940290 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Score: -0.1 (/) Cc: bf , freebsd-questions@FreeBSD.org Subject: Re: GCC/GCJ and pdftk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: glarkin@FreeBSD.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jun 2009 23:23:08 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Joe Auty wrote: > Joe Auty wrote: >> bf wrote: >>> >> >>>> However, I've also read in the pdftk port logs that gcj is included in >>>> GCC 3.4+ when WITHOUT_JAVA in the GCC Makefile is set to no or >>>> commented >>>> out. So, I compiled GCC with gcj support without a problem, and >>> >>> >>> Oh yes, did you? Really? How? Better look again. >>> > > Sorry, I forgot to answer the "how" part of this: I simply build GCC42 > with WITHOUT_JAVA set to no. > > >> >> Yes, I did: >> >> $ ls /usr/local/bin/gcj* >> /usr/local/bin/gcj42 /usr/local/bin/gcjh42 >> >> >> >>> >>>> commented out the NOT_FOR_ARCHS line above to force an install of >>>> pdftk: >>> >>>>> ===> pdftk-1.41 depends on executable: gmake - found >>>>> ===> pdftk-1.41 depends on shared library: gcj - not found >>>>> ===> Verifying install for gcj in /usr/ports/lang/gcc42 >>>>> ===> Returning to build of pdftk-1.41 >>>>> Error: shared library "gcj" does not exist >>> >>>> gcj does indeed exist in /usr/ports/lang/gcc42: >>> >>>>> # find /usr/ports/lang/gcc42 -name "gcj" >>>>> /usr/ports/lang/gcc42/work/gcc-4.2-20090325/libjava/gnu/gcj >>>>> /usr/ports/lang/gcc42/work/gcc-4.2-20090325/libjava/gcj >>>>> /usr/ports/lang/gcc42/work/build/gcc/gcj >>> >>> The "gcj" that the port is searching for must be the appropriate >>> binary executable, or a link to it, and must be in your PATH. In this >>> case, >>> if properly installed via the port, it would be: >>> >>> gcj42, gcj43, gcj44, or gcj45, >>> >>> and would be in /usr/local/bin. >>> >> >> See above. The reason why I was thinking that for some reason it looks >> for it in the port directory is the following in the Makefile: >> >>> # needs gcj >>> LIB_DEPENDS= gcj:${PORTSDIR}/lang/gcc${CSUFF} >> >> >> Perhaps I'm just misinterpreting things... It's strange though that the >> reason for pdftk not building seems to be that gcj does not compile on >> amd64 systems, when this doesn't seem to be true. I've read about >> problems with memory consumption of gcj, but I don't know if these still >> remain true - these posts were rather old. >> >> However, again, all of this is with huge accuracy caveats, I'm >> definitely not confident with my piecing together of information here... >> >> >>> All that you have done is find what I suspect are empty directories in >>> the WRKDIR for the lang/gcc42 port. Consider the 'which' command; or >>> limiting the directories searched and the using of '-not -type d' if >>> employing 'find' in this way in the future. >>> >>> >>>> Any suggestions as to what I can do to build pdftk? This particular >>>> project will surely be much harder if I can't get pdftk >>>> to>build/compile... >>> >>> In the order of increasing effort: >>> >>> 1) Use a tool other than pdftk to manipulate your PDF files. pdftk is >>> just a wrapper around an old version of devel/itext, structured with >>> the idea of compiling it with gcj. You could just install Java and >>> use the more up-to-date devel/itext. Or use print/ghostscript8, >>> graphics/poppler, or print/xpdf, either directly or via one of the many >>> programs (for example, print/kpdftool) that use them to do the dirty >>> work. >>> Also textproc/p5-CAM-PDF, print/py-pdf, ... >>> >> >> I will definitely look at itext! I'm using FPDI to insert header stamps >> into existing PDF files, and need something to rotate and merge PDFs. >> I've looked at Ghostscript a little, but was really attracted to the >> simplicity of doing this in pdftk. If you have any other suggestions of >> solutions I could look into other than itext, I'd appreciate them! I'm >> rather new to PDF manipulation... >> >> >>> 2) Switch your system to i386 and use pdftk. >>> >>> 3) Find a way to build gcj on architectures other than i386, or persuade >>> or browbeat gerald@ into doing it. Debian has packages for other >>> architectures, for example. You could look at what they've done. >>> >>> >>> b. Hi all, I compiled gcc42+libgcj successfully and then print/pdftk without any problems on 7.1-RELEASE amd64. Still to do: - - Run "make check" in gcc42 work directory to see if any problems pop up - - Run some tests with pdftk on sample PDF files to check for problems - - Contact gerald@ to find out if there are other reasons why libgcj should not be enabled on amd64. Cheers, Greg - -- Greg Larkin http://www.FreeBSD.org/ - The Power To Serve http://www.sourcehosting.net/ - Ready. Set. Code. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFKMEBM0sRouByUApARAgBdAKDE6iBJjevQu1zNNodBCKbm1yrCowCgnVNj N2HCr1Ijz8paREMUr4GJUiI= =xg4+ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 00:07:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11CF01065672 for ; Thu, 11 Jun 2009 00:07:39 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 8285F8FC1C for ; Thu, 11 Jun 2009 00:07:38 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 56969 invoked by uid 89); 11 Jun 2009 00:09:14 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 11 Jun 2009 00:09:14 -0000 Message-ID: <4A304AD3.10109@ibctech.ca> Date: Wed, 10 Jun 2009 20:07:47 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org Questions -" X-Enigmail-Version: 0.95.7 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms060400040409000001000606" Subject: Automagic revision numbers with Perl Modules and SVN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 00:07:39 -0000 This is a cryptographically signed message in MIME format. --------------ms060400040409000001000606 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hey all, I've been migrating all of my projects from CVS to SVN (starting over from the beginning). All of the projects in question are Perl modules. Can someone give me a tip on what I have to do in order to prevent the following when I do a ``make install''?: FreeBSD: Registering installation in the package database Cannot create directory /var/db/pkg/bsdpan-EagleUser-1.009: File exists I'm trying to follow documentation on the 'net, but to no avail. Following is a patch to how I had the module configured for CVS, and what I changed to based on what I found on the web for SVN. To be honest, I'm not a coder, so I don't even know if what I'm changing is in the proper place or not. Any guidance to fix the version numbering (especially to fix the FreeBSD package db) to make it automagic again, is very welcome: %svn diff -r56 EagleUser.pm Index: EagleUser.pm =================================================================== --- EagleUser.pm (revision 56) +++ EagleUser.pm (working copy) @@ -13,7 +13,7 @@ @EXPORT = qw( ); -$VERSION = sprintf "%d.%03d", q$Revision: 1.9 $ =~ /: (\d+)\.(\d+)/; +$VERSION = (q$Revision: 1.9 $ =~ /: (\d+)\.(\d+)/; Thanks, Steve --------------ms060400040409000001000606 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 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCC AtowggJDoAMCAQICEEs5xg/J3t77QWJ4SatV1HcwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDUwNzIzMTYxMFoX DTEwMDUwNzIzMTYxMFowQjEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEfMB0G CSqGSIb3DQEJARYQc3RldmVAaWJjdGVjaC5jYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBAJSTRAjP1RVa87/mnZn+PBTbENgyhhBJ4rWApmaNcthzRdk2DB/49KrXx3EQP60w Lj4KU0DFkiGNVj9BnVxRAx/WDXKxGC3uGGEG6gjyWv8KFMWMsH9mL7y7uNow1HueT6pZUf9o yY8Ewd+01QpGi7FfXOae7lGHhbEwnEJGwz08ytRfLmH0KtEzlZanZZhwDGX5s1kIHnyxdACh 3byXY6Z2bOrx0rcrQHCnHJppxddR60F7igjaMuBFstE51h9XTgXDNKJbglqTug5ghGihNuP6 VsBN7ue62y96UGIE22TvKEcAQ665vQGjHqZeSzZYy+hWNOa27pWFmhlqFjx0x8MCAwEAAaMt MCswGwYDVR0RBBQwEoEQc3RldmVAaWJjdGVjaC5jYTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3 DQEBBQUAA4GBAMOmjxjp2Xzk6ZHLwTgFDzVhm98RjRT3UXotKjNIR7SgwfWF5wkJrx4I+dXu ui5ztMEq4bTTRgJ344MqE6uZiZlg+tBIFHZGCJfKdzsX4QuV2jmw0sR5dMaYxG6tlDB0YUMv gTqzV7ZDpiusTMOZe9pP1PdxFhOcIJXtMQDj5LhuMIIC2jCCAkOgAwIBAgIQSznGD8ne3vtB YnhJq1XUdzANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDkwNTA3MjMxNjEwWhcNMTAwNTA3MjMxNjEwWjBCMR8wHQYD VQQDExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzdGV2ZUBpYmN0 ZWNoLmNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJNECM/VFVrzv+admf48 FNsQ2DKGEEnitYCmZo1y2HNF2TYMH/j0qtfHcRA/rTAuPgpTQMWSIY1WP0GdXFEDH9YNcrEY Le4YYQbqCPJa/woUxYywf2YvvLu42jDUe55PqllR/2jJjwTB37TVCkaLsV9c5p7uUYeFsTCc QkbDPTzK1F8uYfQq0TOVlqdlmHAMZfmzWQgefLF0AKHdvJdjpnZs6vHStytAcKccmmnF11Hr QXuKCNoy4EWy0TnWH1dOBcM0oluCWpO6DmCEaKE24/pWwE3u57rbL3pQYgTbZO8oRwBDrrm9 AaMepl5LNljL6FY05rbulYWaGWoWPHTHwwIDAQABoy0wKzAbBgNVHREEFDASgRBzdGV2ZUBp YmN0ZWNoLmNhMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAw6aPGOnZfOTpkcvB OAUPNWGb3xGNFPdRei0qM0hHtKDB9YXnCQmvHgj51e66LnO0wSrhtNNGAnfjgyoTq5mJmWD6 0EgUdkYIl8p3OxfhC5XaObDSxHl0xpjEbq2UMHRhQy+BOrNXtkOmK6xMw5l72k/U93EWE5wg le0xAOPkuG4wggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEs5xg/J3t77QWJ4SatV 1HcwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDkwNjExMDAwNzQ3WjAjBgkqhkiG9w0BCQQxFgQUZR/vHbQSfvpxctl00p4LWir6 eQMwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0Fi eEmrVdR3MIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0FieEmrVdR3MA0GCSqGSIb3DQEBAQUABIIB AFpRcEPoh2y3k6RDdHkWojh8m64zaP1bfHJlmH01ytB9S64ROQHGvtvBMgMDazeZ+uRG+YMW b9No9T0hbIulUuO3YdCx2UE8FMeU+hNNB76chL4bBzUTpiacChx2/0EH+uJ4LitRjKnCtkbo IHvWFszLktssR7DiFw41YPUKZDomoLL668QLmgqgS4aF3dYNWWv5axBnrPowiaswA/G9yp5o tVSuc6UcfeEalSgSlK5s+DTLqlWnxZyd2v6fxBm8Fok7dbQEPZGlmJfOj1wuXMFhMM3sNLEG 03f0MUxZp+XMnp/7r3/i+Mg7xIVK/jbd0DSpCaL7vuNsczvXRcybTIoAAAAAAAA= --------------ms060400040409000001000606-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 00:14:26 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 94915106564A for ; Thu, 11 Jun 2009 00:14:26 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.240]) by mx1.freebsd.org (Postfix) with ESMTP id 465728FC0A for ; Thu, 11 Jun 2009 00:14:25 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: by an-out-0708.google.com with SMTP id c3so624337ana.13 for ; Wed, 10 Jun 2009 17:14:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=18FucAcrL+kIeQhr1V8z2slwyMMlLFvHE3+/csvGczw=; b=eNc5OP9yyp6lXwfTBi/K+ad3y5DeaHdbE9wnPyhZp0Y2S2PxV0j+NQnhwRmjUfqn6B yksdHNg3KkVTZmeVsixpi7jh1PVbcKhLJR7oerT4EsvEy68f5gwvDuanBY0isqed0exE da9VeZ3BP9tkWDAJkeb+5n+vi7UsuMdUgHuB4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=SRzpdQQeViMvap022ovilkbujRE3H013g8zO1OEw3qx/9CnWDuKnrdFBV+WuKN9pPh P3/gIaYfkVpn9jMQESBClUapWrexuk4SCSSW8RoMHZ3WQCm6QJuXM5UOMJphkIyfEgGK clTFNoMkaqrQCm4eoVzSVTQVrGTYIYejDVhNE= MIME-Version: 1.0 Received: by 10.231.36.8 with SMTP id r8mr1046583ibd.8.1244677769119; Wed, 10 Jun 2009 16:49:29 -0700 (PDT) Date: Wed, 10 Jun 2009 16:49:29 -0700 Message-ID: From: "b. f." To: djuatdelta@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org Subject: Re: PDF inventory 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: Thu, 11 Jun 2009 00:14:26 -0000 >Hmm.. The command > >find *.pdf -exec pdftotext {} \; > >works in directories in which no PDF file returns the "Document has >not the mandatory ending %EOF" error. When a directory contains one >of these files, none of the files get converted. Is there some way to >ignore or skip over this %EOF problem and continue operating on the >remaining PDFs? Use something like: find -X DIR -name '*.[pP][dD][fF]' | xargs -I % pdftotext "%" where DIR is the root of the filesystem directory hierarchy to be searched. Be careful of how many arguments you feed to pdftotext: it can overwrite files. You may need to handle some files with encryption, etc. differently. b. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 00:51:23 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40FFD106564A for ; Thu, 11 Jun 2009 00:51:23 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from mail-px0-f192.google.com (mail-px0-f192.google.com [209.85.216.192]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7E28FC17 for ; Thu, 11 Jun 2009 00:51:22 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by mail-px0-f192.google.com with SMTP id 30so684218pxi.3 for ; Wed, 10 Jun 2009 17:51:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=yPxP6Ax1ZQgvAq1YNfaukCeOrWmfRu9Y2OujxP6Hf2I=; b=C45eKIAqEsbK/4Vf5ATz3xyi3pH7qDI1CMqDybg9SwobvlAvYYEvf9xRLpuJ5gTpIm edQTrtqKGwd1D8/2b61i+29DWA6z3eEk/rV19nLPVyEPuu7Et9YHr/QD6ackf29YZz7N G8iWvNCLZmjMWHnColbrLUkyAslEmBnfVsvNQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=ZjSwBnoLHzhNUjUEB3P6QDePpq2tlDyUUBVvdnEME7lKPwWi96PxF5uBbGEC2wgRty yzns1gsIksQseEjRZB/13xFEUxVBT/WYZcYMZWqjbgTdIsIf2WoaAObFh82K4mqp0wyg 40/oEgOEcabVWlhnxizhQBA6pg7sR1MMxXpUM= Received: by 10.114.13.20 with SMTP id 20mr2977594wam.153.1244681482821; Wed, 10 Jun 2009 17:51:22 -0700 (PDT) Received: from ?192.168.1.100? (adsl-76-238-148-150.dsl.irvnca.sbcglobal.net [76.238.148.150]) by mx.google.com with ESMTPS id l37sm446057waf.5.2009.06.10.17.51.21 (version=SSLv3 cipher=RC4-MD5); Wed, 10 Jun 2009 17:51:21 -0700 (PDT) Sender: Chris Maness Message-ID: <4A305508.5030708@chrismaness.com> Date: Wed, 10 Jun 2009 17:51:20 -0700 From: Chris Maness User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: Wojciech Puchar 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: AFP Client 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: Thu, 11 Jun 2009 00:51:23 -0000 Wojciech Puchar wrote: >> I use dump. I think dumping to the same partition that you are >> backing up is a bad idea. > works fine and WILL work fine by design. > > just you have to create directory, flag it with nodump and dump to > file in that directory I forgot about nodump. Thanks. Chris From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 00:57:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 511901065673 for ; Thu, 11 Jun 2009 00:57:11 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id 06BC48FC1A for ; Thu, 11 Jun 2009 00:57:10 +0000 (UTC) (envelope-from christopher.maness@gmail.com) Received: by qyk3 with SMTP id 3so1757328qyk.3 for ; Wed, 10 Jun 2009 17:57:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=Ny1s+kx7Nm2437H+NkMrlmR63sxwaAt/PSnTtuqxkII=; b=jlAx+kagqGiUfrPhxQnHI3d041wixOLKdcsMnTENfeic5ygIbTdkPhZX/UjBiQP+aJ lvnvVIJAdvLNVSesQjFNj5aTZjCbMmXGpoUfejqUB/TVDUEy9wUaD1XsF2vxf0HagxrE cBF4R73Dk5adXLEQo9ctS7espg+P5FsASqfaw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=WSGHbfHeqgbU80WJ0DklPXMl4QHb9df2F8932Ty90hh68xw/63JcIcU4b5dB8NkFq9 nF9N2XY887qp0owxib9aW5wb+5MgoZDl9T2GPCYjCWinHxy3o/N5vA2a5SDPlSF6GRre nztjneGY8FlF5vcIea8wTyO6nAjwbOLXaKfMk= MIME-Version: 1.0 Sender: christopher.maness@gmail.com Received: by 10.220.90.144 with SMTP id i16mr1733332vcm.14.1244681830006; Wed, 10 Jun 2009 17:57:10 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 17:57:09 -0700 X-Google-Sender-Auth: bd31189005e77f42 Message-ID: From: Chris Maness To: patrick Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Thu, 11 Jun 2009 00:57:11 -0000 I tried mounting a mac box to my FreeBSD server a while back, but I think I was not able to get it to go RW. How do you set up NFS as a service in OSX 10.4? That would be the best way as my backup scripts are already set up to do an NFS mount. Thanks, Chris On Wed, Jun 10, 2009 at 3:22 PM, patrick wrote: > Mac OS X supports NFS, so you could always mount your Mac on FreeBSD via = NFS. > > Patrick > > On Wed, Jun 10, 2009 at 10:45 AM, Chris Maness wro= te: >> Is there an AFP client for FreeBSD? =A0I have a mac with a gargantuan >> hard drive, and I would like to back up my FreeBSD server to it, and >> back up my mac to my FreeBSD server. =A0I have seen where FreeBSD can be >> an AFP server, but there is little information on the client. =A0Any >> suggestions? >> >> Thanks, >> Chris Maness >> _______________________________________________ >> 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 11 00:59:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CED2D106566B for ; Thu, 11 Jun 2009 00:59:39 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 7F16D8FC13 for ; Thu, 11 Jun 2009 00:59:39 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 58834 invoked by uid 89); 11 Jun 2009 01:01:17 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 11 Jun 2009 01:01:17 -0000 Message-ID: <4A305706.9070801@ibctech.ca> Date: Wed, 10 Jun 2009 20:59:50 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Jason Helfman References: <4A304AD3.10109@ibctech.ca> <20090611005527.GD65313@eggman.experts-exchange.com> In-Reply-To: <20090611005527.GD65313@eggman.experts-exchange.com> X-Enigmail-Version: 0.95.7 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms060309030006020809060600" Cc: "freebsd-questions@freebsd.org Questions -" Subject: Re: Automagic revision numbers with Perl Modules and SVN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 00:59:40 -0000 This is a cryptographically signed message in MIME format. --------------ms060309030006020809060600 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Jason Helfman wrote: > Have you heard of cvs2svn? I am not sure if this could be a good candidate > for your migration, or not, but we used it successfully at a company I used > to work for. > > http://cvs2svn.tigris.org/ Thanks Jason, but it's too late for that. Essentially, I rm'd the CVS directories from my projects to start directly from scratch. When I toyed with CVS, I really didn't know what I was doing. Now I'm using SVN, with a better understanding, and the willingness to stick with it for management of my code. I let CVS lapse, and was editing things outside of it's scope. This time, I'm keeping a proper central repository as our company/services are expanding too quickly for me to keep /home/steve/devel directories on each and every server. Cheers, Steve --------------ms060309030006020809060600 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 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCC AtowggJDoAMCAQICEEs5xg/J3t77QWJ4SatV1HcwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDUwNzIzMTYxMFoX DTEwMDUwNzIzMTYxMFowQjEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEfMB0G CSqGSIb3DQEJARYQc3RldmVAaWJjdGVjaC5jYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBAJSTRAjP1RVa87/mnZn+PBTbENgyhhBJ4rWApmaNcthzRdk2DB/49KrXx3EQP60w Lj4KU0DFkiGNVj9BnVxRAx/WDXKxGC3uGGEG6gjyWv8KFMWMsH9mL7y7uNow1HueT6pZUf9o yY8Ewd+01QpGi7FfXOae7lGHhbEwnEJGwz08ytRfLmH0KtEzlZanZZhwDGX5s1kIHnyxdACh 3byXY6Z2bOrx0rcrQHCnHJppxddR60F7igjaMuBFstE51h9XTgXDNKJbglqTug5ghGihNuP6 VsBN7ue62y96UGIE22TvKEcAQ665vQGjHqZeSzZYy+hWNOa27pWFmhlqFjx0x8MCAwEAAaMt MCswGwYDVR0RBBQwEoEQc3RldmVAaWJjdGVjaC5jYTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3 DQEBBQUAA4GBAMOmjxjp2Xzk6ZHLwTgFDzVhm98RjRT3UXotKjNIR7SgwfWF5wkJrx4I+dXu ui5ztMEq4bTTRgJ344MqE6uZiZlg+tBIFHZGCJfKdzsX4QuV2jmw0sR5dMaYxG6tlDB0YUMv gTqzV7ZDpiusTMOZe9pP1PdxFhOcIJXtMQDj5LhuMIIC2jCCAkOgAwIBAgIQSznGD8ne3vtB YnhJq1XUdzANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDkwNTA3MjMxNjEwWhcNMTAwNTA3MjMxNjEwWjBCMR8wHQYD VQQDExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzdGV2ZUBpYmN0 ZWNoLmNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJNECM/VFVrzv+admf48 FNsQ2DKGEEnitYCmZo1y2HNF2TYMH/j0qtfHcRA/rTAuPgpTQMWSIY1WP0GdXFEDH9YNcrEY Le4YYQbqCPJa/woUxYywf2YvvLu42jDUe55PqllR/2jJjwTB37TVCkaLsV9c5p7uUYeFsTCc QkbDPTzK1F8uYfQq0TOVlqdlmHAMZfmzWQgefLF0AKHdvJdjpnZs6vHStytAcKccmmnF11Hr QXuKCNoy4EWy0TnWH1dOBcM0oluCWpO6DmCEaKE24/pWwE3u57rbL3pQYgTbZO8oRwBDrrm9 AaMepl5LNljL6FY05rbulYWaGWoWPHTHwwIDAQABoy0wKzAbBgNVHREEFDASgRBzdGV2ZUBp YmN0ZWNoLmNhMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAw6aPGOnZfOTpkcvB OAUPNWGb3xGNFPdRei0qM0hHtKDB9YXnCQmvHgj51e66LnO0wSrhtNNGAnfjgyoTq5mJmWD6 0EgUdkYIl8p3OxfhC5XaObDSxHl0xpjEbq2UMHRhQy+BOrNXtkOmK6xMw5l72k/U93EWE5wg le0xAOPkuG4wggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEs5xg/J3t77QWJ4SatV 1HcwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDkwNjExMDA1OTUwWjAjBgkqhkiG9w0BCQQxFgQUfkmxTbxTFF8IUGLHeSk/b1RV BBwwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0Fi eEmrVdR3MIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0FieEmrVdR3MA0GCSqGSIb3DQEBAQUABIIB AGUuFKZ+ADJleh8DwAtGpaov+j8gvl6ElUf/wzqOmC9XBWh/dT9mPdd00qphBtMBwN2Myx38 tkitwrPOPhA6sVZST4fNO9sxP9it/EAjUoALhOgzAo5NTcjh5eL0QkY4qJOF6lKRiL2qeSas VODe2FLo8mHS2qY3ABYIdsSCfvJpanZ2358lH10swiIE9UnwI634IMdJBRlEcice+jgk1fgG 9GjTxxg8kBMxAfMYn522hBgUhgReGcEbHQwkNginEwalE9OT2kpI0EY2lLbckm+nXZs46/yp dheVnMS5d1K3CbB4nEuLmHgbsmkI9Lmalrb+gnk+sA3WMYnD75DjFKAAAAAAAAA= --------------ms060309030006020809060600-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 01:05:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D8B6106566B for ; Thu, 11 Jun 2009 01:05:50 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.103.93]) by mx1.freebsd.org (Postfix) with ESMTP id DB0818FC14 for ; Thu, 11 Jun 2009 01:05:49 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (localhost.cis.okstate.edu [127.0.0.1]) by dc.cis.okstate.edu (8.14.2/8.13.8) with ESMTP id n5B15XZc040275 for ; Wed, 10 Jun 2009 20:05:33 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200906110105.n5B15XZc040275@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <40273.1244682333.1@dc.cis.okstate.edu> Date: Wed, 10 Jun 2009 20:05:33 -0500 From: Martin McCormick Subject: When the Remote end of a Telnet drops X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 01:05:50 -0000 In the last two weeks, we have suddenly begun having a problem when telnetting to a telephone switch in order to manage it. This device does not have ssh or we would sure be using that. We run an expect script to poll various registers on the switch and the process is fairly simple. We ask for various listings of registers. When done with a listing, the switch sends a prompt which we see and then either go to the next poll or end and log out. Recently, output just stops at the end of a line with no corruption of the text. There is even a Return character. The telnet session just sits there for days if we don't stop it. It is tempting to point fingers at the switch and the people closest to the switch say that it must be something with the network, all that fun sort of stuff that happens when you don't have undisputable proof and it doesn't happen every day. Exactly a month ago, I upgraded the patch level on this system to FreeBSD 6.3-RELEASE-p10 Does anybody know if there are any recent issues with telnet? As a test, I telnetted to a system and then literally pulled the Ethernet plug on the remote system. The system I was telnetting from sat for many minutes. I finally hit Enter and a few minutes later, it figured out there was nothing on the remote end. There was the usual "Connection closed by foreign host." message. Is there a way to make telnet either more proactive about detecting a loss of connection or of logging oddities if the connection is flickering? One such stall happened on a weekend and the connection appeared to be up for 4 days. A ps ax |grep telnet |grep -v grep showed a connection still up at least until I killed it. At that point, it logged "terminated" and ended. I can certainly put a timeout in expect but we have been using this same script, etc, for around 6 years and never had this problem before so a timeout would just hide whatever has changed. My own gut feeling is that the FreeBSD system is fine as we have no other problems with anything else. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Telecommunications Services Group From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 01:10:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92263106566B for ; Thu, 11 Jun 2009 01:10:59 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 586408FC08 for ; Thu, 11 Jun 2009 01:10:58 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 8A1007E837; Wed, 10 Jun 2009 17:10:57 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 17:10:55 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <200906102133.n5ALXJZV091416@dc.cis.okstate.edu> In-Reply-To: <200906102133.n5ALXJZV091416@dc.cis.okstate.edu> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906101710.55878.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Martin McCormick Subject: Re: Control-Z the Sleep Signal X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 01:10:59 -0000 On Wednesday 10 June 2009 13:33:19 Martin McCormick wrote: > We use both bind and the ISC DHCP server and are very > satisfied customers. When you use omshell to add a bootP entry, > it inserts it as a clause in the dhcpd.leases file but you still > must specify all the parameters yourself. Perhaps you can use the omapi(3) interfaces. I'm sure the ISC developers would like to know why you cannot and perhaps provide the interfaces you need. Or you could wrap omshell with the input you retrieved. Whichever, it would allow you to get rid of the locks all together by putting the burden on the DHCP server, rather then a shared client program. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 01:20:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85E7B1065679 for ; Thu, 11 Jun 2009 01:20:15 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 954548FC0C for ; Thu, 11 Jun 2009 01:20:13 +0000 (UTC) (envelope-from gibblertron@gmail.com) Received: by gxk3 with SMTP id 3so1650006gxk.19 for ; Wed, 10 Jun 2009 18:20:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=rePUvCvDzwNI56DAZtaaI5YAib1uUk3wBCY6rqgjI94=; b=FriMmGErokjOJXw0FxvjHH1sM9H/Z7H6+F7Mb3HIQ6CrrGm57Q6x/KTtUA42hnc+KT UqBrAYjlQJlxsFLHIdwYjiojO/KaZyweoWPq1BYivAS2lJkn76pDpiB3hns9mz/2AOOi 3PGaMg7a7SaQnAjIrMhkx0H7ES8sHGMW2Mju8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=DB10sNsmQ1sTPLttzYZ4iXWop0Q3oChY6vb8+aX9R7amXyzx5/K3hIpE7juVbDFjTG Mhf76UQAerryw2uX5roC/L0iyvViI9MoYkgmXidQxm6bfb7T7Q+zPWw2FuizsDMCjcpG h8MPp60OtZJJazS3hjaOAQ8iz9YPmoohHANYs= MIME-Version: 1.0 Received: by 10.151.75.7 with SMTP id c7mr3873766ybl.242.1244683170532; Wed, 10 Jun 2009 18:19:30 -0700 (PDT) In-Reply-To: References: Date: Wed, 10 Jun 2009 18:19:30 -0700 Message-ID: From: patrick To: Chris Maness Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Thu, 11 Jun 2009 01:20:16 -0000 Oh, I don't know about 10.4. Looks easy enough in 10.5: http://www.macresearch.org/nfs-exports-leopard You could also use sshfs: http://www.freshports.org/sysutils/fusefs-sshfs/ It would be a bit slower, but reliable. Patrick On Wed, Jun 10, 2009 at 5:57 PM, Chris Maness wrote: > I tried mounting a mac box to my FreeBSD server a while back, but I > think I was not able to get it to go RW. > > How do you set up NFS as a service in OSX 10.4? =A0That would be the > best way as my backup scripts are already set up to do an NFS mount. > > Thanks, > Chris > > On Wed, Jun 10, 2009 at 3:22 PM, patrick wrote: >> Mac OS X supports NFS, so you could always mount your Mac on FreeBSD via= NFS. >> >> Patrick >> >> On Wed, Jun 10, 2009 at 10:45 AM, Chris Maness wr= ote: >>> Is there an AFP client for FreeBSD? =A0I have a mac with a gargantuan >>> hard drive, and I would like to back up my FreeBSD server to it, and >>> back up my mac to my FreeBSD server. =A0I have seen where FreeBSD can b= e >>> an AFP server, but there is little information on the client. =A0Any >>> suggestions? >>> >>> Thanks, >>> Chris Maness >>> _______________________________________________ >>> 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 11 01:29:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BBB8F106564A for ; Thu, 11 Jun 2009 01:29:43 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 3D3648FC13 for ; Thu, 11 Jun 2009 01:29:42 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: by fxm20 with SMTP id 20so1133975fxm.43 for ; Wed, 10 Jun 2009 18:29:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received :x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=RHqFg+d7rUDSnsFQcv9qvwVpsSbXcoG9nQ8+ZaVdVIQ=; b=xHXJCmeQoVmzyRR0bL2DgShcWclmtgH/YNP85xXgjrmuZnKDQcCtZb17vedMSGundS ghXQOUM8th8OnoQgRMN9mbxhYBGfk8EmhjR5MQyjVTafH59mB38/UoLCF8T+sFF3dnGL 03+5ie+URuReRUFzPYbp5uf5jYPnoJgFBJY2w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-authentication-warning:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; b=SmmS5YehMXJt6lb4nooG/oOKKONRiOZROnI5yF2E3CH6vR5hDhFVm8cSjy21yPPv+X ojeO9B9z3q2zRdZOBoL8KMYSff3pHlV9P1GbcGRrJSGQgdaPfbfDuQj7dGiJIq7PWcSl MAymC1lxm8Cv1pQZ9v1Mk3SJIjSqe55uSSjj4= Received: by 10.102.219.8 with SMTP id r8mr1024554mug.0.1244683782173; Wed, 10 Jun 2009 18:29:42 -0700 (PDT) Received: from darklight.homeunix.org ([85.175.158.234]) by mx.google.com with ESMTPS id y2sm15744025mug.43.2009.06.10.18.29.41 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 10 Jun 2009 18:29:41 -0700 (PDT) Received: from darklight.homeunix.org (darklight.homeunix.org [127.0.0.1]) by darklight.homeunix.org (8.14.3/8.14.3) with ESMTP id n5B1Tc7u065795; Thu, 11 Jun 2009 05:29:47 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.homeunix.org (8.14.3/8.14.3/Submit) id n59GKvWL001639; Tue, 9 Jun 2009 20:20:57 +0400 (MSD) (envelope-from yuri.pankov@gmail.com) X-Authentication-Warning: darklight.homeunix.org: yuri set sender to yuri.pankov@gmail.com using -f Date: Tue, 9 Jun 2009 20:20:57 +0400 From: Yuri Pankov To: DA Forsyth Message-ID: <20090609162057.GA1457@darklight.homeunix.org> References: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A2E9524.3642.14983ABC@d.forsyth.ru.ac.za> User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-questions@freebsd.org Subject: Re: another compile 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: Thu, 11 Jun 2009 01:29:44 -0000 On Tue, Jun 09, 2009 at 05:00:20PM +0200, DA Forsyth wrote: > Hiya > > trying to build kernel for 7.2 and get this > (my earlier problem was my having CFLAGS=... in /etc/src.conf) > > MAKE=make sh /usr/src/sys/conf/newvers.sh LERGY72 > cc -c -O -pipe -std=c99 -g -Wall -Wredundant-decls -Wnested-externs - > Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline - > Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc - > I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL - > DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common - > finline-limit=8000 --param inline-unit-growth=100 --param large- > function-growth=1000 -mno-align-long-strings -mpreferred-stack- > boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 - > ffreestanding -Werror vers.c > linking kernel.debug > udbp.o(.text+0x59): In function `ng_udbp_disconnect': > /usr/src/sys/dev/usb/udbp.c:857: undefined reference to > `ng_rmnode_self' > udbp.o(.text+0xc9): In function `udbp_detach': > /usr/src/sys/dev/usb/udbp.c:450: undefined reference to > `ng_rmnode_self' > udbp.o(.text+0xde):/usr/src/sys/dev/usb/udbp.c:452: undefined > reference to `ng_unref_node' > udbp.o(.text+0x79e): In function `udbp_attach': > /usr/src/sys/dev/usb/udbp.c:375: undefined reference to `ng_newtype' > udbp.o(.text+0x7cc):/usr/src/sys/dev/usb/udbp.c:381: undefined > reference to `ng_make_node_common' > udbp.o(.text+0x813):/usr/src/sys/dev/usb/udbp.c:384: undefined > reference to `ng_name_node' > udbp.o(.text+0x828):/usr/src/sys/dev/usb/udbp.c:385: undefined > reference to `ng_unref_node' > udbp.o(.text+0x993): In function `ng_udbp_rcvmsg': > /usr/src/sys/dev/usb/udbp.c:705: undefined reference to > `M_NETGRAPH_MSG' > udbp.o(.text+0xa55):/usr/src/sys/dev/usb/udbp.c:733: undefined > reference to `ng_address_ID' > udbp.o(.text+0xa6e):/usr/src/sys/dev/usb/udbp.c:733: undefined > reference to `ng_snd_item' > udbp.o(.text+0xa7d):/usr/src/sys/dev/usb/udbp.c:733: undefined > reference to `ng_free_item' > udbp.o(.text+0xa89):/usr/src/sys/dev/usb/udbp.c:734: undefined > reference to `M_NETGRAPH_MSG' > udbp.o(.text+0xb15): In function `udbp_in_transfer_cb': > /usr/src/sys/dev/usb/udbp.c:531: undefined reference to > `ng_package_data' > udbp.o(.text+0xb3a):/usr/src/sys/dev/usb/udbp.c:531: undefined > reference to `ng_address_hook' > udbp.o(.text+0xb4e):/usr/src/sys/dev/usb/udbp.c:531: undefined > reference to `ng_snd_item' > udbp.o(.text+0xd33): In function `ng_udbp_rmnode': > /usr/src/sys/dev/usb/udbp.c:815: undefined reference to > `ng_unref_node' > udbp.o(.text+0xd46):/usr/src/sys/dev/usb/udbp.c:817: undefined > reference to `ng_make_node_common' > udbp.o(.text+0xd7f):/usr/src/sys/dev/usb/udbp.c:820: undefined > reference to `ng_name_node' > udbp.o(.text+0xd90):/usr/src/sys/dev/usb/udbp.c:821: undefined > reference to `ng_unref_node' > udbp.o(.text+0xde3): In function `ng_udbp_rcvdata': > /usr/src/sys/dev/usb/udbp.c:752: undefined reference to > `ng_free_item' > udbp.o(.rodata+0x20): In function `ng_udbp_connect': > /usr/src/sys/dev/usb/udbp.c:842: undefined reference to > `ng_parse_int32_type' > udbp.o(.rodata+0x3c): In function `ng_udbp_disconnect': > /usr/src/sys/dev/usb/udbp.c:853: undefined reference to > `ng_parse_struct_type' > udbp.o(.rodata+0x64):/usr/src/sys/dev/usb/udbp.c:859: undefined > reference to `ng_parse_int32_type' > udbp.o(.rodata+0x70): In function `udbp_detach': > /usr/src/sys/dev/usb/udbp.c:433: undefined reference to > `ng_parse_int32_type' > *** Error code 1 > > Stop in /usr/obj/usr/src/sys/LERGY72. > *** Error code 1 > > > -- > DA Fo rsyth Network Supervisor > Principal Technical Officer -- Institute for Water Research > http://www.ru.ac.za/institutes/iwr/ Looks like you are missing `options NETGRAPH' in your kernel config (check udbp(4), EXAMPLES section). Yuri From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 01:39:11 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8A401065672 for ; Thu, 11 Jun 2009 01:39:11 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from smtp2.mc.surewest.net (qsmtp.mc.surewest.net [66.60.130.145]) by mx1.freebsd.org (Postfix) with SMTP id 97D938FC15 for ; Thu, 11 Jun 2009 01:39:11 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: (qmail 27601 invoked from network); 10 Jun 2009 18:04:10 -0700 Received: by simscan 1.1.0 ppid: 27586, pid: 27587, t: 1.7575s scanners: regex: 1.1.0 attach: 1.1.0 spam: 3.1.7-deb X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on smtp2.surewest.net. X-Spam-Level: X-Spam-Status: No, score=0.0 required=10.0 tests=none autolearn=disabled version=3.1.7-deb X-Spam-CMAE-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=jDt-9pEAAAAA:8 a=qJb2U4GWTZvU5MYENrsA:9 a=oMVDmAVIXy1z1NVZ66YA:7 a=dexU8v7nEv0isw2McZBjvl15vRkA:4 Received: from unknown (HELO blacklamb.mykitchentable.net) (69.62.230.77) by smtp2 with SMTP; 10 Jun 2009 18:04:09 -0700 Received: from [127.0.0.1] (bigdaddy.mykitchentable.net [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with ESMTPA id 4F5CA16561E for ; Wed, 10 Jun 2009 18:12:24 -0700 (PDT) Message-ID: <4A3059F7.8080301@mykitchentable.net> Date: Wed, 10 Jun 2009 18:12:23 -0700 From: Drew Tomlinson User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 090610-0, 06/10/2009), Outbound message X-Antivirus-Status: Clean Cc: Subject: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 01:39:12 -0000 I installed a software named "urchin" on my FBSD 7.2 box. Unfortunately, it didn't come with an rc.d script to automate startup and shutdown. And even more unfortunately, I can't seem to get my head around the concepts in "Practical rc.d scripting in BSD" (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). This is the command that starts the app: /usr/local/urchin/bin/urchinctl And here are the options: Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action where: -v prints out the version of urchinctl -h prints out this information -e activates encryption (SSL) in the webserver -s performs the action on the Urchin scheduler ONLY -w performs the action on the Urchin webserver ONLY -p specifies the port for the webserver to listen on action is either: start, stop, restart, or status start: starts the webserver and scheduler stop: stops the webserver and scheduler restart: stops and then starts the webserver and scheduler status: prints out whether the webserver and scheduler are running By default, the action is performed on both the webserver and the schedulers unless the -s or -w options are specified All I want to do is create a script within the rc.d framework that runs "/usr/local/urchin/bin/urchinctl start" when the system boots and "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. Following the examples in the guide mentioned above, here is my attempt at that file: #!/bin/sh # PROVIDE: urchin # REQUIRE: NETWORKING # KEYWORD: shutdown # # Add the following line to /etc/rc.conf to enable urchin: # urchin_enable="YES" (bool): Set to "NO" by default. # Set it to "YES" to enable urchin. . /etc/rc.subr name="urchin" rcvar=`set_rcvar` command="/usr/local/urchin/bin/urchinctl " eval "${rcvar}=\${${rcvar}:-'NO'}" load_rc_config $name run_rc_command "$1" I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. However when I run the rc.d script, the urchinctl appears to run but doesn't like whatever arguments that are passed. See this output: urchin# ./urchin-server start Starting urchin. Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action I'm sure I'm missing some simple concept. I'd really appreciate a kick in the right direction. Thanks, Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 01:51:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73D961065676 for ; Thu, 11 Jun 2009 01:51:37 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 34EEF8FC29 for ; Thu, 11 Jun 2009 01:51:36 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 283D07E83F; Wed, 10 Jun 2009 17:51:36 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Wed, 10 Jun 2009 17:51:35 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.3; i386; ; ) References: <4A3059F7.8080301@mykitchentable.net> In-Reply-To: <4A3059F7.8080301@mykitchentable.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906101751.35272.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Drew Tomlinson Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 01:51:38 -0000 On Wednesday 10 June 2009 17:12:23 Drew Tomlinson wrote: > I installed a software named "urchin" on my FBSD 7.2 box. > Unfortunately, it didn't come with an rc.d script to automate startup > and shutdown. And even more unfortunately, I can't seem to get my head > around the concepts in "Practical rc.d scripting in BSD" > (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). > > This is the command that starts the app: > > /usr/local/urchin/bin/urchinctl > > And here are the options: > > Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > where: > -v prints out the version of urchinctl > -h prints out this information > -e activates encryption (SSL) in the webserver > -s performs the action on the Urchin scheduler ONLY > -w performs the action on the Urchin webserver ONLY > -p specifies the port for the webserver to listen on > > action is either: start, stop, restart, or status > > start: starts the webserver and scheduler > stop: stops the webserver and scheduler > restart: stops and then starts the webserver and scheduler > status: prints out whether the webserver and scheduler are running > > By default, the action is performed on both the webserver and the > schedulers unless the -s or -w options are specified > > All I want to do is create a script within the rc.d framework that runs > "/usr/local/urchin/bin/urchinctl start" when the system boots and > "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. > > Following the examples in the guide mentioned above, here is my attempt > at that file: > > #!/bin/sh > # PROVIDE: urchin > # REQUIRE: NETWORKING > # KEYWORD: shutdown > # > # Add the following line to /etc/rc.conf to enable urchin: > # urchin_enable="YES" (bool): Set to "NO" by default. > # Set it to "YES" to enable urchin. > . /etc/rc.subr > name="urchin" > rcvar=`set_rcvar` > command="/usr/local/urchin/bin/urchinctl " ${name}_args=$1 : ${name}_enable="NO" > load_rc_config $name > run_rc_command "$1" I think the above would work, but didn't test it. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 02:03:27 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D4291065670 for ; Thu, 11 Jun 2009 02:03:27 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.120]) by mx1.freebsd.org (Postfix) with ESMTP id DC8DE8FC16 for ; Thu, 11 Jun 2009 02:03:26 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from [192.168.2.102] (really [76.182.207.163]) by cdptpa-omta02.mail.rr.com with ESMTP id <20090611020325963.QUZW13528@cdptpa-omta02.mail.rr.com>; Thu, 11 Jun 2009 02:03:25 +0000 Date: Wed, 10 Jun 2009 21:03:17 -0500 From: Paul Schmehl To: Drew Tomlinson , freebsd-questions@FreeBSD.org Message-ID: <6322EB049C37BA76C25CD076@Macintosh-2.local> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 02:03:27 -0000 --On June 10, 2009 6:12:23 PM -0700 Drew Tomlinson wrote: > I installed a software named "urchin" on my FBSD 7.2 box. > Unfortunately, it didn't come with an rc.d script to automate startup > and shutdown. And even more unfortunately, I can't seem to get my head > around the concepts in "Practical rc.d scripting in BSD" > (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). > > This is the command that starts the app: > > /usr/local/urchin/bin/urchinctl > > And here are the options: > > Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > where: > -v prints out the version of urchinctl > -h prints out this information > -e activates encryption (SSL) in the webserver > -s performs the action on the Urchin scheduler ONLY > -w performs the action on the Urchin webserver ONLY > -p specifies the port for the webserver to listen on > > action is either: start, stop, restart, or status > > start: starts the webserver and scheduler > stop: stops the webserver and scheduler > restart: stops and then starts the webserver and scheduler > status: prints out whether the webserver and scheduler are running > > By default, the action is performed on both the webserver and the > schedulers unless the -s or -w options are specified > > All I want to do is create a script within the rc.d framework that runs > "/usr/local/urchin/bin/urchinctl start" when the system boots and > "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. > > Following the examples in the guide mentioned above, here is my attempt > at that file: > ># !/bin/sh ># PROVIDE: urchin ># REQUIRE: NETWORKING ># KEYWORD: shutdown ># ># Add the following line to /etc/rc.conf to enable urchin: ># urchin_enable="YES" (bool): Set to "NO" by default. ># Set it to "YES" to enable urchin. > . /etc/rc.subr > name="urchin" > rcvar=`set_rcvar` > command="/usr/local/urchin/bin/urchinctl " > eval "${rcvar}=\${${rcvar}:-'NO'}" > load_rc_config $name > run_rc_command "$1" > > I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. > However when I run the rc.d script, the urchinctl appears to run but > doesn't like whatever arguments that are passed. See this output: > > urchin# ./urchin-server start > Starting urchin. > > Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > > > I'm sure I'm missing some simple concept. I'd really appreciate a kick > in the right direction. > Where is urchin located? /usr/local/bin? /usr/local/bin/urchin/bin? Or somewhere else? Is urchinctl a shell or perl script? Paul Schmehl, If it isn't already obvious, my opinions are my own and not those of my employer. ****************************************** WARNING: Check the headers before replying From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 02:05:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76E05106566C for ; Thu, 11 Jun 2009 02:05:05 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from smtp2.mc.surewest.net (qsmtp.mc.surewest.net [66.60.130.145]) by mx1.freebsd.org (Postfix) with SMTP id 51E188FC0C for ; Thu, 11 Jun 2009 02:05:05 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: (qmail 14098 invoked from network); 10 Jun 2009 18:56:48 -0700 Received: by simscan 1.1.0 ppid: 14071, pid: 14083, t: 2.5239s scanners: regex: 1.1.0 attach: 1.1.0 spam: 3.1.7-deb X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on smtp2.surewest.net. X-Spam-Level: X-Spam-Status: No, score=0.0 required=10.0 tests=none autolearn=disabled version=3.1.7-deb X-Spam-CMAE-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=jDt-9pEAAAAA:8 a=KFhMAFj7IlYyiYP9iH0A:9 a=_Qkq1BIrZVgs8Oxx3okA:7 a=gGX2HOk-gOhplDzecdEkKcx0oD4A:4 Received: from unknown (HELO blacklamb.mykitchentable.net) (69.62.230.77) by smtp2 with SMTP; 10 Jun 2009 18:56:45 -0700 Received: from [127.0.0.1] (bigdaddy.mykitchentable.net [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with ESMTPA id E521C165622; Wed, 10 Jun 2009 19:05:01 -0700 (PDT) Message-ID: <4A30664C.3020308@mykitchentable.net> Date: Wed, 10 Jun 2009 19:05:00 -0700 From: Drew Tomlinson User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Mel Flynn References: <4A3059F7.8080301@mykitchentable.net> <200906101751.35272.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: <200906101751.35272.mel.flynn+fbsd.questions@mailing.thruhere.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 090610-0, 06/10/2009), Outbound message X-Antivirus-Status: Clean Cc: freebsd-questions@freebsd.org Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 02:05:05 -0000 Mel Flynn wrote: > On Wednesday 10 June 2009 17:12:23 Drew Tomlinson wrote: > >> I installed a software named "urchin" on my FBSD 7.2 box. >> Unfortunately, it didn't come with an rc.d script to automate startup >> and shutdown. And even more unfortunately, I can't seem to get my head >> around the concepts in "Practical rc.d scripting in BSD" >> (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). >> >> This is the command that starts the app: >> >> /usr/local/urchin/bin/urchinctl >> >> And here are the options: >> >> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action >> where: >> -v prints out the version of urchinctl >> -h prints out this information >> -e activates encryption (SSL) in the webserver >> -s performs the action on the Urchin scheduler ONLY >> -w performs the action on the Urchin webserver ONLY >> -p specifies the port for the webserver to listen on >> >> action is either: start, stop, restart, or status >> >> start: starts the webserver and scheduler >> stop: stops the webserver and scheduler >> restart: stops and then starts the webserver and scheduler >> status: prints out whether the webserver and scheduler are running >> >> By default, the action is performed on both the webserver and the >> schedulers unless the -s or -w options are specified >> >> All I want to do is create a script within the rc.d framework that runs >> "/usr/local/urchin/bin/urchinctl start" when the system boots and >> "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. >> >> Following the examples in the guide mentioned above, here is my attempt >> at that file: >> >> #!/bin/sh >> # PROVIDE: urchin >> # REQUIRE: NETWORKING >> # KEYWORD: shutdown >> # >> # Add the following line to /etc/rc.conf to enable urchin: >> # urchin_enable="YES" (bool): Set to "NO" by default. >> # Set it to "YES" to enable urchin. >> . /etc/rc.subr >> name="urchin" >> rcvar=`set_rcvar` >> command="/usr/local/urchin/bin/urchinctl " >> > ${name}_args=$1 > : ${name}_enable="NO" > > >> load_rc_config $name >> run_rc_command "$1" >> > > I think the above would work, but didn't test it. > I appreciate your help and added those lines. However it seems it didn't help. urchin# ./urchin-server status urchin_args=status: not found urchin is not running. However it is running: urchin# /usr/local/urchin/bin/urchinctl status Urchin webserver is running Urchin MASTER scheduler is running Urchin SLAVE scheduler is running Any other suggestions? Thanks, Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 02:09:34 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5FC5106564A for ; Thu, 11 Jun 2009 02:09:34 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from smtp2.mc.surewest.net (qsmtp.mc.surewest.net [66.60.130.145]) by mx1.freebsd.org (Postfix) with SMTP id C15068FC12 for ; Thu, 11 Jun 2009 02:09:27 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: (qmail 15978 invoked from network); 10 Jun 2009 19:01:04 -0700 Received: by simscan 1.1.0 ppid: 15960, pid: 15961, t: 2.1833s scanners: regex: 1.1.0 attach: 1.1.0 spam: 3.1.7-deb X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on smtp2.surewest.net. X-Spam-Level: X-Spam-Status: No, score=0.0 required=10.0 tests=none autolearn=disabled version=3.1.7-deb X-Spam-CMAE-Analysis: v=1.0 c=1 a=6I5d2MoRAAAA:8 a=jDt-9pEAAAAA:8 a=By_-LkPHqZr8pRudffkA:9 a=DGVqtkygRiUVIpAJ7SwA:7 a=be-mj62sOUbwNkS220gCzYmFefgA:4 a=Sllw8v0m4fwA:10 Received: from unknown (HELO blacklamb.mykitchentable.net) (69.62.230.77) by smtp2 with SMTP; 10 Jun 2009 19:01:02 -0700 Received: from [127.0.0.1] (bigdaddy.mykitchentable.net [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with ESMTPA id AE0DF165622; Wed, 10 Jun 2009 19:09:18 -0700 (PDT) Message-ID: <4A30674D.1040804@mykitchentable.net> Date: Wed, 10 Jun 2009 19:09:17 -0700 From: Drew Tomlinson User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Paul Schmehl References: <6322EB049C37BA76C25CD076@Macintosh-2.local> In-Reply-To: <6322EB049C37BA76C25CD076@Macintosh-2.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 090610-0, 06/10/2009), Outbound message X-Antivirus-Status: Clean Cc: freebsd-questions@FreeBSD.org Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 02:09:35 -0000 Paul Schmehl wrote: > --On June 10, 2009 6:12:23 PM -0700 Drew Tomlinson > wrote: > >> I installed a software named "urchin" on my FBSD 7.2 box. >> Unfortunately, it didn't come with an rc.d script to automate startup >> and shutdown. And even more unfortunately, I can't seem to get my head >> around the concepts in "Practical rc.d scripting in BSD" >> (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). >> >> This is the command that starts the app: >> >> /usr/local/urchin/bin/urchinctl >> >> And here are the options: >> >> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action >> where: >> -v prints out the version of urchinctl >> -h prints out this information >> -e activates encryption (SSL) in the webserver >> -s performs the action on the Urchin scheduler ONLY >> -w performs the action on the Urchin webserver ONLY >> -p specifies the port for the webserver to listen on >> >> action is either: start, stop, restart, or status >> >> start: starts the webserver and scheduler >> stop: stops the webserver and scheduler >> restart: stops and then starts the webserver and scheduler >> status: prints out whether the webserver and scheduler are >> running >> >> By default, the action is performed on both the webserver and the >> schedulers unless the -s or -w options are specified >> >> All I want to do is create a script within the rc.d framework that runs >> "/usr/local/urchin/bin/urchinctl start" when the system boots and >> "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. >> >> Following the examples in the guide mentioned above, here is my attempt >> at that file: >> >> # !/bin/sh >> # PROVIDE: urchin >> # REQUIRE: NETWORKING >> # KEYWORD: shutdown >> # >> # Add the following line to /etc/rc.conf to enable urchin: >> # urchin_enable="YES" (bool): Set to "NO" by default. >> # Set it to "YES" to enable urchin. >> . /etc/rc.subr >> name="urchin" >> rcvar=`set_rcvar` >> command="/usr/local/urchin/bin/urchinctl " >> eval "${rcvar}=\${${rcvar}:-'NO'}" >> load_rc_config $name >> run_rc_command "$1" >> >> I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. >> However when I run the rc.d script, the urchinctl appears to run but >> doesn't like whatever arguments that are passed. See this output: >> >> urchin# ./urchin-server start >> Starting urchin. >> >> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action >> >> >> I'm sure I'm missing some simple concept. I'd really appreciate a kick >> in the right direction. >> > > Where is urchin located? /usr/local/bin? /usr/local/bin/urchin/bin? > Or somewhere else? Is urchinctl a shell or perl script? There is no actual "urchin" as far as I know. The control file is /usr/local/urchin/bin/urchinctl. It is a executable file: urchin# file /usr/local/urchin/bin/urchinctl /usr/local/urchin/bin/urchinctl: ELF 32-bit LSB executable, Intel 80386, version 1 (FreeBSD), statically linked, stripped After running "/usr/local/urchin/bin/urchinctl start", I have these related processes: urchin# ps acux | grep urchin root 70937 0.0 0.0 3184 1996 ?? Ss 7:00PM 0:00.01 urchinwebd nobody 70938 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 urchinwebd nobody 70939 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 urchinwebd nobody 70940 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 urchinwebd nobody 70941 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 urchinwebd nobody 70942 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 urchinwebd nobody 70944 0.0 0.0 1460 720 ?? Ss 7:00PM 0:00.03 urchind nobody 70946 0.0 0.0 1332 668 ?? Is 7:00PM 0:00.51 urchind And conversely, "/usr/local/urchin/bin/urchinctl stop" removes all of the above processes. Thanks, Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 02:21:22 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 097AD106566B for ; Thu, 11 Jun 2009 02:21:22 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.25]) by mx1.freebsd.org (Postfix) with ESMTP id B5E088FC0C for ; Thu, 11 Jun 2009 02:21:21 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so692396qwe.7 for ; Wed, 10 Jun 2009 19:21:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=JerYoJcMLhv2dnN9gL0/5wLS07OZQmaB64K3c4WNfPY=; b=cigMIv2PGSsE9Jzr6fdJgMVFTqrBF7qdKp9FigEoiND6aU23pXoaR/VXRd33ygLLnI kesCgXuFM8djMHbDusH0cp+X9sBj9oBVEqS43FFljuQ20xt6sO7cGqrm005INFS0v5g7 GRX2Vsz/ttcwXAPD1J6bPLER47KtamCD1S354= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Ngf+MeJZN7X+3BkJ+1IOXt7JVPwZv6GozqrYAuL747HSkrAwrJ2ZcPBSsysHsiTrsM Lq2QJ6RC5QD2+kOBekCL2exxqNgXrS7bDvb0NjNEPoWvjDhNwfIBmbMT1RPi8ByID3Bm iOf3m53c+sqmRQSQOMg4Vk+tFC7oe9M8dAj9Y= MIME-Version: 1.0 Received: by 10.220.98.194 with SMTP id r2mr1756938vcn.49.1244686880094; Wed, 10 Jun 2009 19:21:20 -0700 (PDT) In-Reply-To: <4A3059F7.8080301@mykitchentable.net> References: <4A3059F7.8080301@mykitchentable.net> Date: Wed, 10 Jun 2009 20:21:20 -0600 Message-ID: From: Tim Judd To: Drew Tomlinson Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 02:21:22 -0000 since the rc.d scripts (as much as lots of other scripts in BSD are..) are borne shell scripts, can't 'set -x' be in the script to show the flow of it running??? That's what I'd try first. --Tim On 6/10/09, Drew Tomlinson wrote: > I installed a software named "urchin" on my FBSD 7.2 box. > Unfortunately, it didn't come with an rc.d script to automate startup > and shutdown. And even more unfortunately, I can't seem to get my head > around the concepts in "Practical rc.d scripting in BSD" > (http://www.freebsd.org/doc/en/articles/rc-scripting/rcng-daemon.html). > > This is the command that starts the app: > > /usr/local/urchin/bin/urchinctl > > And here are the options: > > Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > where: > -v prints out the version of urchinctl > -h prints out this information > -e activates encryption (SSL) in the webserver > -s performs the action on the Urchin scheduler ONLY > -w performs the action on the Urchin webserver ONLY > -p specifies the port for the webserver to listen on > > action is either: start, stop, restart, or status > > start: starts the webserver and scheduler > stop: stops the webserver and scheduler > restart: stops and then starts the webserver and scheduler > status: prints out whether the webserver and scheduler are running > > By default, the action is performed on both the webserver and the > schedulers unless the -s or -w options are specified > > All I want to do is create a script within the rc.d framework that runs > "/usr/local/urchin/bin/urchinctl start" when the system boots and > "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. > > Following the examples in the guide mentioned above, here is my attempt > at that file: > > #!/bin/sh > # PROVIDE: urchin > # REQUIRE: NETWORKING > # KEYWORD: shutdown > # > # Add the following line to /etc/rc.conf to enable urchin: > # urchin_enable="YES" (bool): Set to "NO" by default. > # Set it to "YES" to enable urchin. > . /etc/rc.subr > name="urchin" > rcvar=`set_rcvar` > command="/usr/local/urchin/bin/urchinctl " > eval "${rcvar}=\${${rcvar}:-'NO'}" > load_rc_config $name > run_rc_command "$1" > > I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. > However when I run the rc.d script, the urchinctl appears to run but > doesn't like whatever arguments that are passed. See this output: > > urchin# ./urchin-server start > Starting urchin. > > Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > > > I'm sure I'm missing some simple concept. I'd really appreciate a kick > in the right direction. > > 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 Thu Jun 11 03:10:03 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37E21106566B for ; Thu, 11 Jun 2009 03:10:03 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.122]) by mx1.freebsd.org (Postfix) with ESMTP id 004EA8FC19 for ; Thu, 11 Jun 2009 03:09:57 +0000 (UTC) (envelope-from pschmehl_lists@tx.rr.com) Received: from [192.168.2.102] (really [76.182.207.163]) by cdptpa-omta02.mail.rr.com with ESMTP id <20090611030956497.SPIC13528@cdptpa-omta02.mail.rr.com>; Thu, 11 Jun 2009 03:09:56 +0000 Date: Wed, 10 Jun 2009 22:09:55 -0500 From: Paul Schmehl To: Drew Tomlinson Message-ID: <84015F2050B2B2480B0E0C49@Macintosh-2.local> In-Reply-To: <4A30674D.1040804@mykitchentable.net> References: <6322EB049C37BA76C25CD076@Macintosh-2.local> <4A30674D.1040804@mykitchentable.net> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-questions@FreeBSD.org Subject: Re: Help With rc.d Script X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 03:10:03 -0000 --On June 10, 2009 7:09:17 PM -0700 Drew Tomlinson wrote: >>> >>> All I want to do is create a script within the rc.d framework that runs >>> "/usr/local/urchin/bin/urchinctl start" when the system boots and >>> "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. >>> >>> Following the examples in the guide mentioned above, here is my attempt >>> at that file: >>> >>> # !/bin/sh >>> # PROVIDE: urchin >>> # REQUIRE: NETWORKING >>> # KEYWORD: shutdown >>> # >>> # Add the following line to /etc/rc.conf to enable urchin: >>> # urchin_enable="YES" (bool): Set to "NO" by default. >>> # Set it to "YES" to enable urchin. >>> . /etc/rc.subr >>> name="urchin" >>> rcvar=`set_rcvar` >>> command="/usr/local/urchin/bin/urchinctl " >>> eval "${rcvar}=\${${rcvar}:-'NO'}" >>> load_rc_config $name >>> run_rc_command "$1" >>> >>> I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. >>> However when I run the rc.d script, the urchinctl appears to run but >>> doesn't like whatever arguments that are passed. See this output: >>> >>> urchin# ./urchin-server start >>> Starting urchin. >>> >>> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action >>> >>> >>> I'm sure I'm missing some simple concept. I'd really appreciate a kick >>> in the right direction. >>> >> >> Where is urchin located? /usr/local/bin? /usr/local/bin/urchin/bin? >> Or somewhere else? Is urchinctl a shell or perl script? > > There is no actual "urchin" as far as I know. The control file is > /usr/local/urchin/bin/urchinctl. It is a executable file: > > urchin# file /usr/local/urchin/bin/urchinctl > /usr/local/urchin/bin/urchinctl: ELF 32-bit LSB executable, Intel 80386, > version 1 (FreeBSD), statically linked, stripped > > After running "/usr/local/urchin/bin/urchinctl start", I have these > related processes: > > urchin# ps acux | grep urchin > root 70937 0.0 0.0 3184 1996 ?? Ss 7:00PM 0:00.01 > urchinwebd > nobody 70938 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > urchinwebd > nobody 70939 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > urchinwebd > nobody 70940 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > urchinwebd > nobody 70941 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > urchinwebd > nobody 70942 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > urchinwebd > nobody 70944 0.0 0.0 1460 720 ?? Ss 7:00PM 0:00.03 urchind > nobody 70946 0.0 0.0 1332 668 ?? Is 7:00PM 0:00.51 urchind > > And conversely, "/usr/local/urchin/bin/urchinctl stop" removes all of > the above processes. > In your script command is path_to_urchinctl. rc.subr will look for a process named urchinctl and a pidfile named urchinctl.pid. It appears that neither will be found, so the script can't stop or restart the processes, because it doesn't know the pid and therefore the process that it needs to kill. That doesn't explain why it won't start the processes though. I *think* you need to name the script urchin rather than urchin-server, but I can't test that. To fix the pid problem, rc.subr offers some optional statements that, with the proper arguments, can overcome the problem. You'll have to read man rc.subr and test it to figure out what works, but here's an example that might work: pidfile="/var/run/urchinwebd.pid check_pidfile="${pidfile} If that does work, your script should at least be able to report the status (running or not). I'm assuming that, because root is running the lowest numbered process, killing that process will kill all the children as well. Paul Schmehl, If it isn't already obvious, my opinions are my own and not those of my employer. ****************************************** WARNING: Check the headers before replying From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 04:14:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43117106566C for ; Thu, 11 Jun 2009 04:14:26 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from mail.prgmr.com (mail.prgmr.com [64.62.173.114]) by mx1.freebsd.org (Postfix) with ESMTP id 2FED78FC12 for ; Thu, 11 Jun 2009 04:14:26 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from frylock.local (c-71-202-68-54.hsd1.ca.comcast.net [71.202.68.54]) by mail.prgmr.com (Postfix) with ESMTP id E757668B5F for ; Wed, 10 Jun 2009 21:14:25 -0700 (PDT) Message-ID: <4A308498.7090108@prgmr.com> Date: Wed, 10 Jun 2009 21:14:16 -0700 From: Michael David Crawford Organization: Prgmr.com User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> In-Reply-To: <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 04:14:26 -0000 Could you use several large hard drives each with several partitions that each have one filesystem? With eight drives and eight partitions on each, you would multiply the maximum total number of inodes by 256. Mike -- Michael David Crawford mdc@prgmr.com prgmr.com - We Don't Assume You Are Stupid. Xen-Powered Virtual Private Servers: http://prgmr.com/xen From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 04:21:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C610106566B for ; Thu, 11 Jun 2009 04:21:13 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mx1.esiee.fr (mx1.esiee.fr [147.215.1.35]) by mx1.freebsd.org (Postfix) with ESMTP id DB8A08FC14 for ; Thu, 11 Jun 2009 04:21:12 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by mx1.esiee.fr (Postfix) with ESMTP id E502C1369DA for ; Thu, 11 Jun 2009 06:21:11 +0200 (CEST) Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id D9F703CBC3 for ; Thu, 11 Jun 2009 06:21:11 +0200 (CEST) Received: from secure.esiee.fr (secure.esiee.fr [147.215.1.19]) by mail.esiee.fr (Postfix) with ESMTP id D2AB33CBC3 for ; Thu, 11 Jun 2009 06:21:11 +0200 (CEST) Received: from [192.168.0.69] (chs77-1-82-238-8-126.fbx.proxad.net [82.238.8.126]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: bonnetf) by secure.esiee.fr (Postfix) with ESMTPSA id A7476E7D4F for ; Thu, 11 Jun 2009 06:21:11 +0200 (CEST) Message-ID: <4A30862F.8050703@esiee.fr> Date: Thu, 11 Jun 2009 06:21:03 +0200 From: Frank Bonnet User-Agent: Thunderbird 2.0.0.21 (X11/20090409) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> <4A308498.7090108@prgmr.com> In-Reply-To: <4A308498.7090108@prgmr.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 04:21:13 -0000 Michael David Crawford a =E9crit : > Could you use several large hard drives each with several partitions=20 > that each have one filesystem? >=20 > With eight drives and eight partitions on each, you would multiply the=20 > maximum total number of inodes by 256. >=20 > Mike Hello It seems ZFS would match his needs , why don't use it ? From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 04:26:33 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5973106566C for ; Thu, 11 Jun 2009 04:26:33 +0000 (UTC) (envelope-from dc@dcoder.net) Received: from ns2.dcoder.net (207-126-122-62.ip.openhosting.com [207.126.122.62]) by mx1.freebsd.org (Postfix) with ESMTP id B2A078FC1C for ; Thu, 11 Jun 2009 04:26:28 +0000 (UTC) (envelope-from dc@dcoder.net) Received: by ns2.dcoder.net (Postfix, from userid 500) id E86921CF023C; Thu, 11 Jun 2009 00:01:12 -0400 (EDT) Date: Thu, 11 Jun 2009 00:01:06 -0400 From: dacoder To: questions@freebsd.org Message-ID: <20090611040100.GC22083@mail2.dcoder.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline User-Agent: Mutt/1.4.1i Cc: Subject: need network printer printcap 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: Thu, 11 Jun 2009 04:26:34 -0000 has anybody got an example of a printcap file w/ an entry for a standalone network printer? i'd be grateful for one. thx. david coder network engineer emeritus ntt/verio From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 04:52:02 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64ED8106566C for ; Thu, 11 Jun 2009 04:52:02 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.244]) by mx1.freebsd.org (Postfix) with ESMTP id 1DC2A8FC0A for ; Thu, 11 Jun 2009 04:52:01 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: by an-out-0708.google.com with SMTP id c3so703013ana.13 for ; Wed, 10 Jun 2009 21:52:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=sZvqxmTWCe3t9ccp59CGgwZNklGflYjLo8ekvLwPDlY=; b=ISPSY9vGvD/NS1z7V9RTBYz40sxYBoqJg/kJlEwHF+KWk9cQLI5rDWNrJiDFYpyo7e CEW6rPCHbMRb5Y6Bd1ad+c2s/p+mQxzmn1wiOk5nzAd2CKjiKy6igipTlZh/AnfWO65x i8VjEgH0827JpVmNFqf/jyXCDMvIQdfPNAodw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=rTqaiz5eRGIoYsEE3iA/oIt9ImKh/8H1+mm0n1c03U7YC9vI8yuWPwnLET2+lzbfmQ cBq1buYBWoZgcjldKZ6E2bxLIBaOPc58I2bglbCVvvkQaLL41JqHxzAbFIelF3fpO4Bw 27SUMrfG97ebniaGzf0GIMDiJ0As4+Kpb9Owg= MIME-Version: 1.0 Received: by 10.231.38.129 with SMTP id b1mr1105872ibe.20.1244695921036; Wed, 10 Jun 2009 21:52:01 -0700 (PDT) In-Reply-To: <20090611040100.GC22083@mail2.dcoder.net> References: <20090611040100.GC22083@mail2.dcoder.net> Date: Wed, 10 Jun 2009 22:52:01 -0600 Message-ID: From: Tim Judd To: dacoder Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: need network printer printcap 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: Thu, 11 Jun 2009 04:52:02 -0000 Dell_2|Dell_2:rm=tim.energyctrl.local:rp=Dell_2: PDF-printer|PDF-printer:rm=tim.energyctrl.local:rp=PDF-printer: Xerox|Xerox:rm=tim.energyctrl.local:rp=Xerox: Generated by use of cups server. tim.energyctrl.local is the local workstation that runs cupsd. "PDF-printer" is a pseudo printer, attached "locally" :) --TJ On 6/10/09, dacoder wrote: > has anybody got an example of a printcap file w/ an entry for a standalone > network printer? i'd be grateful for one. > > thx. > > david coder > network engineer emeritus > ntt/verio > _______________________________________________ > 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 11 05:17:07 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 481C0106573E for ; Thu, 11 Jun 2009 05:17:06 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from mail.prgmr.com (mail.prgmr.com [64.62.173.114]) by mx1.freebsd.org (Postfix) with ESMTP id A50358FC08 for ; Thu, 11 Jun 2009 05:17:06 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from frylock.local (c-71-202-68-54.hsd1.ca.comcast.net [71.202.68.54]) by mail.prgmr.com (Postfix) with ESMTP id 5C88D68B5F for ; Wed, 10 Jun 2009 22:17:06 -0700 (PDT) Message-ID: <4A30934E.6000001@prgmr.com> Date: Wed, 10 Jun 2009 22:17:02 -0700 From: Michael David Crawford Organization: Prgmr.com User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> <4A308498.7090108@prgmr.com> <4A30862F.8050703@esiee.fr> In-Reply-To: <4A30862F.8050703@esiee.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 05:17:07 -0000 Frank Bonnet wrote: > It seems ZFS would match his needs , why don't use it ? Does ZFS really work on FreeBSD? It seems like every day someone is posting about ZFS either getting corrupted or panicking their kernel. Mike -- Michael David Crawford mdc@prgmr.com prgmr.com - We Don't Assume You Are Stupid. Xen-Powered Virtual Private Servers: http://prgmr.com/xen From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 06:01:11 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2D37106566C for ; Thu, 11 Jun 2009 06:01:11 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4454F8FC0A for ; Thu, 11 Jun 2009 06:01:11 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.3/8.14.3) with ESMTP id n5B612mD021764; Thu, 11 Jun 2009 07:01:04 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.8.2 smtp.infracaninophile.co.uk n5B612mD021764 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1244700064; bh=j2tqCVIc6ugFYoziGG2TQHQ7lDaA1YW6ECfhTk9K2Wo=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Cc:Content-Type:Date:From:In-Reply-To: Message-ID:Mime-Version:References:To; z=Message-ID:=20<4A309D95.8020109@infracaninophile.co.uk>|Date:=20T hu,=2011=20Jun=202009=2007:00:53=20+0100|From:=20Matthew=20Seaman= 20|Organization:=20Infracaninophi le|User-Agent:=20Thunderbird=202.0.0.21=20(X11/20090420)|MIME-Vers ion:=201.0|To:=20Steve=20Bertrand=20|CC:=20"free bsd-questions@freebsd.org=20Questions=20-"=20|Subject:=20Re:=20Automagic=20revision=20numbers=20with= 20Perl=20Modules=20and=20SVN|References:=20<4A304AD3.10109@ibctech .ca>|In-Reply-To:=20<4A304AD3.10109@ibctech.ca>|X-Enigmail-Version :=200.95.6|Content-Type:=20multipart/signed=3B=20micalg=3Dpgp-sha2 56=3B=0D=0A=20protocol=3D"application/pgp-signature"=3B=0D=0A=20bo undary=3D"------------enigE6353C696CDAAD1EAB6A3D0D"; b=ZKS1QJn72SvtnXjshP30mdlOlg1JaxZmhktDRxZJ6x6C9oyFX13YtgGhu9rNm0hco CVyxQPpM1bHL7Hgig7vAS8sFqyGRTXt0JYCcZTsZrI7vPhWNVow8rki+MvcCDqp92F K3XSXn3qfTYfDaMQTBKIAgOxAapKkV2wrFhfusC4= X-Authentication-Warning: happy-idiot-talk.infracaninophile.co.uk: Host localhost [IPv6:::1] claimed to be happy-idiot-talk.infracaninophile.co.uk Message-ID: <4A309D95.8020109@infracaninophile.co.uk> Date: Thu, 11 Jun 2009 07:00:53 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.21 (X11/20090420) MIME-Version: 1.0 To: Steve Bertrand References: <4A304AD3.10109@ibctech.ca> In-Reply-To: <4A304AD3.10109@ibctech.ca> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigE6353C696CDAAD1EAB6A3D0D" X-Virus-Scanned: clamav-milter 0.95.1 at happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: "freebsd-questions@freebsd.org Questions -" Subject: Re: Automagic revision numbers with Perl Modules and SVN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 06:01:12 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE6353C696CDAAD1EAB6A3D0D Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Steve Bertrand wrote: > Any guidance to fix the version numbering (especially to fix the FreeBS= D > package db) to make it automagic again, is very welcome: >=20 >=20 > %svn diff -r56 EagleUser.pm > Index: EagleUser.pm > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- EagleUser.pm (revision 56) > +++ EagleUser.pm (working copy) > @@ -13,7 +13,7 @@ > @EXPORT =3D qw( >=20 > ); > -$VERSION =3D sprintf "%d.%03d", q$Revision: 1.9 $ =3D~ /: (\d+)\.(\d+)= /; ^^^^ This takes a version number like 1.9 (ie. a string of digits contain= ing one decimal point) and converts it to 1.009 > +$VERSION =3D (q$Revision: 1.9 $ =3D~ /: (\d+)\.(\d+)/; ^^^^ whereas this just extracts the number from the revision string and uses it as is -- ie. 1.9 I believe that svn will update $Revision$ keywords in source files (or it= has some similar function which only differs in the details), but I could= be wrong, and it is entirely possible that the revision numbers will behave differently -- svn keeping a repository wide version and cvs keeping a ve= rsion per file. Consult the svn documentation on how to embed the version numb= er into the file -- once that is working, producing a perl one-liner to init= ialise $VERSION will be pretty easy. Assuming this is from a standard module using Module::Build or ExtUtils::MakeMaker you should check the Makefile.PL at the top level. In there if you're using Module::Build it should say something li= ke: version_from lib/EagleUser.pm (although the path may differ). This extracts the value of $VERSION=20 from the named .pm file and uses it as the overall module version. Assumi= ng your second line, you'll end up with a package name like bsdpan-EagelUser= -1.9 (ExtUtils::MakeMaker works similarly). If you're desperate, you can override the setting by patching the Makefile but that doesn't help at al= l in your aim of having the version number update dynamically. The convention about padding version strings with leading zeros seems to have come and gone in the perl world. I'm not at all sure what the current recognised best practice is. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigE6353C696CDAAD1EAB6A3D0D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkownZ4ACgkQ8Mjk52CukIwV+QCfYvc9OM7WOKGTSdBCfnvRAaPj mj0Anjw/pdG5UqH4EdMjNMqW8KthP1C6 =zSqP -----END PGP SIGNATURE----- --------------enigE6353C696CDAAD1EAB6A3D0D-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 06:41:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA7F4106564A for ; Thu, 11 Jun 2009 06:41:46 +0000 (UTC) (envelope-from freebsd@rgbaz.eu) Received: from jasper.secsrv.net (jasper.secsrv.net [66.98.138.37]) by mx1.freebsd.org (Postfix) with ESMTP id C301D8FC1B for ; Thu, 11 Jun 2009 06:41:46 +0000 (UTC) (envelope-from freebsd@rgbaz.eu) Received: from [82.161.18.200] (helo=[10.0.1.104]) by jasper.secsrv.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1MEdyl-0006w7-Ls; Thu, 11 Jun 2009 02:41:40 -0400 Message-Id: <6F4F6815-8E2B-4525-ABD4-032A158CF02B@rgbaz.eu> From: FBSD UG To: Roland Smith In-Reply-To: <20090610190932.GB1521@slackbox.xs4all.nl> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Thu, 11 Jun 2009 08:41:36 +0200 References: <4A2FFA41.7080805@FreeBSD.org> <4A3000D6.1020404@FreeBSD.org> <20090610190932.GB1521@slackbox.xs4all.nl> X-Mailer: Apple Mail (2.935.3) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - jasper.secsrv.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - rgbaz.eu X-Source: X-Source-Args: X-Source-Dir: Cc: Chris Maness , freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Thu, 11 Jun 2009 06:41:47 -0000 On 10 jun 2009, at 21:09, Roland Smith wrote: > On Wed, Jun 10, 2009 at 02:52:06PM -0400, Greg Larkin wrote: >> >> Chris Maness wrote: >>> On Wed, Jun 10, 2009 at 11:24 AM, Greg Larkin >>> wrote: >>>> -----BEGIN PGP SIGNED MESSAGE----- >>>> Hash: SHA1 >>>> >>>> Chris Maness wrote: >>>>> Is there an AFP client for FreeBSD? I have a mac with a >>>>> gargantuan >>>>> hard drive, and I would like to back up my FreeBSD server to it, >>>>> and >>>>> back up my mac to my FreeBSD server. I have seen where FreeBSD >>>>> can be >>>>> an AFP server, but there is little information on the client. Any >>>>> suggestions? > > If you want to transfer dumps, netcat (nc) is the fastest way to go. I > guess it doesn't come with OS X, since it is available from macports > or > darwinports. > > I was able to saturate the 10 Mbit connection between a laptop and a > desktop when transferring a dump file. :-) > > Of course you can also pipe the dump output directly to netcat, but in > that case the speed of the dump is the bottleneck. netcat (nc) comes with Leopard (10.5). so no need to get it from macports anymore gr Arno From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 07:03:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD81D106564A for ; Thu, 11 Jun 2009 07:03:37 +0000 (UTC) (envelope-from freebsd@rgbaz.eu) Received: from jasper.secsrv.net (jasper.secsrv.net [66.98.138.37]) by mx1.freebsd.org (Postfix) with ESMTP id A5F478FC12 for ; Thu, 11 Jun 2009 07:03:37 +0000 (UTC) (envelope-from freebsd@rgbaz.eu) Received: from [82.161.18.200] (helo=[10.0.1.104]) by jasper.secsrv.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1MEeJw-0002KO-HP; Thu, 11 Jun 2009 03:03:32 -0400 Message-Id: From: FBSD UG To: patrick In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Thu, 11 Jun 2009 09:03:28 +0200 References: X-Mailer: Apple Mail (2.935.3) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - jasper.secsrv.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - rgbaz.eu X-Source: X-Source-Args: X-Source-Dir: Cc: Chris Maness , freebsd-questions@freebsd.org Subject: Re: AFP Client 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: Thu, 11 Jun 2009 07:03:38 -0000 On 11 jun 2009, at 03:19, patrick wrote: > Oh, I don't know about 10.4. Looks easy enough in 10.5: > http://www.macresearch.org/nfs-exports-leopard > > It didn't change in the way it's described on that site from 10.4 to 10.5 the other, more OSX way of doing it using NetInfo changed though. NetInfo was replaced with OpenDirectory from 10.4 to 10.5 gr Arno From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 07:22:01 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62FA31065670 for ; Thu, 11 Jun 2009 07:22:01 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (macos.cmi.ua.ac.be [143.129.75.1]) by mx1.freebsd.org (Postfix) with ESMTP id F0D638FC1A for ; Thu, 11 Jun 2009 07:22:00 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (localhost [127.0.0.1]) by macos.cmi.ua.ac.be (8.14.3/8.14.3) with ESMTP id n5B7LwFE051092 for ; Thu, 11 Jun 2009 09:21:58 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) Received: from localhost (pdon@localhost) by macos.cmi.ua.ac.be (8.14.3/8.14.3/Submit) with ESMTP id n5B7LwVY051089 for ; Thu, 11 Jun 2009 09:21:58 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) X-Authentication-Warning: macos.cmi.ua.ac.be: pdon owned process doing -bs Date: Thu, 11 Jun 2009 09:21:58 +0200 (CEST) From: Pieter Donche X-X-Sender: pdon@macos.cmi.ua.ac.be To: "mail.list freebsd-questions" Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: py25-tkinter-2.5.4_3 / 2.6.2_3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 07:22:01 -0000 portupgrade advertizes since 3 days: ... py25-tkinter-2.5.4_3 < needs updating (index has 2.6.2_3) using portupgrade -a upgrades all other ports that need upgrading, but never py25-tkinter what's wrong here? I notice http://www.freebsd.org/ports also still advertizes the 2.5.4_3 and not the 2.6.2_3 version (?) From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 07:40:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 412B61065677 for ; Thu, 11 Jun 2009 07:40:06 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mx1.esiee.fr (mx1.esiee.fr [147.215.1.35]) by mx1.freebsd.org (Postfix) with ESMTP id F1D548FC2A for ; Thu, 11 Jun 2009 07:40:05 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by mx1.esiee.fr (Postfix) with ESMTP id 3601C1368E7; Thu, 11 Jun 2009 09:40:05 +0200 (CEST) Received: from mail.esiee.fr (localhost [127.0.0.1]) by VAMS.dummy (Postfix) with SMTP id 2B55E3C2D6; Thu, 11 Jun 2009 09:40:05 +0200 (CEST) Received: from secure.esiee.fr (secure.esiee.fr [147.215.1.19]) by mail.esiee.fr (Postfix) with ESMTP id E54803C2D6; Thu, 11 Jun 2009 09:40:04 +0200 (CEST) Received: from lisa.esiee.fr (lisa.esiee.fr [147.215.1.21]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: bonnetf) by secure.esiee.fr (Postfix) with ESMTPSA id CBF38E7D57; Thu, 11 Jun 2009 09:40:04 +0200 (CEST) Message-ID: <4A30B4A9.7070904@esiee.fr> Date: Thu, 11 Jun 2009 09:39:21 +0200 From: Frank Bonnet User-Agent: Thunderbird 2.0.0.21 (X11/20090525) MIME-Version: 1.0 To: Michael David Crawford References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> <4A308498.7090108@prgmr.com> <4A30862F.8050703@esiee.fr> <4A30934E.6000001@prgmr.com> In-Reply-To: <4A30934E.6000001@prgmr.com> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 07:40:06 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Michael David Crawford wrote: > Frank Bonnet wrote: >> It seems ZFS would match his needs , why don't use it ? > > Does ZFS really work on FreeBSD? It seems like every day someone is > posting about ZFS either getting corrupted or panicking their kernel. > > Mike The only way to be sure is to test it , I've read at 7.2 it has reached stability. If you have enough money another solution is to buy a NetAPP filer ! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkowtKkACgkQ6f7UMO5oSsU6nwCggXRXTOvPYwfgkolmcrHWgIBW SLwAn2dvGbGXjZNFMV9LGxytj6qMJ1RT =bam3 -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 07:44:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A973106566B for ; Thu, 11 Jun 2009 07:44:32 +0000 (UTC) (envelope-from davidcollins001@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 322588FC13 for ; Thu, 11 Jun 2009 07:44:31 +0000 (UTC) (envelope-from davidcollins001@gmail.com) Received: by ewy8 with SMTP id 8so1444387ewy.43 for ; Thu, 11 Jun 2009 00:44:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:date:message-id :subject:from:to:content-type:content-transfer-encoding; bh=QF1UsAvkvFK/epDhKWo4MsPYKSsIrS5XzEhI9EvUB3w=; b=XawU8RVcvbQ4WChWEByfn1whlXMZSabB4qGZP5kNx42mK/PzKj3dKU66jzF8EvNNYB 3o6cOvD8bhO3V+psnbkVmNzDNJP3dkvm2Eik0pIpEsvQOfpxljryyeB4CsTRfJlhZCES ag7xalNWa0PmbI8W4HQBiq5gcTSgUZ4LtWG88= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=XgIoEyjYyW+A+9YApp6t5KYtVZ7FIQV9aNf8t5Cv076sykr3SMzkDzivPt4tFEB2y8 zlouNRL9eT2vIxdesamSDWc6Oy71lvGYeBf5e5nuYx3cRTiRl8y03iD1N0L5Iwwe3MSR 1YBt8XIIz2c25us6xzjm3QGT0jlDux70Zy0Bc= MIME-Version: 1.0 Received: by 10.216.12.67 with SMTP id 45mr814860wey.218.1244706271281; Thu, 11 Jun 2009 00:44:31 -0700 (PDT) Date: Thu, 11 Jun 2009 08:44:31 +0100 Message-ID: <1b30fd140906110044r1cba9d37j7cc54d1f1fe77c3a@mail.gmail.com> From: David Collins To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: (no subject) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: davidcollins001@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 07:44:32 -0000 I nfs mount my freeBSD server on my mac, 10.4. For some reason the mount command doesn't seem to figure out to use mount_nfs, at least not for me so I run it directly. mount_nfs -Ps nfs.server.ip:/path/to/share mnt The -P has to be used with linux nfs servers to use privileged ports, but not sure if it does with FreeBSD, I also us -s so that if the server goes down I can kill the connection > > I tried mounting a mac box to my FreeBSD server a while back, but I > think I was not able to get it to go RW. > > How do you set up NFS as a service in OSX 10.4? That would be the > best way as my backup scripts are already set up to do an NFS mount. > > Thanks, > Chris > From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 07:54:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0AC7106564A for ; Thu, 11 Jun 2009 07:54:30 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D3D728FC12 for ; Thu, 11 Jun 2009 07:54:29 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5B7sJfO022174; Thu, 11 Jun 2009 09:54:19 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5B7sJOq022171; Thu, 11 Jun 2009 09:54:19 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 09:54:19 +0200 (CEST) From: Wojciech Puchar To: Frank Bonnet In-Reply-To: <4A30B4A9.7070904@esiee.fr> Message-ID: References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> <4A308498.7090108@prgmr.com> <4A30862F.8050703@esiee.fr> <4A30934E.6000001@prgmr.com> <4A30B4A9.7070904@esiee.fr> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Michael David Crawford Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 07:54:31 -0000 >> >> Mike > > The only way to be sure is to test it , I've read at 7.2 it has reached > stability. As long as there is no recovery tool for ZFS it cannot be treated safe. In SUNs theory it just can't fail - which is nonsense unless machines are perfect and you'll never experience hardware problems. Not disk - but main computer (CPU, memory). It's similar to linux reiserfs i used long time ago. Well it had reiserfsck, but it should be called reiserdestroyfs :) From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 08:00:03 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63D76106566C for ; Thu, 11 Jun 2009 08:00:03 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 1EF388FC15 for ; Thu, 11 Jun 2009 08:00:02 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1MEfCc-0000MA-Bn for freebsd-questions@freebsd.org; Thu, 11 Jun 2009 08:00:02 +0000 Received: from dslb-088-066-189-100.pools.arcor-ip.net ([88.66.189.100]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Jun 2009 08:00:02 +0000 Received: from gmane by dslb-088-066-189-100.pools.arcor-ip.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 11 Jun 2009 08:00:02 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Danijel Tasov Date: Thu, 11 Jun 2009 07:56:22 +0000 (UTC) Lines: 15 Message-ID: References: <4A2D0A5C.8010809@webrz.net> <20090608143609.GA5108@it.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: dslb-088-066-189-100.pools.arcor-ip.net User-Agent: slrn/pre1.0.0-2 (Linux) Sender: news Subject: Re: Cronjob X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 08:00:03 -0000 Paul Chvostek wrote: > 0 1 28-31 * * test `date -v+1d '+%d'` -eq 1 && /path/to/script You have to escape the percent sign in crontab with "\": run. The entire command portion of the line, up to a newline or % character, will be executed by /bin/sh or by the shell specified in the SHELL variable of the cronfile. Percent-signs (%) in the command, unless escaped with backslash (\), will be changed into newline characters, and all data after the first % will be sent to the command as standard input. bye, Da.Ta From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 08:14:36 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4688C1065672 for ; Thu, 11 Jun 2009 08:14:36 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) Received: from a.mail.ru.ac.za (a.mail.ru.ac.za [IPv6:2001:4200:1010::25:1]) by mx1.freebsd.org (Postfix) with ESMTP id 6E7828FC0A for ; Thu, 11 Jun 2009 08:14:35 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ru-msa; d=ru.ac.za; h=Received:From:Organization:To:Subject:Date:User-Agent:References:In-Reply-To:X-Face:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id:X-Virus-Scanned:X-Authenticated-User; b=IvobPfJnYE20CAGWxLAPzjgVDaaGct9+MPIxDx2RRoBe7v9Hp/4ZYSMNhWojAsuFjc/jboYXI1/M0s88HJR8B+I+bhtGWx9F51OqS9bjfIoj3QLy4nBMPj7tB1THpinr; Received: from vorkosigan.ru.ac.za ([2001:4200:1010:1058:219:d1ff:fe9f:a932]:57839) by a.mail.ru.ac.za with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MEfQf-000LRG-TW for freebsd-questions@freebsd.org; Thu, 11 Jun 2009 10:14:33 +0200 From: Jonathan McKeown Organization: Rhodes University To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 10:14:33 +0200 User-Agent: KMail/1.9.10 References: <20090610190606.6B89ABEDB@kev.msw.wpafb.af.mil> In-Reply-To: <20090610190606.6B89ABEDB@kev.msw.wpafb.af.mil> X-Face: $@VrUx^RHy/}yu]jKf/<4T%/d|F+$j-Ol2"2J$q+%OK1]&/G_S9(=?utf-8?q?HkaQ*=60!=3FYOK=3FY!=27M=60C=0A=09aP=5C9nVPF8Q=7DCilHH8l=3B=7E!4?= =?utf-8?q?2HK6=273lg4J=7Daz?=@1Dqqh:J]M^"YPn*2IWrZON$1+G?oX3@ =?utf-8?q?k=230=0A=0954XDRg=3DYn=5FF-etwot4U=24b?=dTS{i X-Virus-Scanned: a.mail.ru.ac.za (2001:4200:1010::25:1) X-Authenticated-User: s0900137 from vorkosigan.ru.ac.za (2001:4200:1010:1058:219:d1ff:fe9f:a932) using auth_plaintext Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 08:14:36 -0000 On Wednesday 10 June 2009 21:06:06 Karl Vogel wrote: > Create 256 folders named 00-ff: > > =A0 =A0 =A0 =A0#!/bin/sh > =A0 =A0 =A0 =A0hex=3D'0 1 2 3 4 5 6 7 8 9 a b c d e f' > =A0 =A0 =A0 =A0for x in $hex ; do > =A0 =A0 =A0 =A0 =A0 =A0for y in $hex ; do > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0mkdir ${x}${y} > =A0 =A0 =A0 =A0 =A0 =A0done > =A0 =A0 =A0 =A0done > =A0 =A0 =A0 =A0exit 0 Or use jot(1) instead of two for loops: for i in `jot -w %02x 256 0`; do mkdir $i; done To see the output of the jot in a readable format: jot -w %02x 256 0 | rs 0 16 Jonathan From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 08:53:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CC5E1065672 for ; Thu, 11 Jun 2009 08:53:12 +0000 (UTC) (envelope-from gpbuono@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id 18EF88FC0A for ; Thu, 11 Jun 2009 08:53:06 +0000 (UTC) (envelope-from gpbuono@gmail.com) Received: by gxk3 with SMTP id 3so1977275gxk.19 for ; Thu, 11 Jun 2009 01:53:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=GBqcqQslWZ0wNpBsoe2JbM7RCAhr1iQLkG2wLzz7qOc=; b=uwbNI56kojc6pj0iTzUZqU2+4Lu4taa3vxVAbESr/OBcwTm3Bl6k+vP6Okt/Jqwoss ACarkr3+Ha94cmUmtg+y/TE8+enCg1q4G4Wo/24d9BIYa1Y6hSaeDVynnWw7jjbVTEI7 RNdHDUyGJyD9h8ZjkVp2N/M9GhUdGI4cnk/eg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Cr7+Hmlx1WCRqPjRhVEN2+oviCI8NRaWTkv8/fYQKvHp8BM2E3z0lkz6YHExMhRjPl NKpHOq5KquwM/I6TEkxx10WHdVaD79gV3c8BQjaUwA+xPa8fSCIti8sjuqXSV0OMZYMF 7lhXYjAaySmn2RefVkvtaAOAmXfYvtLMvXGMA= MIME-Version: 1.0 Received: by 10.151.139.3 with SMTP id r3mr4639168ybn.137.1244708986472; Thu, 11 Jun 2009 01:29:46 -0700 (PDT) Date: Thu, 11 Jun 2009 10:29:46 +0200 Message-ID: From: Gian Paolo Buono To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Legato Client for freeBSD 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 08:53:12 -0000 Hi, I have a server running freeBSD7 that needs the legato backup client installed. I have not found anything in ports. Any idea ? thanks bye From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 09:01:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05CDB1065674 for ; Thu, 11 Jun 2009 09:01:05 +0000 (UTC) (envelope-from anton@sng.by) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 8C69D8FC0C for ; Thu, 11 Jun 2009 09:01:04 +0000 (UTC) (envelope-from anton@sng.by) Received: by bwz17 with SMTP id 17so62479bwz.43 for ; Thu, 11 Jun 2009 02:01:03 -0700 (PDT) Received: by 10.204.55.13 with SMTP id s13mr2224353bkg.180.1244708904922; Thu, 11 Jun 2009 01:28:24 -0700 (PDT) Received: from ROOT (port-103-adslby-pool46.infonet.by [81.25.46.103]) by mx.google.com with ESMTPS id g28sm8596285fkg.45.2009.06.11.01.28.23 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 11 Jun 2009 01:28:24 -0700 (PDT) Date: Thu, 11 Jun 2009 11:28:28 +0300 From: Anton X-Mailer: The Bat! (v3.71.01) Professional X-Priority: 3 (Normal) Message-ID: <505626234.20090611112828@sng.by> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anton List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 09:01:05 -0000 Hello all, I'm new to FreeBSD and I'm seeking help. For entire time I have been making everything with Windows, but now I'm stumbled upon problem, where only router on FreeBSD + IPFW could help me. I have installed FreeBSD, compiled kernel, found how to launch VPN connection to ISP. But, further, I don't know how to go :-( I could not figure out how to start natd and make routing with next rules: 1) Connection to Internet are made via VPN to ISP, but ISP have some internal resources free of charge, which are accessible without VPN. How to explain natd and ipfw that all users may go to these free resources without pipe and unlimited to all users 2) How to give all users right to go to the Internet by UDP 27015-27050 and TCP 27015-27050 (Steam) with pipe. -- -- Best regards, Anton mailto:anton@sng.by Administrator Feel free to contact me via ICQ 363780596 via Skype dobryak47 via phone +375 29 3320987 From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 09:01:07 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02F90106564A for ; Thu, 11 Jun 2009 09:01:07 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (unknown [IPv6:2607:f678:1010::34]) by mx1.freebsd.org (Postfix) with ESMTP id D1E6F8FC16 for ; Thu, 11 Jun 2009 09:01:06 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (66@localhost [127.0.0.1]) by agora.rdrop.com (8.13.1/8.12.7) with ESMTP id n5B914qL070803 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 11 Jun 2009 02:01:04 -0700 (PDT) (envelope-from perryh@pluto.rain.com) Received: (from uucp@localhost) by agora.rdrop.com (8.13.1/8.12.9/Submit) with UUCP id n5B914C8070802; Thu, 11 Jun 2009 02:01:04 -0700 (PDT) Received: from fbsd61 by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA28854; Thu, 11 Jun 09 01:50:23 PDT Date: Thu, 11 Jun 2009 01:49:09 -0700 From: perryh@pluto.rain.com To: dc@dcoder.net Message-Id: <4a30c505.FiMIBux9WA4OPHOh%perryh@pluto.rain.com> References: <20090611040100.GC22083@mail2.dcoder.net> In-Reply-To: <20090611040100.GC22083@mail2.dcoder.net> User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: need network printer printcap 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: Thu, 11 Jun 2009 09:01:07 -0000 dacoder wrote: > has anybody got an example of a printcap file w/ an entry > for a standalone network printer? This is for a printer that understands lpd protocol natively, and it presumes that you will send it only languages that it understands natively. (This one happens to be smart enough to handle -- at least -- both plain text and PostScript; if you want to "lpr textfile" to a PostScript-only printer you'll need some filters.) lp|Samsung ML-2571N PostScript network printer:\ :sh:\ :rm=ml2571n:sd=/var/spool/output/ml2571n:lf=/var/log/lpd-errs: You also need to map the name to an IP address in /etc/hosts, something like this 192.168.200.201 ml2571n or in DNS. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 09:18:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9459A106564A for ; Thu, 11 Jun 2009 09:18:12 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 8952B8FC13 for ; Thu, 11 Jun 2009 09:18:11 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5B9I5ST022558; Thu, 11 Jun 2009 11:18:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5B9I55s022555; Thu, 11 Jun 2009 11:18:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 11:18:05 +0200 (CEST) From: Wojciech Puchar To: Anton In-Reply-To: <505626234.20090611112828@sng.by> Message-ID: References: <505626234.20090611112828@sng.by> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 09:18:12 -0000 > For entire time I have been making everything with Windows, but now > I'm stumbled upon problem, where only router on FreeBSD + IPFW could > help me. > I have installed FreeBSD, compiled kernel, found how to launch VPN > connection to ISP. But, further, I don't know how to go :-( > > I could not figure out how to start natd and make routing with next > rules: > 1) Connection to Internet are made via VPN to ISP, but ISP have > some internal resources free of charge, which are accessible > without VPN. How to explain natd and ipfw that all users may go to > these free resources without pipe and unlimited to all users > 2) How to give all users right to go to the Internet by UDP > 27015-27050 and TCP 27015-27050 (Steam) with pipe. natd is now part of ipfw (but older userland natd is still available) man ipfw Yes it's complex but DO SPEND FEW HOURS and read in from beginning to end! I did the same some time ago and it's really worth of it. Both point 1 and 2 is just simple thing for that great tool, just make rule for "free resources" with skipto command, or reverse rule matching queue command. After reading, feel free to post me priv for some help, but i don't think you'll need it. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 09:31:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFAB3106567A for ; Thu, 11 Jun 2009 09:31:58 +0000 (UTC) (envelope-from tam.sergio@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 515C58FC16 for ; Thu, 11 Jun 2009 09:31:52 +0000 (UTC) (envelope-from tam.sergio@gmail.com) Received: by ewy8 with SMTP id 8so1508379ewy.43 for ; Thu, 11 Jun 2009 02:31:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=zdGQ2ox9/yatczlI8wEcB/kBR2i/sQiRM0fHhyUbE+4=; b=gkyI+1FZQH+VhFtfPie2FkWsgtGZyPR/5PGEI8RKoLRpoWvfm9WCCHXzTo3JpK/M9I cTD9Z2hS0VaeuGa9MsrGtMQ+UTQ4T/DTpUVZeZ34HkZykgFcSfr+IFzyaWuY8g8TqU/Z N6yqt9MtqqYgZ1II7CspnrHB+jkluxCE7UQ+I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=eiQCzFlwG7G/LkSbaQ6eY7PB4K3wAPgRWTRn2XJePVoaEHihJdiUGh3Krie3dvD6U4 kWjEREUV8qnm84mnCqEXELZy6URkfKArAWoGVHefx+JnDr/l92yABHfi6BWMZwaMyPtF CWqTKiIG/IlQiE5I6VMEGAqrZHz3ZYNLOeG5s= MIME-Version: 1.0 Received: by 10.216.70.135 with SMTP id p7mr828924wed.138.1244711030365; Thu, 11 Jun 2009 02:03:50 -0700 (PDT) In-Reply-To: References: Date: Thu, 11 Jun 2009 04:03:50 -0500 Message-ID: From: Sergio Tam To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: Legato Client for freeBSD 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 09:31:59 -0000 2009/6/11 Gian Paolo Buono : > I have a server running freeBSD7 =A0that needs the legato backup client > installed. I have not found anything in ports. Any idea ? > HI http://lists.freebsd.org/pipermail/freebsd-questions/2006-December/137803.h= tml Regards From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 10:01:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D55B1065672 for ; Thu, 11 Jun 2009 10:01:47 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id C0A228FC1A for ; Thu, 11 Jun 2009 10:01:46 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n5BA1dwQ037389; Thu, 11 Jun 2009 12:01:39 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n5BA1cwt037388; Thu, 11 Jun 2009 12:01:38 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Thu, 11 Jun 2009 12:01:38 +0200 From: Ruben de Groot To: Jason Helfman Message-ID: <20090611100138.GA36925@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Jason Helfman , freebsd-questions@freebsd.org References: <20090610001900.GC57804@eggman.experts-exchange.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090610001900.GC57804@eggman.experts-exchange.com> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Thu, 11 Jun 2009 12:01:42 +0200 (CEST) Cc: freebsd-questions@freebsd.org Subject: Re: kernel compiling 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: Thu, 11 Jun 2009 10:01:47 -0000 On Tue, Jun 09, 2009 at 05:19:01PM -0700, Jason Helfman typed: > Hi. > > I am trying to figure out how when making the kernel that the number is > incremented. > > For example my system reads: > FreeBSD 7.2-RELEASE #4 > > I have my own kernel that works, however I would like to have it read this: > FreeBSD 7.2-RELEASE #0 > > Is there a way to resolve this? If you build your kernel (#4) using "make buildkernel": cd /usr/obj/usr/src/sys/${KERNCONF} vi vers.c // edit SCCSSTR and VERSTR make cp kernel /boot/kernel cheers, Ruben From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 11:23:09 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C57FE106564A for ; Thu, 11 Jun 2009 11:23:09 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s8.blu0.hotmail.com (blu0-omc4-s8.blu0.hotmail.com [65.55.111.147]) by mx1.freebsd.org (Postfix) with ESMTP id 7DF088FC14 for ; Thu, 11 Jun 2009 11:23:09 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP40 ([65.55.111.137]) by blu0-omc4-s8.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 11 Jun 2009 04:23:09 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP40.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 11 Jun 2009 04:23:08 -0700 Date: Thu, 11 Jun 2009 07:22:59 -0400 From: Carmel To: freebsd-questions@freebsd.org In-Reply-To: <20090610222823.GA7364@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 11 Jun 2009 11:23:08.0762 (UTC) FILETIME=[FF5DBBA0:01C9EA86] Subject: Re: Compiling in sound driver in kernel 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, 11 Jun 2009 11:23:10 -0000 On Thu, 11 Jun 2009 00:28:23 +0200 Roland Smith wrote: >You're missing something: > >device sound >> device snd_hda # Sound driver > >Have you looked at the manual page? 'man snd_hda' would have told you >this. > >Roland Actually, no I did not. I did read the FreeBSD Handbook, specifically the portions dealing with sound and recompiling the kernel. Nowhere did I see a reference to read the man page for the sound driver, nor an example of how to install it in the kernel. I did, eventually, find an example of how to install via the kernel by Googling for it. I believe that the Handbook should be somewhat more specific though in this area. In any case, thanks for all those who took the time to reply. -- Carmel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 11:34:33 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B1C0910656A3 for ; Thu, 11 Jun 2009 11:34:33 +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 539A78FC2D for ; Thu, 11 Jun 2009 11:34:33 +0000 (UTC) (envelope-from chris@monochrome.org) Received: from [192.168.1.11] ([192.168.1.11]) by mail.monochrome.org (8.14.3/8.14.3) with ESMTP id n5BBYVMn048511; Thu, 11 Jun 2009 07:34:31 -0400 (EDT) (envelope-from chris@monochrome.org) Date: Thu, 11 Jun 2009 07:34:17 -0400 (EDT) From: Chris Hill To: dacoder In-Reply-To: <20090611040100.GC22083@mail2.dcoder.net> Message-ID: References: <20090611040100.GC22083@mail2.dcoder.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: questions@freebsd.org Subject: Re: need network printer printcap 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: Thu, 11 Jun 2009 11:34:34 -0000 On Thu, 11 Jun 2009, dacoder wrote: > has anybody got an example of a printcap file w/ an entry for a > standalone network printer? i'd be grateful for one. Here's mine - been working for years: lp|snow|snowball|lj|ps|HP ColorLaserJet 4550N:\ :sh:\ :sd=/var/spool/output/lpd:\ :mx#0:\ :lp=:rm=snowball:rp="auto": The printer's hostname is snowball, resolved via /etc/hosts at first and now via internal DNS. This printer understands Postscript and plain text, and has always Just Worked with no CUPS, filters or any of that stuff needed. -- Chris Hill chris@monochrome.org ** [ Busy Expunging <|> ] From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 11:55:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 018AF106564A for ; Thu, 11 Jun 2009 11:55:02 +0000 (UTC) (envelope-from i.tanusheff@procreditbank.bg) Received: from mail.procreditbank.bg (mail.procreditbank.bg [193.26.216.3]) by mx1.freebsd.org (Postfix) with SMTP id 3DFBE8FC25 for ; Thu, 11 Jun 2009 11:55:00 +0000 (UTC) (envelope-from i.tanusheff@procreditbank.bg) Received: (qmail 13456 invoked from network); 11 Jun 2009 14:54:59 +0300 Received: from unknown (HELO domino.procreditbank.bg) (10.0.0.15) by 192.168.1.3 with SMTP; 11 Jun 2009 14:54:59 +0300 In-Reply-To: <505626234.20090611112828@sng.by> To: Anton MIME-Version: 1.0 X-Mailer: Lotus Notes Release 7.0.3 September 26, 2007 From: Ivailo Tanusheff Message-ID: Date: Thu, 11 Jun 2009 14:55:00 +0300 X-MIMETrack: Serialize by Router on DOMINO/BULGARIA/PROCREDITBANK(Release 7.0.2FP2|May 14, 2007) at 11.06.2009 14:55:00, Serialize complete at 11.06.2009 14:55:00 Content-Type: text/plain; charset="US-ASCII" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org, owner-freebsd-questions@freebsd.org Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 11:55:02 -0000 Hi, I am not sure that FreeBSD + IPFW is the best option for you as you have not read how to use it yet. So I may suggest you use man ipfw and google a little bit - the answers are simple. Also I may suggest you to use ipf, which is in my point of view far more powerful. Regards, Ivailo Tanusheff Deputy Head of IT Department ProCredit Bank (Bulgaria) AD Anton Sent by: owner-freebsd-questions@freebsd.org 11.06.2009 12:01 Please respond to Anton To freebsd-questions@freebsd.org cc Subject FreeBSD as a router Hello all, I'm new to FreeBSD and I'm seeking help. For entire time I have been making everything with Windows, but now I'm stumbled upon problem, where only router on FreeBSD + IPFW could help me. I have installed FreeBSD, compiled kernel, found how to launch VPN connection to ISP. But, further, I don't know how to go :-( I could not figure out how to start natd and make routing with next rules: 1) Connection to Internet are made via VPN to ISP, but ISP have some internal resources free of charge, which are accessible without VPN. How to explain natd and ipfw that all users may go to these free resources without pipe and unlimited to all users 2) How to give all users right to go to the Internet by UDP 27015-27050 and TCP 27015-27050 (Steam) with pipe. -- -- Best regards, Anton mailto:anton@sng.by Administrator Feel free to contact me via ICQ 363780596 via Skype dobryak47 via phone +375 29 3320987 _______________________________________________ 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 11 12:16:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEED8106567E; Thu, 11 Jun 2009 12:16:40 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id BA8978FC23; Thu, 11 Jun 2009 12:16:39 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5BCGWnp023072; Thu, 11 Jun 2009 14:16:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5BCGV6i023069; Thu, 11 Jun 2009 14:16:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 14:16:31 +0200 (CEST) From: Wojciech Puchar To: Ivailo Tanusheff In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: owner-freebsd-questions@freebsd.org, freebsd-questions@freebsd.org, Anton Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 12:16:41 -0000 > So I may suggest you use man ipfw and google a little bit - the answers > are simple. > Also I may suggest you to use ipf, which is in my point of view far more > powerful. you are joking or just don't know ipfw. i used both, ipf when i used NetBSD and then in FreeBSD a bit, until i learned how to use ipfw. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 12:18:26 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F231D106567D for ; Thu, 11 Jun 2009 12:18:26 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 3A8C18FC2E for ; Thu, 11 Jun 2009 12:18:25 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5BCIEht023098; Thu, 11 Jun 2009 14:18:14 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5BCIDTV023095; Thu, 11 Jun 2009 14:18:13 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 14:18:13 +0200 (CEST) From: Wojciech Puchar To: Chris Hill In-Reply-To: Message-ID: References: <20090611040100.GC22083@mail2.dcoder.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: questions@freebsd.org, dacoder Subject: Re: need network printer printcap 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: Thu, 11 Jun 2009 12:18:27 -0000 > Here's mine - been working for years: > > lp|snow|snowball|lj|ps|HP ColorLaserJet 4550N:\ > :sh:\ > :sd=/var/spool/output/lpd:\ > :mx#0:\ > :lp=:rm=snowball:rp="auto": > > The printer's hostname is snowball, resolved via /etc/hosts at first and > now via internal DNS. > This printer understands Postscript and plain text, and has always Just > Worked with no CUPS, filters or any of that stuff needed. drukarka1:okipage-14ex-1:sh:rm=192.168.1.17:sd=/var/spool/lpd/drukarka1:lf=/var/log/drukarka1: From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 12:21:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA3BD106566B for ; Thu, 11 Jun 2009 12:21:27 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id F05868FC0C for ; Thu, 11 Jun 2009 12:21:25 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 86285 invoked by uid 89); 11 Jun 2009 12:23:06 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 11 Jun 2009 12:23:06 -0000 Message-ID: <4A30F6D1.6080002@ibctech.ca> Date: Thu, 11 Jun 2009 08:21:37 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Matthew Seaman References: <4A304AD3.10109@ibctech.ca> <4A309D95.8020109@infracaninophile.co.uk> In-Reply-To: <4A309D95.8020109@infracaninophile.co.uk> X-Enigmail-Version: 0.95.7 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms060905060401080102010102" Cc: "freebsd-questions@freebsd.org Questions -" Subject: Re: Automagic revision numbers with Perl Modules and SVN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 12:21:28 -0000 This is a cryptographically signed message in MIME format. --------------ms060905060401080102010102 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Matthew Seaman wrote: > Steve Bertrand wrote: > >> Any guidance to fix the version numbering (especially to fix the FreeBSD >> package db) to make it automagic again, is very welcome: >> >> >> %svn diff -r56 EagleUser.pm >> Index: EagleUser.pm >> =================================================================== >> --- EagleUser.pm (revision 56) >> +++ EagleUser.pm (working copy) >> @@ -13,7 +13,7 @@ >> @EXPORT = qw( >> >> ); >> -$VERSION = sprintf "%d.%03d", q$Revision: 1.9 $ =~ /: (\d+)\.(\d+)/; > > ^^^^ This takes a version number like 1.9 (ie. a string of digits > containing > one decimal point) and converts it to 1.009 > >> +$VERSION = (q$Revision: 1.9 $ =~ /: (\d+)\.(\d+)/; > > ^^^^ whereas this just extracts the number from the revision string and > uses it as is -- ie. 1.9 > > I believe that svn will update $Revision$ keywords in source files (or it > has some similar function which only differs in the details), but I > could be > wrong, and it is entirely possible that the revision numbers will behave > differently -- svn keeping a repository wide version and cvs keeping a > version > per file. Consult the svn documentation on how to embed the version number > into the file -- once that is working, producing a perl one-liner to > initialise > $VERSION will be pretty easy. > > Assuming this is from a standard module using Module::Build or > ExtUtils::MakeMaker you should check the Makefile.PL at the top > level. In there if you're using Module::Build it should say something > like: > > version_from lib/EagleUser.pm > > (although the path may differ). This extracts the value of $VERSION > from the named .pm file and uses it as the overall module version. Assuming > your second line, you'll end up with a package name like > bsdpan-EagelUser-1.9 > (ExtUtils::MakeMaker works similarly). If you're desperate, you can > override the setting by patching the Makefile but that doesn't help at all > in your aim of having the version number update dynamically. > > The convention about padding version strings with leading zeros seems > to have come and gone in the perl world. I'm not at all sure what the > current recognised best practice is. Thanks Matthew for such a detailed and informative response. I'll look into this today, and report back to the list for archive purposes if I get this to work. Cheers! Steve --------------ms060905060401080102010102 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 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCC AtowggJDoAMCAQICEEs5xg/J3t77QWJ4SatV1HcwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDUwNzIzMTYxMFoX DTEwMDUwNzIzMTYxMFowQjEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEfMB0G CSqGSIb3DQEJARYQc3RldmVAaWJjdGVjaC5jYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBAJSTRAjP1RVa87/mnZn+PBTbENgyhhBJ4rWApmaNcthzRdk2DB/49KrXx3EQP60w Lj4KU0DFkiGNVj9BnVxRAx/WDXKxGC3uGGEG6gjyWv8KFMWMsH9mL7y7uNow1HueT6pZUf9o yY8Ewd+01QpGi7FfXOae7lGHhbEwnEJGwz08ytRfLmH0KtEzlZanZZhwDGX5s1kIHnyxdACh 3byXY6Z2bOrx0rcrQHCnHJppxddR60F7igjaMuBFstE51h9XTgXDNKJbglqTug5ghGihNuP6 VsBN7ue62y96UGIE22TvKEcAQ665vQGjHqZeSzZYy+hWNOa27pWFmhlqFjx0x8MCAwEAAaMt MCswGwYDVR0RBBQwEoEQc3RldmVAaWJjdGVjaC5jYTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3 DQEBBQUAA4GBAMOmjxjp2Xzk6ZHLwTgFDzVhm98RjRT3UXotKjNIR7SgwfWF5wkJrx4I+dXu ui5ztMEq4bTTRgJ344MqE6uZiZlg+tBIFHZGCJfKdzsX4QuV2jmw0sR5dMaYxG6tlDB0YUMv gTqzV7ZDpiusTMOZe9pP1PdxFhOcIJXtMQDj5LhuMIIC2jCCAkOgAwIBAgIQSznGD8ne3vtB YnhJq1XUdzANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDkwNTA3MjMxNjEwWhcNMTAwNTA3MjMxNjEwWjBCMR8wHQYD VQQDExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzdGV2ZUBpYmN0 ZWNoLmNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJNECM/VFVrzv+admf48 FNsQ2DKGEEnitYCmZo1y2HNF2TYMH/j0qtfHcRA/rTAuPgpTQMWSIY1WP0GdXFEDH9YNcrEY Le4YYQbqCPJa/woUxYywf2YvvLu42jDUe55PqllR/2jJjwTB37TVCkaLsV9c5p7uUYeFsTCc QkbDPTzK1F8uYfQq0TOVlqdlmHAMZfmzWQgefLF0AKHdvJdjpnZs6vHStytAcKccmmnF11Hr QXuKCNoy4EWy0TnWH1dOBcM0oluCWpO6DmCEaKE24/pWwE3u57rbL3pQYgTbZO8oRwBDrrm9 AaMepl5LNljL6FY05rbulYWaGWoWPHTHwwIDAQABoy0wKzAbBgNVHREEFDASgRBzdGV2ZUBp YmN0ZWNoLmNhMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAw6aPGOnZfOTpkcvB OAUPNWGb3xGNFPdRei0qM0hHtKDB9YXnCQmvHgj51e66LnO0wSrhtNNGAnfjgyoTq5mJmWD6 0EgUdkYIl8p3OxfhC5XaObDSxHl0xpjEbq2UMHRhQy+BOrNXtkOmK6xMw5l72k/U93EWE5wg le0xAOPkuG4wggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEs5xg/J3t77QWJ4SatV 1HcwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDkwNjExMTIyMTM3WjAjBgkqhkiG9w0BCQQxFgQUk95udruYhD2DOp9x+AGVHJkb YrIwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0Fi eEmrVdR3MIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0FieEmrVdR3MA0GCSqGSIb3DQEBAQUABIIB AIKm5pmuZTZZ6ccsNARbC+Njt7snfdAfujGtEffa0ws4+mjAZLRuC2tQApRhq1Rq6rtUHEWo qQHapkoiSf9maxQAwbOTcHGqjyQUlSjoDlUls4ZluezHu2DUFPpDYidh81tvClKdyVpWv5Zy 1U2uYJV2c2XYFz357a+U1jRKXEeLVQ/m0X18LXgvfLXNrPynV67uvuQLp3yYu1AmcJ2jEIAH h78yIyYObv1sOawUiv36b4Nk/W/BsnnpMDUNRPm54Ul14+NnD0VErYEJrj3SaQvHEJgQah52 0Zk17CmrZhvLgQsjabyT5tlvUFgIEBF5etXZ8+n0CQTHrBWJZoY2HPgAAAAAAAA= --------------ms060905060401080102010102-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 12:29:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 864E6106567A for ; Thu, 11 Jun 2009 12:29:40 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 0DCB68FC16 for ; Thu, 11 Jun 2009 12:29:32 +0000 (UTC) (envelope-from m.e.sanliturk@gmail.com) Received: by fxm20 with SMTP id 20so1367546fxm.43 for ; Thu, 11 Jun 2009 05:29:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=Jgo3KxPkoxy3jF3SzO853Kbxtw7w8TxbU5o1Sh2x9vY=; b=dAJJK4I8O1ODJqBnK+cGT4JNd7dJgKjR39YBGyjvnhf5iM+Lc8NrsKFcLuMD7XAVGW LTIN6uWoi2jaHzxleQ5sp8kHXtk2QCXAO/lYNdMNp/WAaIrvyHoFWx46K8SEaTzQV+87 XjGzXLoJivXW7HtYpWOtGSlCCoSJJh8u1/Ol0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=mPHjRxdPyyL6MUaekhyNR/9JXpuN2mCv4TwwgPq4bEC2naxcAAED6GWKqMjxinUERw zvv0Rg6KOEHSenl+PCM75E1xnJ/CGXqlwppt4lCHTcQpcLRSR3opv7syEjeFONq1gWHG 20cxz3W/0m5+iiISVO4Q9WN5K+0YBcqv8zZ5g= MIME-Version: 1.0 Received: by 10.239.132.83 with SMTP id 19mr197991hbq.56.1244723371948; Thu, 11 Jun 2009 05:29:31 -0700 (PDT) In-Reply-To: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> References: <14FED03E6FBE1B4D91A1F3A2F8C9739C01BC2D6571@SBS.enticelabs.local> Date: Thu, 11 Jun 2009 08:29:31 -0400 Message-ID: From: Mehmet Erol Sanliturk To: Kate Werrett Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: "freebsd-questions@FreeBSD.org" Subject: Re: Advertising Inquiry X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 12:29:40 -0000 On Wed, Jun 10, 2009 at 1:45 PM, Kate Werrett wrote: > Are you the right person to talk to about advertising on www.freebsd.org? > Thank you, > > Kate Werrett > Publisher Analyst > EnticeLabs, Inc. > > (801) 692-4058 > kwerrett@enticelabs.com > You may ask directly to webmaster@FreeBSD.org I think they are the most knowledgeable persons about FreeBSD web site management issues . If they find it useful , they may attach a new page having sections , for example : Advertisements about . Software for FreeBSD . Hardware for FreeBSD . Services for FreeBSD . . others . In that way people may be informed about products and services about FreeBSD and FreeBSD Project may be financed partly by advertisements . Thank you very much . Mehmet Erol Sanliturk From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 12:40:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47F01106566B; Thu, 11 Jun 2009 12:40:42 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 3D59D8FC15; Thu, 11 Jun 2009 12:40:41 +0000 (UTC) (envelope-from odhiambo@gmail.com) Received: by bwz17 with SMTP id 17so171881bwz.43 for ; Thu, 11 Jun 2009 05:40:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=lXwE4cd5KuslcEKsXjziv6bG83JGCNiavbgnbzBp4bY=; b=CFYTzmtALb/JXwt9PjZxoFyxG1g0ubTGUEVsGgv/bV3jZBOzQog+p/T/C6Vs/qv+NK lrz4Y8BRfqhrp04vDjYxqkeBvO2cWuKWlpt1rbVWUSG9uPe89zSvcWhff2Tv2/BDhhMT kA7o5xn0XQpARWwyOIVuCMno4UWdphBnDB5Hc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=LVLDQzTEnbHj7ndHZbgiF9mRBUC66+yyh0QCHVYS69c0e73UsTbl/c4POxzeBoFWUy Kr8VTbVIiFdM4pI1z0QmxYpgq6e56MmU5SBo9NbTZm/Yj1CjXtfSmeunz9tB4W9s1WzO NeeOOMt2fwJpCfgMDScxuJFyYnfDhnxX5yaZ8= MIME-Version: 1.0 Received: by 10.223.107.9 with SMTP id z9mr2249576fao.1.1244724040193; Thu, 11 Jun 2009 05:40:40 -0700 (PDT) In-Reply-To: References: <505626234.20090611112828@sng.by> Date: Thu, 11 Jun 2009 15:40:40 +0300 Message-ID: <991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> From: =?UTF-8?B?T2RoaWFtYm8gIOODr+OCt+ODs+ODiOODsw==?= To: Ivailo Tanusheff Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: owner-freebsd-questions@freebsd.org, freebsd-questions@freebsd.org, Anton Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 12:40:43 -0000 On Thu, Jun 11, 2009 at 2:55 PM, Ivailo Tanusheff < i.tanusheff@procreditbank.bg> wrote: > Hi, > > I am not sure that FreeBSD + IPFW is the best option for you as you have > not read how to use it yet. > So I may suggest you use man ipfw and google a little bit - the answers > are simple. > Also I may suggest you to use ipf, which is in my point of view far more > powerful. Hmm, PF would be better (not IPF) but I hear ipfw ha smore features ..... -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 13:05:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66FB11065675; Thu, 11 Jun 2009 13:05:13 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 921ED8FC0C; Thu, 11 Jun 2009 13:05:12 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5BD55Ou023445; Thu, 11 Jun 2009 15:05:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5BD53uc023442; Thu, 11 Jun 2009 15:05:04 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Thu, 11 Jun 2009 15:05:03 +0200 (CEST) From: Wojciech Puchar To: =?ISO-2022-JP?Q?Odhiambo__=1B$B%o%7%s%H%s=1B=28J?= In-Reply-To: <991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> Message-ID: References: <505626234.20090611112828@sng.by> <991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Ivailo Tanusheff , Anton , owner-freebsd-questions@freebsd.org, freebsd-questions@freebsd.org Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 13:05:14 -0000 >> powerful. > > > Hmm, PF would be better (not IPF) but I hear ipfw ha smore features ..... basicly - if you think ipfw can't do something - read manual again ;) exaggerated, but not very much... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 13:46:07 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 168CA106567D for ; Thu, 11 Jun 2009 13:46:07 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: from smtp1.mc.surewest.net (qsmtp.mc.surewest.net [66.60.130.145]) by mx1.freebsd.org (Postfix) with SMTP id E5FEF8FC0C for ; Thu, 11 Jun 2009 13:46:06 +0000 (UTC) (envelope-from drew@mykitchentable.net) Received: (qmail 5124 invoked from network); 11 Jun 2009 07:03:48 -0700 Received: by simscan 1.1.0 ppid: 5098, pid: 5102, t: 2.5015s scanners: regex: 1.1.0 attach: 1.1.0 spam: 3.1.7-deb X-Spam-Checker-Version: SpamAssassin 3.1.7-deb (2006-10-05) on smtp1.surewest.net X-Spam-Level: X-Spam-Status: No, score=0.0 required=10.0 tests=none autolearn=disabled version=3.1.7-deb X-Spam-CMAE-Analysis: v=1.0 c=1 a=jDt-9pEAAAAA:8 a=CgPVnz8AhwitGoH6UXcA:9 a=wxf4ZirgRvkAvGGzdLQA:7 a=4tLHUQKsG3Ux0ZqinL6BVqzCQ5sA:4 a=rPuOlUCyH7UA:10 a=Sllw8v0m4fwA:10 Received: from unknown (HELO blacklamb.mykitchentable.net) (69.62.230.77) by smtp1 with SMTP; 11 Jun 2009 07:03:46 -0700 Received: from [127.0.0.1] (bigdaddy.mykitchentable.net [192.168.1.3]) by blacklamb.mykitchentable.net (Postfix) with ESMTPA id F014716497C; Thu, 11 Jun 2009 06:46:01 -0700 (PDT) Message-ID: <4A310A97.7050504@mykitchentable.net> Date: Thu, 11 Jun 2009 06:45:59 -0700 From: Drew Tomlinson User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Paul Schmehl References: <6322EB049C37BA76C25CD076@Macintosh-2.local> <4A30674D.1040804@mykitchentable.net> <84015F2050B2B2480B0E0C49@Macintosh-2.local> In-Reply-To: <84015F2050B2B2480B0E0C49@Macintosh-2.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 090610-0, 06/10/2009), Outbound message X-Antivirus-Status: Clean Cc: freebsd-questions@FreeBSD.org Subject: Re: Help With rc.d Script -- SOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 13:46:07 -0000 Paul Schmehl wrote: > --On June 10, 2009 7:09:17 PM -0700 Drew Tomlinson > wrote: >>>> >>>> All I want to do is create a script within the rc.d framework that >>>> runs >>>> "/usr/local/urchin/bin/urchinctl start" when the system boots and >>>> "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. >>>> >>>> Following the examples in the guide mentioned above, here is my >>>> attempt >>>> at that file: >>>> >>>> # !/bin/sh >>>> # PROVIDE: urchin >>>> # REQUIRE: NETWORKING >>>> # KEYWORD: shutdown >>>> # >>>> # Add the following line to /etc/rc.conf to enable urchin: >>>> # urchin_enable="YES" (bool): Set to "NO" by default. >>>> # Set it to "YES" to enable urchin. >>>> . /etc/rc.subr >>>> name="urchin" >>>> rcvar=`set_rcvar` >>>> command="/usr/local/urchin/bin/urchinctl " >>>> eval "${rcvar}=\${${rcvar}:-'NO'}" >>>> load_rc_config $name >>>> run_rc_command "$1" >>>> >>>> I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. >>>> However when I run the rc.d script, the urchinctl appears to run but >>>> doesn't like whatever arguments that are passed. See this output: >>>> >>>> urchin# ./urchin-server start >>>> Starting urchin. >>>> >>>> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action >>>> >>>> >>>> I'm sure I'm missing some simple concept. I'd really appreciate a >>>> kick >>>> in the right direction. >>>> >>> >>> Where is urchin located? /usr/local/bin? /usr/local/bin/urchin/bin? >>> Or somewhere else? Is urchinctl a shell or perl script? >> >> There is no actual "urchin" as far as I know. The control file is >> /usr/local/urchin/bin/urchinctl. It is a executable file: >> >> urchin# file /usr/local/urchin/bin/urchinctl >> /usr/local/urchin/bin/urchinctl: ELF 32-bit LSB executable, Intel 80386, >> version 1 (FreeBSD), statically linked, stripped >> >> After running "/usr/local/urchin/bin/urchinctl start", I have these >> related processes: >> >> urchin# ps acux | grep urchin >> root 70937 0.0 0.0 3184 1996 ?? Ss 7:00PM 0:00.01 >> urchinwebd >> nobody 70938 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 >> urchinwebd >> nobody 70939 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 >> urchinwebd >> nobody 70940 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 >> urchinwebd >> nobody 70941 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 >> urchinwebd >> nobody 70942 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 >> urchinwebd >> nobody 70944 0.0 0.0 1460 720 ?? Ss 7:00PM 0:00.03 urchind >> nobody 70946 0.0 0.0 1332 668 ?? Is 7:00PM 0:00.51 urchind >> >> And conversely, "/usr/local/urchin/bin/urchinctl stop" removes all of >> the above processes. >> > > In your script command is path_to_urchinctl. rc.subr will look for a > process named urchinctl and a pidfile named urchinctl.pid. It appears > that neither will be found, so the script can't stop or restart the > processes, because it doesn't know the pid and therefore the process > that it needs to kill. That doesn't explain why it won't start the > processes though. I *think* you need to name the script urchin rather > than urchin-server, but I can't test that. The rc script name does not seem to matter. > To fix the pid problem, rc.subr offers some optional statements that, > with the proper arguments, can overcome the problem. You'll have to > read man rc.subr and test it to figure out what works, but here's an > example that might work: > > pidfile="/var/run/urchinwebd.pid > check_pidfile="${pidfile} The problem here is that urchinctl does not write a pid file by default and I can't figure out how to make it do so. However in reading man rc.subr, I found argument_cmd that works for me. By setting argument_cmd, I can override the default methods called by run_rc_command. Thus I set these three lines: start_cmd="/usr/local/urchin/bin/urchinctl start" stop_cmd="/usr/local/urchin/bin/urchinctl stop" status_cmd="/usr/local/urchin/bin/urchinctl status" Originally, I used "$1" instead of start, stop, and status. However this had the effect of making "restart" restart twice, once for the start method and once for the stop method because "/usr/local/urchin/bin/urchinctl restart" was being run each time. > If that does work, your script should at least be able to report the > status (running or not). I also had to set the procname variable to make the status method available. In my case, it didn't matter to what it was set as the urchinctl command handled the actual status reporting. > I'm assuming that, because root is running the lowest numbered > process, killing that process will kill all the children as well. Killing the root process killed all the urchinwebd processes but left the urchind processes hanging around. But no matter, I got things working. Thanks for your help! Drew -- Be a Great Magician! Visit The Alchemist's Warehouse http://www.alchemistswarehouse.com From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 14:30:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F596106566B for ; Thu, 11 Jun 2009 14:30:52 +0000 (UTC) (envelope-from leonardo@softel.cu) Received: from mx1.uci.cu (ns1.uci.cu [200.55.140.178]) by mx1.freebsd.org (Postfix) with SMTP id 09ACA8FC12 for ; Thu, 11 Jun 2009 14:30:47 +0000 (UTC) (envelope-from leonardo@softel.cu) Received: (qmail 3249 invoked by uid 507); 11 Jun 2009 14:30:42 -0000 Received: from 10.5.4.253 by ns1.uci.cu (envelope-from , uid 501) with qmail-scanner-2.01st (avp: 5.0.2.0. spamassassin: 3.0.6. perlscan: 2.01st. Clear:RC:1(10.5.4.253):. Processed in 0.024105 secs); 11 Jun 2009 14:30:42 -0000 Received: from unknown (HELO zimbra.softel.cu) (10.5.4.253) by 0 with SMTP; 11 Jun 2009 14:30:41 -0000 Received: from localhost (localhost [127.0.0.1]) by zimbra.softel.cu (Postfix) with ESMTP id 2E3F2C014B; Thu, 11 Jun 2009 10:27:43 -0400 (CDT) X-Virus-Scanned: amavisd-new at X-Spam-Flag: NO X-Spam-Score: -1.357 X-Spam-Level: X-Spam-Status: No, score=-1.357 tagged_above=-10 required=6.6 tests=[AWL=1.242, BAYES_00=-2.599] Received: from zimbra.softel.cu ([127.0.0.1]) by localhost (zimbra.softel.cu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wtCTxfxPJN-f; Thu, 11 Jun 2009 10:27:42 -0400 (CDT) Received: from [192.168.16.150] (sr3 [192.168.16.150]) by zimbra.softel.cu (Postfix) with ESMTP id 9B7FAC0141 for ; Thu, 11 Jun 2009 10:27:42 -0400 (CDT) From: leo To: lista de freeBSD Content-Type: text/plain Date: Thu, 11 Jun 2009 10:30:33 -0400 Message-Id: <1244730633.15006.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Subject: problem writing to usb flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 14:30:52 -0000 I succesfully configure gnome 2.22 with gconftools-2 to automount flash drive: gconftool-2 -s --type bool /desktop/gnome/volume_manager/automount_drives true % gconftool-2 -s --type bool /desktop/gnome/volume_manager/automount_media true % gconftool-2 -s --type bool /desktop/gnome/volume_manager/autobrowse true and run the hald in daemon mode I suspect that I have ntfs, is there any utility in BSD for writing this fs From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 14:40:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E942E10656AB for ; Thu, 11 Jun 2009 14:40:47 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id 55FDB8FC13 for ; Thu, 11 Jun 2009 14:40:47 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from joshua.freebsdgr.org (athedsl-4554977.home.otenet.gr [94.70.76.233]) (authenticated bits=0) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5BEeitD014560; Thu, 11 Jun 2009 17:40:44 +0300 Message-ID: <4A31176B.8040906@otenet.gr> Date: Thu, 11 Jun 2009 17:40:43 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090411) MIME-Version: 1.0 To: leo References: <1244730633.15006.6.camel@localhost.localdomain> In-Reply-To: <1244730633.15006.6.camel@localhost.localdomain> Content-Type: text/plain; charset=ISO-8859-7; format=flowed Content-Transfer-Encoding: 7bit Cc: lista de freeBSD Subject: Re: problem writing to usb flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 14:40:48 -0000 leo wrote: > I succesfully configure gnome 2.22 with gconftools-2 to automount flash > drive: > > gconftool-2 -s --type > bool /desktop/gnome/volume_manager/automount_drives true > % gconftool-2 -s --type bool /desktop/gnome/volume_manager/automount_media true > % gconftool-2 -s --type bool /desktop/gnome/volume_manager/autobrowse true > > and run the hald in daemon mode > > I suspect that I have ntfs, is there any utility in BSD for writing this > fs > > Yes, ntfs-3g is available via the sysutils/fusefs-ntfs port. I don't know whether it will work "out of the box" with automounting though. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 14:57:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1B40106564A for ; Thu, 11 Jun 2009 14:57:32 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9F1118FC14 for ; Thu, 11 Jun 2009 14:57:32 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so561138wfg.7 for ; Thu, 11 Jun 2009 07:57:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=DDuQt8J2J5z0p3HAxRf1/fUJS6zn8/rln6GR4OsoltM=; b=KXDDdBMlznWRSUkVV0Mk3jLWqT3eTxVAqrdvNGOo61X37pH8TvmITtnwdqFSBoCG20 U882WLQwRu1nY/OYP2IeCV1eNH/E7ZyZasA/xeGJweWztIwpZEDysQBlgt1rib4m9uaK y6VxQuNy+313aCdo8LS2m7JjeLLqHdpOqCT5U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=jlsGQ48XBl+8B70p/kAnuNT2sDYaTWYwe4PNdABe/QT9UwIh9lRXhQSj15ILUcxCPZ pQTZMkjvWC4oKcWvaeW+4Gn6gT4vZ8cYN/Gt6nEWwz8CB7PWNVbq5vdDnULrxIj+i3lK Y/eoLuWCtsvxrzC8tyXEmEH4+/5Qd+ZJR16tw= MIME-Version: 1.0 Received: by 10.142.211.7 with SMTP id j7mr989135wfg.165.1244730812170; Thu, 11 Jun 2009 07:33:32 -0700 (PDT) In-Reply-To: References: <505626234.20090611112828@sng.by> <991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> Date: Thu, 11 Jun 2009 07:33:32 -0700 Message-ID: From: Derrick Ryalls To: Wojciech Puchar X-Mailman-Approved-At: Thu, 11 Jun 2009 15:04:14 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org, Ivailo Tanusheff , =?ISO-2022-JP?B?T2RoaWFtYm8gGyRCJW8lNyVzJUglcxsoQg==?= , owner-freebsd-questions@freebsd.org, Anton Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 14:57:33 -0000 You might also check out monowall. It is a stripped down version of FreeBSD that can run off a small flash card and has a web interface. On Jun 11, 2009 6:05 AM, "Wojciech Puchar" wrote: >> powerful. > > > > Hmm, PF would be better (not IPF) but I hear ipfw ha smore features ..... basicly - if you think ipfw can't do something - read manual again ;) exaggerated, but not very much... _______________________________________________ freebsd-questions@freebsd.org mailing list http://l... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 15:08:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F93D1065709 for ; Thu, 11 Jun 2009 15:08:34 +0000 (UTC) (envelope-from i.tanusheff@procreditbank.bg) Received: from mail.procreditbank.bg (mail.procreditbank.bg [193.26.216.3]) by mx1.freebsd.org (Postfix) with SMTP id 6E0B68FC18 for ; Thu, 11 Jun 2009 15:08:33 +0000 (UTC) (envelope-from i.tanusheff@procreditbank.bg) Received: (qmail 36021 invoked from network); 11 Jun 2009 18:08:32 +0300 Received: from unknown (HELO domino.procreditbank.bg) (10.0.0.15) by 192.168.1.3 with SMTP; 11 Jun 2009 18:08:32 +0300 In-Reply-To: <991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> To: =?ISO-2022-JP?B?T2RoaWFtYm8gGyRCJW8lNyVzJUglcxsoQg==?= MIME-Version: 1.0 X-Mailer: Lotus Notes Release 7.0.3 September 26, 2007 From: Ivailo Tanusheff Message-ID: Date: Thu, 11 Jun 2009 18:08:32 +0300 X-MIMETrack: Serialize by Router on DOMINO/BULGARIA/PROCREDITBANK(Release 7.0.2FP2|May 14, 2007) at 11.06.2009 18:08:33, Serialize complete at 11.06.2009 18:08:33 Content-Type: text/plain; charset="ISO-2022-JP" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: owner-freebsd-questions@freebsd.org, freebsd-questions@freebsd.org, Anton Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 15:08:34 -0000 My bad - I DID mean PF, no idea where the "I" came from. Sorry about that, maybe because of the mail program I use. I use both PF and IPFW in our organization and PF is much more powerful and resource lighten. Regards, Ivailo Tanusheff Deputy Head of IT Department ProCredit Bank (Bulgaria) AD Odhiambo $B%o%7%s%H%s(B Sent by: owner-freebsd-questions@freebsd.org 11.06.2009 15:42 To Ivailo Tanusheff cc owner-freebsd-questions@freebsd.org, freebsd-questions@freebsd.org, Anton Subject Re: FreeBSD as a router On Thu, Jun 11, 2009 at 2:55 PM, Ivailo Tanusheff < i.tanusheff@procreditbank.bg> wrote: > Hi, > > I am not sure that FreeBSD + IPFW is the best option for you as you have > not read how to use it yet. > So I may suggest you use man ipfw and google a little bit - the answers > are simple. > Also I may suggest you to use ipf, which is in my point of view far more > powerful. Hmm, PF would be better (not IPF) but I hear ipfw ha smore features ..... -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube _______________________________________________ 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 11 15:54:35 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45E1B1065672 for ; Thu, 11 Jun 2009 15:54:35 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: from mail-pz0-f197.google.com (mail-pz0-f197.google.com [209.85.222.197]) by mx1.freebsd.org (Postfix) with ESMTP id 0A2C48FC1A for ; Thu, 11 Jun 2009 15:54:34 +0000 (UTC) (envelope-from gfritz@gmail.com) Received: by pzk35 with SMTP id 35so822947pzk.3 for ; Thu, 11 Jun 2009 08:54:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=z6xUKi1yIh+1a5uS0JKCqhd19akcV/9rbzKw2dsHa+M=; b=DmVaIte3vyWAtLmhULN2SDL/mf+RxmB8SgRfSHbY4NOl5Bv4gon/c1lEpbqSUQqDOS jfWn4NTxUOTFNiq+J4cJpZmlKOx+0g3SqTSKNHGWclwINmKBvmUMO8S7RTLDiEBBlhUk JjcXK33WtqjMUsYgAk73rrC6UYfTIL5dPMnkI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=PzPBJ6+uXLAg8WKCN0VMSJDVUUxCxLLb/71/B705eETynfTO30AgLNGGO0UN62dNBh +4rXa/CNXQ+JrVHzH03wmb0DDCE1KgW4n/tHaHwkoiz9EJhsAeo7xKSz3riiyf0JCHge TVPQBWHhal3DJZS1ySkC8VFqBACI0lMdnhgQg= Received: by 10.142.245.17 with SMTP id s17mr1010201wfh.90.1244735673902; Thu, 11 Jun 2009 08:54:33 -0700 (PDT) Received: from dev.null (63-12-66-208.dsl.cust.wirelessbeehive.com [208.66.12.63]) by mx.google.com with ESMTPS id 28sm275164wfd.3.2009.06.11.08.54.33 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 11 Jun 2009 08:54:33 -0700 (PDT) Received: by dev.null (Postfix, from userid 1001) id 3501235; Thu, 11 Jun 2009 09:54:32 -0600 (MDT) Date: Thu, 11 Jun 2009 09:54:32 -0600 From: Geoff Fritz To: Michael David Crawford Message-ID: <20090611155432.GA15581@dev.null> References: <26face530906081813x5abd6d28i27137b76b0be41c@mail.gmail.com> <26face530906101559p28f4d56dl287d4b6026454d2b@mail.gmail.com> <4A308498.7090108@prgmr.com> <4A30862F.8050703@esiee.fr> <4A30934E.6000001@prgmr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A30934E.6000001@prgmr.com> User-Agent: Mutt/1.5.19 (2009-01-05) Cc: freebsd-questions@freebsd.org Subject: Re: Need a filesystem with "unlimited" inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 15:54:35 -0000 On Wed, Jun 10, 2009 at 10:17:02PM -0700, Michael David Crawford wrote: > Frank Bonnet wrote: > > It seems ZFS would match his needs , why don't use it ? > > Does ZFS really work on FreeBSD? It seems like every day someone is > posting about ZFS either getting corrupted or panicking their kernel. It mostly seems to depend on the platform. I've got an aging Athlon 64 3200+ with 4GB of memory. I've been using ZFS in some capacity since the early 7.0 RC days. When I'd run FreeBSD/i386 there wasn't much I could do to prevent panics. I did all the recommended tuning mentioned on the FreeBSD wiki and I searched these lists and never could get a stable configuration. However, under amd64 I've never had a panic with ZFS. I was testing some pretty weird stuff, too, and ZFS was rock solid for me. I was running ZFS over geli, often with compression, taking snapshots every minute for an experimental script. Normal usage or stress-testing load, it never failed me. I'd even run ZFS with file-backed devices on top of ZFS or gjournal (both on top of geli), and no stability problems (though I wouldn't recommend such a setup for a production server). I know my account is purely anecdotal, but I've been a unix admin for a long time and I would trust ZFS with my personal data as well as with any any client's data if ZFS met requirements that couldn't be met with UFS2. I don't use ZFS on my workstation because I simply don't need the features and it's slower than UFS. For now, gjournal does an adequate job. -- Geoff P.S. -- I periodically check back at prgmr.com in hopes of seeing official FreeBSD guest support. I love your pricing, but I tend to avoid Linux if I can. Any thoughts on this? From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 16:16:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F1ED1065672 for ; Thu, 11 Jun 2009 16:16:37 +0000 (UTC) (envelope-from lavalamp@spiritual-machines.org) Received: from mx04.pub.collaborativefusion.com (mx04.pub.collaborativefusion.com [206.210.72.84]) by mx1.freebsd.org (Postfix) with ESMTP id 16B468FC16 for ; Thu, 11 Jun 2009 16:16:36 +0000 (UTC) (envelope-from lavalamp@spiritual-machines.org) Received: from [192.168.2.161] ([206.210.89.202]) by mx04.pub.collaborativefusion.com (StrongMail Enterprise 4.1.1.4(4.1.1.4-47689)); Thu, 11 Jun 2009 11:52:05 -0400 X-VirtualServerGroup: Default X-MailingID: 00000::00000::00000::00000::::1 X-SMHeaderMap: mid="X-MailingID" X-Destination-ID: freebsd-questions@freebsd.org X-SMFBL: ZnJlZWJzZC1xdWVzdGlvbnNAZnJlZWJzZC5vcmc= From: "Brian A. Seklecki" To: Gian Paolo Buono In-Reply-To: References: Content-Type: text/plain Date: Thu, 11 Jun 2009 12:01:30 -0400 Message-Id: <1244736090.28587.345.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 (2.24.5-1.fc10) Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Legato Client for freeBSD 7 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 16:16:37 -0000 On Thu, 2009-06-11 at 10:29 +0200, Gian Paolo Buono wrote: > Hi, > I have a server running freeBSD7 that needs the legato backup client Legato is no more. Legato and RSA are now EMC. Time to upgrade to Bacula! ~BAS From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 16:26:40 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1265A106566C for ; Thu, 11 Jun 2009 16:26:40 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr12.xs4all.nl (smtp-vbr12.xs4all.nl [194.109.24.32]) by mx1.freebsd.org (Postfix) with ESMTP id 9A8B48FC16 for ; Thu, 11 Jun 2009 16:26:39 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr12.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5BGPcIk001370; Thu, 11 Jun 2009 18:25:38 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 6311CBA89; Thu, 11 Jun 2009 18:25:38 +0200 (CEST) Date: Thu, 11 Jun 2009 18:25:38 +0200 From: Roland Smith To: Bernt Hansson Message-ID: <20090611162538.GA35956@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sm4nu43k4a2Rpi4c" Content-Disposition: inline In-Reply-To: <4A311DD9.7040405@bah.homeip.net> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: carmel_ny@hotmail.com, freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 16:26:40 -0000 --sm4nu43k4a2Rpi4c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 11, 2009 at 05:08:09PM +0200, Bernt Hansson wrote: > Roland Smith: > > On Wed, Jun 10, 2009 at 06:11:56PM -0400, Carmel wrote: > >> This is my first attempt to compile in a driver in a new kernel I am > >> attempting to build. > >> > >> Using loader.conf, I have the 'snd_hda' driver presently being loaded. > >> I want to compile it directly into the kernel. I tried this: > >=20 > >> Unfortunately, the kernel will not build. What is the proper way to > >> build a kernel with sound embedded into it? > > =20 > > You're missing something: > > =20 > > device sound > >> device snd_hda # Sound driver >=20 > That doesn't help me. snd_hda driver won't load either way. I always > have to load it manualy. What is the exact error message that you get? What kind of hardware do you have? Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --sm4nu43k4a2Rpi4c Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkoxMAIACgkQEnfvsMMhpyU/qQCdGguyy5hgNaTI7SsKOI/fctWw C18AnAj6WYyeF08zK7CqXIh8dFyIrOhf =IKHU -----END PGP SIGNATURE----- --sm4nu43k4a2Rpi4c-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 16:49:09 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 953F210656DE for ; Thu, 11 Jun 2009 16:49:09 +0000 (UTC) (envelope-from lovesk@express3a.magma.ca) Received: from mx6.magma.ca (mx6-6.spamtrap.magma.ca [209.217.78.149]) by mx1.freebsd.org (Postfix) with ESMTP id 3A6768FC17 for ; Thu, 11 Jun 2009 16:49:08 +0000 (UTC) (envelope-from lovesk@express3a.magma.ca) Received: from express3a.magma.ca (unixvws1-public.magma.ca [209.217.76.225]) by mx6-6.spamtrap.magma.ca (8.13.1/8.13.1) with ESMTP id n5BF9C5w016687 for ; Thu, 11 Jun 2009 11:09:12 -0400 Received: from express3a.magma.ca (localhost.localdomain [127.0.0.1]) by express3a.magma.ca (8.13.1/8.13.1) with ESMTP id n5BF9CRm017156 for ; Thu, 11 Jun 2009 11:09:12 -0400 Received: (from lovesk@localhost) by express3a.magma.ca (8.13.1/8.13.1/Submit) id n5BF9Cm1017155; Thu, 11 Jun 2009 11:09:12 -0400 Date: Thu, 11 Jun 2009 11:09:12 -0400 Message-Id: <200906111509.n5BF9Cm1017155@express3a.magma.ca> To: questions@freebsd.org From: Bank of Montreal Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: security alert X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 16:49:10 -0000 Access denied Your internet banking has been locked due to three consecutive failures of the banking security check. To unlock your BMO internet banking, please activate your account below : [1] Unlock Your BMO Internet Banking © 2009 Bank of Montreal. References 1. http://gumballevents.com/gallery/bmo.com/BMO/BMO/BMO/BMO/BMO/BMO/BMO/BMO/bmo/index.htm From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 17:46:03 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E888F1065677 for ; Thu, 11 Jun 2009 17:46:03 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: from web51105.mail.re2.yahoo.com (web51105.mail.re2.yahoo.com [206.190.38.147]) by mx1.freebsd.org (Postfix) with SMTP id A09548FC20 for ; Thu, 11 Jun 2009 17:46:03 +0000 (UTC) (envelope-from dino_vliet@yahoo.com) Received: (qmail 77138 invoked by uid 60001); 11 Jun 2009 17:46:02 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244742362; bh=kLkEriVlHnEZKe7Kd+7CtiVPgWxbzZmZyye1u1cAHq4=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type; b=vFBO1JiGzYpWYonl4tWLvqgn9oGOZfuqrUV7zhxUAaxBE1e2yfthbu8IOBYYOq4/HHO7lcoRNdUFh36NerKRsUj1FWRT2YcMgLp29G3qQW8p2eYyWkHRTiXlNt+0HJoPQhpb3RgkvJSGQPa0Z0keGPUeMqAzsw4yZFNxkbkiAXU= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type; b=vu2lghQ+YVmkAxxvr9mzwMXuHV2hQW58AH4F8CL2FcCqTGuhMoFGTZaKS8GMQpNe+nAJqZlLoP3dSyvST+2qGGzH9d995zJtdKY5cI/ctSbVU3+wrIs6iuw1Ch/FwA/cleaweyZBJT3XkHnT8Znr0kEDt9VNcq+LLxfIJS56K20=; Message-ID: <792370.76085.qm@web51105.mail.re2.yahoo.com> X-YMail-OSG: gX_f7FYVM1ky99O.18XYRHn_nyjJtBj6kM9CSnKOPLzOOp25rWw2dOQ9P0LjspSck65bo7O7WgzIuZIEAxkGOtSeBJ5VXwYpK0jTXpczqc6mRwgsrOKrXAqxN.qQanOhxpnYSC8Dk098.G6tl3YpRimWYFudZV7zpLKVgGYapd57tGNSA9Pvg0YCHhZTPj2yCGlb939xdDw4aPohE_VdUqLqQWE7GUVbGp_5z7LlTLUnTzz0X5wb4DufQ4arwJZcSaY8kIPKiCbjYe1NCGJEH8oTBN4eH5DiPMVPKbYuz0nMsDrkzIqglDeGtNKodeTuYlKfsSPScS17VEoyjg-- Received: from [62.51.124.86] by web51105.mail.re2.yahoo.com via HTTP; Thu, 11 Jun 2009 10:46:02 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Thu, 11 Jun 2009 10:46:02 -0700 (PDT) From: Dino Vliet To: Lowell Gilbert MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: mi@aldan.algebra.com, freebsd-questions@freebsd.org, mm@FreeBSD.org Subject: Re: tcllib error while installing tcllib on amd64 system running freebsd 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 17:46:04 -0000 --- On Mon, 6/8/09, Lowell Gilbert wrote: From: Lowell Gilbert Subject: Re: tcllib error while installing tcllib on amd64 system running f= reebsd 7.0 To: "Dino Vliet" Cc: freebsd-questions@freebsd.org, mm@FreeBSD.org, mi@aldan.algebra.com Date: Monday, June 8, 2009, 10:56 PM Dino Vliet writes: > [*=A0=A0 ]=A0 [8.6b1] comm=A0=A0=A0=A0=A0=A0=A0 !Connect to re= mote failed: couldn't open socket: connection timed out=A0 Taking a look in the comm.test file, it looks to me like you already had something on port 12345, so an attempt to open such a port failed. --=20 Lowell Gilbert, embedded/networking software engineer, Boston area =A0=A0=A0 =A0=A0=A0 http://be-well.ilk.org/~lowell/ Hi thanks for your answer but I didn't manage to solve this by looking at y= our file. My open ports: [root@dual /usr/ports/devel/tcllib]# netstat -na | grep tcp tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 192.168.2.103.22=A0=A0=A0=A0= =A0=A0 192.168.2.100.43051=A0=A0=A0 ESTABLISHED tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 127.0.0.1.65033=A0=A0=A0=A0=A0= =A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 LISTEN tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 192.168.2.103.22=A0=A0=A0=A0= =A0=A0 192.168.2.100.43050=A0=A0=A0 ESTABLISHED tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 127.0.0.1.25=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 L= ISTEN tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 *.22=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0 LISTEN tcp6=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 *.22=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0 LISTEN tcp4=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 127.0.0.1.5432=A0=A0=A0=A0=A0= =A0=A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0 LIST= EN tcp6=A0=A0=A0=A0=A0=A0 0=A0=A0=A0=A0=A0 0=A0 ::1.5432=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0=A0=A0=A0=A0 *.*=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0= =A0=A0=A0 LISTEN vi work/tcllib-1.11/modules/comm/comm.test Going to the port line gives me: (I changed it manually to 47557) test comm-5.0 {-port already in use} { =A0=A0=A0 # First start a server on port 12345 =A0=A0=A0 set port 47557 =A0=A0=A0 catch {set shdl [socket -server foo $port]} =A0=A0=A0 catch {::comm::comm new bar -port $port -listen 1 -local 0} msg =A0=A0=A0 catch {close $shdl} =A0=A0=A0 unset -nocomplain shdl port =A0=A0=A0 set msg } {couldn't open socket: address already in use} The error message I get is: [*=A0=A0 ]=A0 [8.6b1] comm=A0=A0=A0=A0=A0=A0=A0 !Connect to remo= te failed: couldn't open socket: connection timed out !while executing !"::comm::comm_cmd_send ::comm::comm 65033 {slaveat 51332}" !("uplevel" body line 1) !invoked from within !"uplevel 1 [linsert $args 0 $method $chan]" !(procedure "::comm::comm" line 6) !invoked from within !"::comm::comm send [lindex $argv 2] [list slaveat [::comm::comm self]]" !(file "/usr/ports/devel/tcllib/work/tcllib-1.11/spawn" line 9) Can there be an issue because I have the pf firewall enabled which blocks a= ll? Brgds Dino =0A=0A=0A From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 18:14:10 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 32564106566B for ; Thu, 11 Jun 2009 18:14:10 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr12.xs4all.nl (smtp-vbr12.xs4all.nl [194.109.24.32]) by mx1.freebsd.org (Postfix) with ESMTP id 9F1878FC0C for ; Thu, 11 Jun 2009 18:14:09 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr12.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5BID8s7052670; Thu, 11 Jun 2009 20:13:08 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id E476EBA8C; Thu, 11 Jun 2009 20:13:07 +0200 (CEST) Date: Thu, 11 Jun 2009 20:13:07 +0200 From: Roland Smith To: Bernt Hansson Message-ID: <20090611181307.GA38748@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <4A314577.8000102@bah.homeip.net> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: carmel_ny@hotmail.com, freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 18:14:10 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 11, 2009 at 07:57:11PM +0200, Bernt Hansson wrote: > Roland Smith: > > On Thu, Jun 11, 2009 at 05:08:09PM +0200, Bernt Hansson wrote: > >> Roland Smith: > >>> On Wed, Jun 10, 2009 at 06:11:56PM -0400, Carmel wrote: > >>>> This is my first attempt to compile in a driver in a new kernel I am > >>>> attempting to build. > >>>> > >>>> Using loader.conf, I have the 'snd_hda' driver presently being loade= d. > >>>> I want to compile it directly into the kernel. I tried this: > >>>> Unfortunately, the kernel will not build. What is the proper way to > >>>> build a kernel with sound embedded into it? > >>> =20 > >>> You're missing something: > >>> =20 > >>> device sound > >>>> device snd_hda # Sound driver > >> That doesn't help me. snd_hda driver won't load either way. I always > >> have to load it manualy. > >=20 > > What is the exact error message that you get? >=20 > None. No error message. So the kernel now builds correctly with 'device sound' and 'device snd_hda'? If not, what message does the kernel build yield? > > What kind of hardware do you have? >=20 > MB: Gigabyte GA-MA790fx-DS5 Ok, the ALC889 on board is listed as supported by snd_hda(4). BTW, have a look at the BUGS section of snd_hda(4). Maybe your problem is related to this. If loading the module works, have you tried adding snd_hda_load=3D"YES" to /boot/loader.conf, as per the manual page? Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkoxSTMACgkQEnfvsMMhpyVivACePlaDtEA5aiWV0v9OPe5OQ2NM m98An1cHJPe60WsjS/5dXVGNeEsfeknT =CtVm -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 18:46:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0C41106566C for ; Thu, 11 Jun 2009 18:46:05 +0000 (UTC) (envelope-from dak.col@gmail.com) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.221.173]) by mx1.freebsd.org (Postfix) with ESMTP id A3A9D8FC1B for ; Thu, 11 Jun 2009 18:46:05 +0000 (UTC) (envelope-from dak.col@gmail.com) Received: by qyk3 with SMTP id 3so2441639qyk.3 for ; Thu, 11 Jun 2009 11:46:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=LuvvCFj0S/pOY9KxFnOjBZAtCDlQJwo57DXOItxkclQ=; b=Eq55LnVI6lkKGXKj8prk0+GCpKI1LjYzMx3so3zVVWSeeDaZjeipLZMmrCGkvqenhF x/MwFKx1oQ7WZpFOr/6ZfIa84By1wOiZgO9/sAcEw8KLrBUTksYePErSkWObQe7Gk6tg K10sC0VIWh7OTqig1Q/BURzYRJCSP/PEPYwd0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=XJ+CwYIObb8qWWWeW0HpBMjiAm9Jk2E8+DFGASQqwleovLj1B6MDPvQw2Cmtq8sBpi aFiIYDFGWS42lCDi/l/yy11p1d3vbwguIOSJWxPfBs05ylYlSFLjijlCzJJkZUpn4oG9 EP6khvpkS+EhHBO8SLUn/Hz95vHmTAT8/941Q= MIME-Version: 1.0 Received: by 10.220.74.85 with SMTP id t21mr2551719vcj.75.1244745964891; Thu, 11 Jun 2009 11:46:04 -0700 (PDT) In-Reply-To: <20090611181307.GA38748@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> <20090611181307.GA38748@slackbox.xs4all.nl> Date: Thu, 11 Jun 2009 13:46:04 -0500 Message-ID: <3b93bd110906111146v622be4ffxe285cb5ac0374106@mail.gmail.com> From: "Diego F. Arias R." To: Roland Smith Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: carmel_ny@hotmail.com, freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 18:46:06 -0000 On Thu, Jun 11, 2009 at 1:13 PM, Roland Smith wrote: > On Thu, Jun 11, 2009 at 07:57:11PM +0200, Bernt Hansson wrote: >> Roland Smith: >> > On Thu, Jun 11, 2009 at 05:08:09PM +0200, Bernt Hansson wrote: >> >> Roland Smith: >> >>> On Wed, Jun 10, 2009 at 06:11:56PM -0400, Carmel wrote: >> >>>> This is my first attempt to compile in a driver in a new kernel I a= m >> >>>> attempting to build. >> >>>> >> >>>> Using loader.conf, I have the 'snd_hda' driver presently being load= ed. >> >>>> I want to compile it directly into the kernel. I tried this: >> >>>> Unfortunately, the kernel will not build. What is the proper way to >> >>>> build a kernel with sound embedded into it? >> >>> >> >>> You're missing something: >> >>> >> >>> device =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0sound >> >>>> device =C2=A0 snd_hda =C2=A0 =C2=A0 =C2=A0 =C2=A0 # Sound driver >> >> That doesn't help me. snd_hda driver won't load either way. I always >> >> have to load it manualy. >> > >> > What is the exact error message that you get? >> >> None. No error message. > > So the kernel now builds correctly with 'device sound' and 'device snd_hd= a'? > If not, what message does the kernel build yield? > >> > What kind of hardware do you have? >> >> MB: Gigabyte GA-MA790fx-DS5 > > Ok, the ALC889 on board is listed as supported by snd_hda(4). > > BTW, have a look at the BUGS section of snd_hda(4). Maybe your problem > is related to this. > > If loading the module works, have you tried adding snd_hda_load=3D"YES" t= o > /boot/loader.conf, as per the manual page? > > Roland > -- > R.F.Smith =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 http://www.xs4all.n= l/~rsmith/ > [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] > pgp: 1A2B 477F 9970 BA3C 2914 =C2=A0B7CE 1277 EFB0 C321 A725 (KeyID: C321= A725) > hello: do you really need to compile it in the kernel or just allow the module to auto-load at start-up? --=20 mmm, interesante..... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:11:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3E871065670 for ; Thu, 11 Jun 2009 19:11:54 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id A03C98FC08 for ; Thu, 11 Jun 2009 19:11:54 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 11E0E3CE06; Thu, 11 Jun 2009 21:11:52 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5BJBkZW002927; Thu, 11 Jun 2009 21:11:47 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 11 Jun 2009 21:11:46 +0200 From: Polytropon To: Bernt Hansson Message-Id: <20090611211146.bbf19c46.freebsd@edvax.de> In-Reply-To: <4A315180.7070200@bah.homeip.net> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> <20090611181307.GA38748@slackbox.xs4all.nl> <4A315180.7070200@bah.homeip.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: carmel_ny@hotmail.com, Roland Smith , freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 19:11:55 -0000 On Thu, 11 Jun 2009 20:48:32 +0200, Bernt Hansson wrote: > Yes. No go. I even tested to put "snd_hda="YES"" in /etc/rc.conf I don't think that can have any effect. :-) The setting snd_hda_load="YES" in /boot/loader.conf would be the correct choice. Anyway, if you included device sound device snd_hda in your kernel configuration file, the driver (a) should be compiled in and (b) loaded at startup. Of course, it won't show up in kldstat then, but % cat /dev/sndstat should indicate the running driver. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:18:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71562106566C for ; Thu, 11 Jun 2009 19:18:14 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by mx1.freebsd.org (Postfix) with ESMTP id 035698FC1A for ; Thu, 11 Jun 2009 19:18:13 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr7.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5BJHCk5072699; Thu, 11 Jun 2009 21:17:12 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 43C84BA8C; Thu, 11 Jun 2009 21:17:12 +0200 (CEST) Date: Thu, 11 Jun 2009 21:17:12 +0200 From: Roland Smith To: Bernt Hansson Message-ID: <20090611191712.GA90606@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> <20090611181307.GA38748@slackbox.xs4all.nl> <4A315180.7070200@bah.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline In-Reply-To: <4A315180.7070200@bah.homeip.net> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: carmel_ny@hotmail.com, freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 19:18:14 -0000 --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 11, 2009 at 08:48:32PM +0200, Bernt Hansson wrote: > Roland Smith skrev: >=20 > >>>> That doesn't help me. snd_hda driver won't load either way. I always > >>>> have to load it manualy. >=20 > >>> What is the exact error message that you get? >=20 > >> None. No error message. > >=20 > > So the kernel now builds correctly with 'device sound' and 'device snd_= hda'? >=20 > It's always built, sound or no sound. Than that is weird. Because if snd_hda is built into the kernel, you should not be able to load the module. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkoxWDgACgkQEnfvsMMhpyXlcgCeIYF+v6TFAydR0j5WBzjOBr7U wMAAoKe4fhaWXwORmPDcL+kr0quMtcik =3cGf -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:28:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29F73106564A for ; Thu, 11 Jun 2009 19:28:00 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id EE0CA8FC08 for ; Thu, 11 Jun 2009 19:27:59 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id E51A77E837; Thu, 11 Jun 2009 11:27:58 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org, Pieter Donche Date: Thu, 11 Jun 2009 11:27:57 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) 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: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Subject: Re: py25-tkinter-2.5.4_3 / 2.6.2_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: Thu, 11 Jun 2009 19:28:00 -0000 On Wednesday 10 June 2009 23:21:58 Pieter Donche wrote: > portupgrade advertizes since 3 days: > ... > py25-tkinter-2.5.4_3 < needs updating (index has 2.6.2_3) > > using portupgrade -a > upgrades all other ports that need upgrading, but never py25-tkinter > > what's wrong here? I presume you didn't build the index yourself. Setting PYTHON_DEFAULT_VERSION=python2.6 in /etc/make.conf will likely solve your problem. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:29:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E67B1065675 for ; Thu, 11 Jun 2009 19:29:28 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 2CFC28FC16 for ; Thu, 11 Jun 2009 19:29:28 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-87-228.hsd1.ca.comcast.net [67.188.87.228]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id n5BJTR9F055815 for ; Thu, 11 Jun 2009 12:29:27 -0700 (PDT) Message-ID: <4A315B15.5030000@rawbw.com> Date: Thu, 11 Jun 2009 12:29:25 -0700 From: Yuri User-Agent: Thunderbird 2.0.0.21 (X11/20090419) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 19:29:29 -0000 I can't find any references in rc.conf(5) on how to set up ifconfig line if SSID has spaces which is very typical situation. ifconfig(8) doesn't mention this either but it works if I put quotes around it. I would assume spaces should be substituted for '_' like in Linux. But I remember I wasn't able to make it work for some reason. Yuri From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:45:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43A491065672 for ; Thu, 11 Jun 2009 19:45:39 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by mx1.freebsd.org (Postfix) with ESMTP id BCE1D8FC1B for ; Thu, 11 Jun 2009 19:45:38 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz27 with SMTP id 27so129792bwz.43 for ; Thu, 11 Jun 2009 12:45:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=mlshSCQB+WITzHTBUfje0zxQnhxECNrzXxn6hnWnY68=; b=IWlEupjs9kf5KS3E1tAIaT0ph+g32F+uVAH15A1du7cACdQO5VI8NyZDmyG33mFVv9 ZdoF8kMop3/jrGG4QdIU+LaULANtyYZI39vR/8Jra+4Ql5y7MQ0ZeOzVcHAvTqTsOcB6 gL1NTZYmFBOoq7eQWQWBOuAu6kzguugHkP5FE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=dV7vYfFKf+YROgC3wrPDDpZK/lrBT9c71xGQPB5e10VuUfVaUmOFw8xc7/9uvq9AN9 Mx2tr1ulKBene3zuIHmz78JoxULvbSavA2Zz+EEC7+7XtJW2dvS2gQVaCefHyIixYCM3 BE5dNWBaAEN1MV6rNcfmL1+BI097kC2ZIR/7g= MIME-Version: 1.0 Received: by 10.204.116.9 with SMTP id k9mr2806332bkq.159.1244749537419; Thu, 11 Jun 2009 12:45:37 -0700 (PDT) In-Reply-To: <4A315B15.5030000@rawbw.com> References: <4A315B15.5030000@rawbw.com> Date: Thu, 11 Jun 2009 15:45:37 -0400 Message-ID: <4ad871310906111245k79fe814y304cbf8516771f2e@mail.gmail.com> From: Glen Barber To: yuri@rawbw.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 19:45:39 -0000 On Thu, Jun 11, 2009 at 3:29 PM, Yuri wrote: > I can't find any references in rc.conf(5) on how to set up ifconfig line if > SSID has spaces which is very typical situation. > ifconfig(8) doesn't mention this either but it works if I put quotes around > it. > > I would assume spaces should be substituted for '_' like in Linux. But I > remember I wasn't able to make it work for some reason. > Did you try escaping it? "My\ SSID\ Has\ Spaces" -- Glen Barber From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:46:03 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 017DE1065673 for ; Thu, 11 Jun 2009 19:46:03 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE5D8FC24 for ; Thu, 11 Jun 2009 19:46:02 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 93B017E83F; Thu, 11 Jun 2009 11:46:01 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 11:46:00 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <6322EB049C37BA76C25CD076@Macintosh-2.local> <84015F2050B2B2480B0E0C49@Macintosh-2.local> <4A310A97.7050504@mykitchentable.net> In-Reply-To: <4A310A97.7050504@mykitchentable.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111146.00926.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Drew Tomlinson Subject: Re: Help With rc.d Script -- SOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 19:46:03 -0000 On Thursday 11 June 2009 05:45:59 Drew Tomlinson wrote: > Paul Schmehl wrote: > > --On June 10, 2009 7:09:17 PM -0700 Drew Tomlinson > > > > wrote: > >>>> All I want to do is create a script within the rc.d framework that > >>>> runs > >>>> "/usr/local/urchin/bin/urchinctl start" when the system boots and > >>>> "/usr/local/urchin/bin/urchinctl stop" when the system shuts down. > >>>> > >>>> Following the examples in the guide mentioned above, here is my > >>>> attempt > >>>> at that file: > >>>> > >>>> # !/bin/sh > >>>> # PROVIDE: urchin > >>>> # REQUIRE: NETWORKING > >>>> # KEYWORD: shutdown > >>>> # > >>>> # Add the following line to /etc/rc.conf to enable urchin: > >>>> # urchin_enable="YES" (bool): Set to "NO" by default. > >>>> # Set it to "YES" to enable urchin. > >>>> . /etc/rc.subr > >>>> name="urchin" > >>>> rcvar=`set_rcvar` > >>>> command="/usr/local/urchin/bin/urchinctl " > >>>> eval "${rcvar}=\${${rcvar}:-'NO'}" > >>>> load_rc_config $name > >>>> run_rc_command "$1" > >>>> > >>>> I have also ensured that 'urchin_enable="YES"' is in /etc/rc.conf. > >>>> However when I run the rc.d script, the urchinctl appears to run but > >>>> doesn't like whatever arguments that are passed. See this output: > >>>> > >>>> urchin# ./urchin-server start > >>>> Starting urchin. > >>>> > >>>> Usage: urchinctl [-v] [-h] [-e] [-s|-w] [-p port] action > >>>> > >>>> > >>>> I'm sure I'm missing some simple concept. I'd really appreciate a > >>>> kick > >>>> in the right direction. > >>> > >>> Where is urchin located? /usr/local/bin? /usr/local/bin/urchin/bin? > >>> Or somewhere else? Is urchinctl a shell or perl script? > >> > >> There is no actual "urchin" as far as I know. The control file is > >> /usr/local/urchin/bin/urchinctl. It is a executable file: > >> > >> urchin# file /usr/local/urchin/bin/urchinctl > >> /usr/local/urchin/bin/urchinctl: ELF 32-bit LSB executable, Intel 80386, > >> version 1 (FreeBSD), statically linked, stripped > >> > >> After running "/usr/local/urchin/bin/urchinctl start", I have these > >> related processes: > >> > >> urchin# ps acux | grep urchin > >> root 70937 0.0 0.0 3184 1996 ?? Ss 7:00PM 0:00.01 > >> urchinwebd > >> nobody 70938 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > >> urchinwebd > >> nobody 70939 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > >> urchinwebd > >> nobody 70940 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > >> urchinwebd > >> nobody 70941 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > >> urchinwebd > >> nobody 70942 0.0 0.0 3184 2000 ?? I 7:00PM 0:00.00 > >> urchinwebd > >> nobody 70944 0.0 0.0 1460 720 ?? Ss 7:00PM 0:00.03 urchind > >> nobody 70946 0.0 0.0 1332 668 ?? Is 7:00PM 0:00.51 urchind > >> > >> And conversely, "/usr/local/urchin/bin/urchinctl stop" removes all of > >> the above processes. > > > > In your script command is path_to_urchinctl. rc.subr will look for a > > process named urchinctl and a pidfile named urchinctl.pid. It appears > > that neither will be found, so the script can't stop or restart the > > processes, because it doesn't know the pid and therefore the process > > that it needs to kill. That doesn't explain why it won't start the > > processes though. I *think* you need to name the script urchin rather > > than urchin-server, but I can't test that. > > The rc script name does not seem to matter. > > > To fix the pid problem, rc.subr offers some optional statements that, > > with the proper arguments, can overcome the problem. You'll have to > > read man rc.subr and test it to figure out what works, but here's an > > example that might work: > > > > pidfile="/var/run/urchinwebd.pid > > check_pidfile="${pidfile} > > The problem here is that urchinctl does not write a pid file by default > and I can't figure out how to make it do so. > > However in reading man rc.subr, I found argument_cmd that works for me. > By setting argument_cmd, I can override the default methods called by > run_rc_command. Thus I set these three lines: > > start_cmd="/usr/local/urchin/bin/urchinctl start" > stop_cmd="/usr/local/urchin/bin/urchinctl stop" > status_cmd="/usr/local/urchin/bin/urchinctl status" > > Originally, I used "$1" instead of start, stop, and status. However > this had the effect of making "restart" restart twice, once for the > start method and once for the stop method because > "/usr/local/urchin/bin/urchinctl restart" was being run each time. Right. This ctl basically does what rc scripts are normally doing. So this is the 20% case where many of rc's assumptions are incorrect and you need to override this logic. The main is that the command is not the running daemon. As such, one need to override the default start, stop, restart and status commands. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:50:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1077F10656AE for ; Thu, 11 Jun 2009 19:50:02 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id D27348FC14 for ; Thu, 11 Jun 2009 19:50:01 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 2C5447E83F; Thu, 11 Jun 2009 11:50:01 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 11:49:59 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20090611191712.GA90606@slackbox.xs4all.nl> <4A315CB0.1070903@bah.homeip.net> In-Reply-To: <4A315CB0.1070903@bah.homeip.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Roland Smith , Bernt Hansson Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 19:50:02 -0000 On Thursday 11 June 2009 11:36:16 Bernt Hansson wrote: > Roland Smith skrev: > > On Thu, Jun 11, 2009 at 08:48:32PM +0200, Bernt Hansson wrote: > >> Roland Smith skrev: > >>>>>> That doesn't help me. snd_hda driver won't load either way. I always > >>>>>> have to load it manualy. > >>>>> > >>>>> What is the exact error message that you get? > >>>> > >>>> None. No error message. > >>> > >>> So the kernel now builds correctly with 'device sound' and 'device > >>> snd_hda'? > >> > >> It's always built, sound or no sound. > > > > Than that is weird. Because if snd_hda is built into the kernel, you > > should not be able to load the module. > > Beats me! Is there any other info you might to have? Since you're not the OP, could you post your full kernel config and dmesg of that kernel? -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:51:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1503110657D6 for ; Thu, 11 Jun 2009 19:51:06 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8A9588FC27 for ; Thu, 11 Jun 2009 19:51:05 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id D0F537E837; Thu, 11 Jun 2009 11:51:03 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org, Polytropon Date: Thu, 11 Jun 2009 11:51:03 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <4A315180.7070200@bah.homeip.net> <20090611211146.bbf19c46.freebsd@edvax.de> In-Reply-To: <20090611211146.bbf19c46.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111151.03565.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: carmel_ny@hotmail.com, Roland Smith , Bernt Hansson Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 19:51:08 -0000 On Thursday 11 June 2009 11:11:46 Polytropon wrote: > Of course, it won't show up in kldstat then It will if you add -v to kldstat. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 19:55:18 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F80D10656AE for ; Thu, 11 Jun 2009 19:55:17 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 041FC8FC0C for ; Thu, 11 Jun 2009 19:55:16 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 39FAC7E837; Thu, 11 Jun 2009 11:55:16 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org, yuri@rawbw.com Date: Thu, 11 Jun 2009 11:55:15 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <4A315B15.5030000@rawbw.com> In-Reply-To: <4A315B15.5030000@rawbw.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Subject: Re: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 19:55:20 -0000 On Thursday 11 June 2009 11:29:25 Yuri wrote: > I can't find any references in rc.conf(5) on how to set up ifconfig line > if SSID has spaces which is very typical situation. > ifconfig(8) doesn't mention this either but it works if I put quotes > around it. So escape use and escape the quotes with a backslash. You may need more then one backslash, depending on the level of evaluation in /etc/rc.subr and /etc/rc.d/netif. > I would assume spaces should be substituted for '_' like in Linux. But I > remember I wasn't able to make it work for some reason. The reason probably being that underscores are different characters from spaces and FreeBSD not making assumptions on things really being other things. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:00:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15640106566B for ; Thu, 11 Jun 2009 20:00:50 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id C4CF08FC1A for ; Thu, 11 Jun 2009 20:00:49 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id 90B4C3CDF4; Thu, 11 Jun 2009 22:00:48 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5BK0gtr003355; Thu, 11 Jun 2009 22:00:42 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 11 Jun 2009 22:00:42 +0200 From: Polytropon To: Bernt Hansson Message-Id: <20090611220042.5aae7121.freebsd@edvax.de> In-Reply-To: <4A315EB8.1080803@bah.homeip.net> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> <20090611181307.GA38748@slackbox.xs4all.nl> <4A315180.7070200@bah.homeip.net> <20090611211146.bbf19c46.freebsd@edvax.de> <4A315EB8.1080803@bah.homeip.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: carmel_ny@hotmail.com, Roland Smith , freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 20:00:50 -0000 On Thu, 11 Jun 2009 21:44:56 +0200, Bernt Hansson wrote: > Polytropon skrev: > > On Thu, 11 Jun 2009 20:48:32 +0200, Bernt Hansson wrote: > >> Yes. No go. I even tested to put "snd_hda="YES"" in /etc/rc.conf > > Even tested "kldload snd_hda="YES"" in rc.conf > In 7.1 it dit work with some errors. Of course. /etc/rc.conf is "executed", in the normal way it is used it simply associates values to variables. If you would put echo "Get me beer!" into /etc/rc.conf, you would see this message. So what you did: You executed kldload snd_hda="YES" which you could also have tried the same command at the command line (sh). > Indeed. But it does not load snd_hda Of course not. You could put kldload snd_hda.ko into /etc/rc.conf, but that isn't the way such things are done. > None. No driver. Always have to add it manually. Which would not work if the driver was actually compiled int the kernel. Example: I have compiled snd_cmi and sound into my kernel. So my kldstat looks like this: # kldstat Id Refs Address Size Name 1 3 0xc0400000 6959cc kernel 2 1 0xc0a96000 683b4 acpi.ko If I now try to load the snd_cmi kernel module, this happens: # kldload snd_cmi.ko kldload: can't load snd_cmi.ko: File exists This indicates that the driver is already present. It has been preloaded by the kernel (it is IN the kernel), so it cannot be loaded by kldload. So if you ARE able to kldload the module, it hasn't been in the kernel (or at least not loaded). Maybe you can check your hints file for some strange entries? > I'm going to reboot now so i get a fresh dmesg. OAU Good luck. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:03:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8A9E81065673 for ; Thu, 11 Jun 2009 20:03:45 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 5676B8FC1D for ; Thu, 11 Jun 2009 20:03:45 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 4A48E7E837; Thu, 11 Jun 2009 12:03:44 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 12:03:43 -0800 User-Agent: KMail/1.11.3 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <4A315B15.5030000@rawbw.com> <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111203.43464.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: yuri@rawbw.com Subject: Re: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 20:03:46 -0000 On Thursday 11 June 2009 11:55:15 Mel Flynn wrote: > On Thursday 11 June 2009 11:29:25 Yuri wrote: > > I can't find any references in rc.conf(5) on how to set up ifconfig line > > if SSID has spaces which is very typical situation. > > ifconfig(8) doesn't mention this either but it works if I put quotes > > around it. > > So escape use strike that escape. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:03:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1840A106568A for ; Thu, 11 Jun 2009 20:03:58 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id DD96D8FC1F for ; Thu, 11 Jun 2009 20:03:57 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-87-228.hsd1.ca.comcast.net [67.188.87.228]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id n5BK3vpK063136; Thu, 11 Jun 2009 13:03:57 -0700 (PDT) Message-ID: <4A31632C.7060005@rawbw.com> Date: Thu, 11 Jun 2009 13:03:56 -0700 From: Yuri User-Agent: Thunderbird 2.0.0.21 (X11/20090419) MIME-Version: 1.0 To: Mel Flynn References: <4A315B15.5030000@rawbw.com> <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 20:03:58 -0000 Mel Flynn wrote: > > So escape use and escape the quotes with a backslash. You may need more then > one backslash, depending on the level of evaluation in /etc/rc.subr and > /etc/rc.d/netif. > I believe documentation should describe this since this is a major element of setting wireless network up. If that's more than one backslash that's bad since it makes it cryptic. I will investigate and will file a PR with patch. Yuri From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:04:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BD6D106568C for ; Thu, 11 Jun 2009 20:04:05 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 0733D8FC12 for ; Thu, 11 Jun 2009 20:04:04 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id D834F3D13B; Thu, 11 Jun 2009 22:04:03 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5BK41IR003367; Thu, 11 Jun 2009 22:04:02 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Thu, 11 Jun 2009 22:04:01 +0200 From: Polytropon To: Mel Flynn Message-Id: <20090611220401.2526f65a.freebsd@edvax.de> In-Reply-To: <200906111151.03565.mel.flynn+fbsd.questions@mailing.thruhere.net> References: <4A315180.7070200@bah.homeip.net> <20090611211146.bbf19c46.freebsd@edvax.de> <200906111151.03565.mel.flynn+fbsd.questions@mailing.thruhere.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: carmel_ny@hotmail.com, Roland Smith , freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 20:04:05 -0000 On Thu, 11 Jun 2009 11:51:03 -0800, Mel Flynn wrote: > On Thursday 11 June 2009 11:11:46 Polytropon wrote: > > Of course, it won't show up in kldstat then > > It will if you add -v to kldstat. Hmmm... true! % kldstat -v ... 118 pci/snd_cmi 119 sound ... But anyway, if you would kldload snd_something AFTER the kernel or through the means of /boot/loader.conf, kldstat without -v would show it, with .ko appended, as far as I remember. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:28:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8FFA1065672 for ; Thu, 11 Jun 2009 20:28:51 +0000 (UTC) (envelope-from clarkp@mtmary.edu) Received: from fear.mtmary.edu (fear.mtmary.edu [74.62.87.82]) by mx1.freebsd.org (Postfix) with ESMTP id 68C758FC27 for ; Thu, 11 Jun 2009 20:28:51 +0000 (UTC) (envelope-from clarkp@mtmary.edu) Received: from [127.0.0.1] (war.mtmary.edu [172.16.0.200]) by fear.mtmary.edu (Postfix) with ESMTP id 0DD62601A1E for ; Thu, 11 Jun 2009 14:23:35 -0500 (CDT) Message-ID: <4A3159B3.5090009@mtmary.edu> Date: Thu, 11 Jun 2009 14:23:31 -0500 From: Peter Clark User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Make 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: Thu, 11 Jun 2009 20:28:52 -0000 Hello, I have inherited an old FreeBSD 5.1 machine(5.1-RELEASE-p18). I realize that the short answer to my question is more than likely to upgrade the OS to a current release and I would if I had that option right now, but I do not. I needed to upgrade the perl/openssh/openssl implementation on this box. My first thought was to use the port on the machine that was from that era but make fails. So then I thought to csup the ports tree and try with a new version, that fails as well. The error is as follows: make config "/usr/ports/Mk/bsd.port.mk", line 1780: warning: String comparison operator should be either == or != "/usr/ports/Mk/bsd.port.mk", line 1780: Malformed conditional ((${OSVERSION} >= 700007 || ${OSVERSION} < 700000)) "/usr/ports/Mk/bsd.port.mk", line 1780: Missing dependency operator "/usr/ports/Mk/bsd.port.mk", line 6276: if-less endif "/usr/ports/Mk/bsd.port.mk", line 6276: Need an operator make: fatal errors encountered -- cannot continue I even tried to run portmanager -s to see what condition all the ports were in and that same failure showed up: portmanager -s ------------------------------------------------------------------------ portmanager 0.4.1_9: Collecting installed port data ------------------------------------------------------------------------ 00026 perl-5.10.0_3 /lang/perl5.10 ------------------------------------------------------------------------ libtool-1.3.4_4 /devel/libtool is no longer in the ports collection, see /usr/ports/MOVED this port must be removed for portmanager to continue is it OK to remove libtool-1.3.4_4 from your system? (yes/no/auto yes to all) [y/n/a] [y] ------------------------------------------------------------------------ Will timeout after 5 minutes and default to [Y] if no selection is made y ------------------------------------------------------------------------ removing: libtool-1.3.4_4 /usr/sbin/pkg_delete -f libtool-1.3.4_4 executing: /bin/rm -r /usr/ports/devel/libtool (OK to ignore error) ------------------------------------------------------------------------ 00025 expat-2.0.1 /textproc/expat2 00024 gettext-0.17_1 /devel/gettext 00023 libtool-1.5.26 /devel/libtool15 00022 libiconv-1.11_1 /converters/libiconv 00021 gmake-3.81_3 /devel/gmake 00020 ezm3-1.2_1 /lang/ezm3 00019 cvsup-without-gui-16.1h_4 /net/cvsup-without-gui 00018 db41-4.1.25_4 /databases/db41 00017 pam_pwdfile-0.95_1 /security/pam_pwdfile 00016 cyrus-sasl-2.1.23 /security/cyrus-sasl2 00015 openssl-0.9.8k_2 /security/openssl 00014 makedepend-1.0.1,1 /devel/makedepend 00013 xproto-7.0.15 /x11/xproto 00012 pkg-config-0.23_1 /devel/pkg-config 00011 rc_subr-1.31_1 /sysutils/rc_subr "/usr/ports/Mk/bsd.port.mk", line 1780: warning: String comparison operator should be either == or != "/usr/ports/Mk/bsd.port.mk", line 1780: Malformed conditional ((${OSVERSION} >= 700007 || ${OSVERSION} < 700000)) "/usr/ports/Mk/bsd.port.mk", line 1780: Missing dependency operator "/usr/ports/Mk/bsd.port.mk", line 6276: if-less endif "/usr/ports/Mk/bsd.port.mk", line 6276: Need an operator make: fatal errors encountered -- cannot continue MGdbAdd error: attempt to place null data into record halted Assertion failed: (0), function MGdbAdd, file MGdbAdd.c, line 78. Abort (core dumped) The very first thing I did in all this was to upgrade perl to 5.10. The upgrade was successful but the rebuild of the perl dependent ports was not: portupgrade -fr perl [Updating the pkgdb in /var/db/pkg ... ** Stale lock file was found. Removed. - 25 packages found (-1 +1) (...). done] ** Makefile possibly broken: mail/cyrus-imapd2: "/usr/ports/Mk/bsd.port.mk", line 1780: warning: String comparison operator should be either == or != "/usr/ports/Mk/bsd.port.mk", line 1780: Malformed conditional ((${OSVERSION} >= 700007 || ${OSVERSION} < 700000)) "/usr/ports/Mk/bsd.port.mk", line 1780: Missing dependency operator "/usr/ports/Mk/bsd.port.mk", line 6276: if-less endif "/usr/ports/Mk/bsd.port.mk", line 6276: Need an operator make: fatal errors encountered -- cannot continue /usr/local/sbin/portupgrade:1468:in `get_pkgname': Makefile broken (MakefileBrokenError) from /usr/local/sbin/portupgrade:622:in `main' from /usr/local/sbin/portupgrade:613:in `each' from /usr/local/sbin/portupgrade:613:in `main' from /usr/local/sbin/portupgrade:588:in `catch' from /usr/local/sbin/portupgrade:588:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:1310:in `call' from /usr/local/lib/ruby/1.8/optparse.rb:1310:in `parse_in_order' from /usr/local/lib/ruby/1.8/optparse.rb:1306:in `catch' from /usr/local/lib/ruby/1.8/optparse.rb:1306:in `parse_in_order' from /usr/local/lib/ruby/1.8/optparse.rb:1254:in `catch' from /usr/local/lib/ruby/1.8/optparse.rb:1254:in `parse_in_order' from /usr/local/lib/ruby/1.8/optparse.rb:1248:in `order!' from /usr/local/lib/ruby/1.8/optparse.rb:1241:in `order' from /usr/local/sbin/portupgrade:565:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:791:in `initialize' from /usr/local/sbin/portupgrade:229:in `new' from /usr/local/sbin/portupgrade:229:in `main' from /usr/local/sbin/portupgrade:2208 In that last piece I see that the initial offender is cyrus-imapd2 but I see those "/usr/ports/Mk.bsd.port.mk" lines as errors in other ports... I am not sure if this is just caused by the cyrus port, make in general or something inherently broken in that 5.1 install. Any help to resolving this is appreciated. Peter From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 20:43:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57B81106566C for ; Thu, 11 Jun 2009 20:43:04 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id B9AAA8FC0A for ; Thu, 11 Jun 2009 20:43:03 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4493580.home.otenet.gr [94.71.93.20]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5BKh04D002144; Thu, 11 Jun 2009 23:43:01 +0300 Message-ID: <4A316C54.3040409@otenet.gr> Date: Thu, 11 Jun 2009 23:43:00 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Peter Clark References: <4A3159B3.5090009@mtmary.edu> In-Reply-To: <4A3159B3.5090009@mtmary.edu> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Make 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: Thu, 11 Jun 2009 20:43:04 -0000 Peter Clark wrote: > Hello, > > I have inherited an old FreeBSD 5.1 machine(5.1-RELEASE-p18). I > realize that the short answer to my question is more than likely to > upgrade the OS to a current release and I would if I had that option > right now, but I do not. I needed to upgrade the perl/openssh/openssl > implementation on this box. My first thought was to use the port on > the machine that was from that era but make fails. So then I thought > to csup the ports tree and try with a new version, that fails as well. > The error is as follows: > 5.1 (in fact all 5.X) has reached EOL. The latest ports tree won't compile stuff for 5.X. Use the following line in your ports-supfile to get the last ports tree that was supported in 5.X: *default release=cvs tag=RELEASE_5_EOL instead of *default release=cvs tag=. Still, since this is going to be really old you may still have problems (missing distfiles and so on). But is worth trying if you must stay with 5.X for whatever reason. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 21:09:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0137A106564A for ; Thu, 11 Jun 2009 21:09:44 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr11.xs4all.nl (smtp-vbr11.xs4all.nl [194.109.24.31]) by mx1.freebsd.org (Postfix) with ESMTP id 857C08FC08 for ; Thu, 11 Jun 2009 21:09:43 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr11.xs4all.nl (8.13.8/8.13.8) with ESMTP id n5BL8gcR090651; Thu, 11 Jun 2009 23:08:42 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id AE397BA8C; Thu, 11 Jun 2009 23:08:41 +0200 (CEST) Date: Thu, 11 Jun 2009 23:08:41 +0200 From: Roland Smith To: Bernt Hansson Message-ID: <20090611210841.GA79224@slackbox.xs4all.nl> References: <20090610222823.GA7364@slackbox.xs4all.nl> <4A311DD9.7040405@bah.homeip.net> <20090611162538.GA35956@slackbox.xs4all.nl> <4A314577.8000102@bah.homeip.net> <20090611181307.GA38748@slackbox.xs4all.nl> <4A315180.7070200@bah.homeip.net> <20090611211146.bbf19c46.freebsd@edvax.de> <4A315EB8.1080803@bah.homeip.net> <20090611220042.5aae7121.freebsd@edvax.de> <4A31650C.8010101@bah.homeip.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/04w6evG8XlLl3ft" Content-Disposition: inline In-Reply-To: <4A31650C.8010101@bah.homeip.net> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 21:09:44 -0000 --/04w6evG8XlLl3ft Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jun 11, 2009 at 10:11:56PM +0200, Bernt Hansson wrote: > >=20 > >> I'm going to reboot now so i get a fresh dmesg. OAU > >=20 > > Good luck. >=20 > No luck. I've just rebuilt and installed a new kernel. > No snd_hda is loaded. >=20 > testbox# kldload snd_hda > testbox# This indicates that kldload was able to load the module. That means that snd_hda in _not_ compiled into the kernel! Are you sure you built and installed your custom kernel and not the GENERIC kernel? (you can check with 'uname -i'.) Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --/04w6evG8XlLl3ft Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkoxclkACgkQEnfvsMMhpyWkywCgg5PVPhQAmp273QS4cHd1d1fs gR8AoITWca1E/UyfRMuE/OQL7NSTYH83 =68xz -----END PGP SIGNATURE----- --/04w6evG8XlLl3ft-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 21:17:06 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F1D2106566B for ; Thu, 11 Jun 2009 21:17:06 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id AE1808FC15 for ; Thu, 11 Jun 2009 21:17:05 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id BC6B0EB57A0; Fri, 12 Jun 2009 00:17:04 +0300 (EEST) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id AD9434503F; Fri, 12 Jun 2009 00:17:04 +0300 (EEST) X-Virus-Scanned: amavisd-new at ceid.upatras.gr Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id a0+54MWmpMOB; Fri, 12 Jun 2009 00:17:04 +0300 (EEST) Received: from kobe.laptop (adsl16-200.kln.forthnet.gr [77.49.143.200]) by mail.ceid.upatras.gr (Postfix) with ESMTP id 72C1344FE4; Fri, 12 Jun 2009 00:17:04 +0300 (EEST) Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n5BLH3mF054159; Fri, 12 Jun 2009 00:17:03 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n5BLH2dh054118; Fri, 12 Jun 2009 00:17:02 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Peter Clark References: <4A3159B3.5090009@mtmary.edu> Date: Fri, 12 Jun 2009 00:17:02 +0300 In-Reply-To: <4A3159B3.5090009@mtmary.edu> (Peter Clark's message of "Thu, 11 Jun 2009 14:23:31 -0500") Message-ID: <87fxe6sc6p.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: Make 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: Thu, 11 Jun 2009 21:17:06 -0000 On Thu, 11 Jun 2009 14:23:31 -0500, Peter Clark wrote: > Hello, > I have inherited an old FreeBSD 5.1 machine(5.1-RELEASE-p18). I realize > that the short answer to my question is more than likely to upgrade the > OS to a current release and I would if I had that option right now, but I > do not. I needed to upgrade the perl/openssh/openssl implementation on > this box. My first thought was to use the port on the machine that was > from that era but make fails. So then I thought to csup the ports tree > and try with a new version, that fails as well. The error is as follows: > > make config > "/usr/ports/Mk/bsd.port.mk", line 1780: warning: String comparison > operator should be either == or != > "/usr/ports/Mk/bsd.port.mk", line 1780: Malformed conditional > ((${OSVERSION} >= 700007 || ${OSVERSION} < 700000)) > "/usr/ports/Mk/bsd.port.mk", line 1780: Missing dependency operator > "/usr/ports/Mk/bsd.port.mk", line 6276: if-less endif > "/usr/ports/Mk/bsd.port.mk", line 6276: Need an operator > make: fatal errors encountered -- cannot continue This is because bsd.port.mk now uses constructs that are not supported by the `/usr/bin/make' binary of 5.X. If you *really* have to stick with 5.1-RELEASE-p18, it may be worth trying to compile a newer snapshot of `src/usr.bin/make' from 7-STABLE and install it as say `/usr/bin/make-7.x'. Then you can try building ports from a more recent `/usr/ports' tree with *that* make binary: # cd /usr/ports/CATEGORY/APP # make-7.x config Most of the `ports/' makefile glue should use ${MAKE} to invoke child instances of the make utility, and with a custom `make-7.x' binary this should default to the correct version of `/usr/bin/make-7.x'. This is a bit of a "hack" though, so if it fails in other ways, you will have to weigh the two options: (1) staying with 5.1 and trying to build ports with a custom `make-7.x' binary, possibly investing a lot of time to fix `ports/Mk/bsd.*.mk' problems as they come up, and (2) updating the base system to a more recent FreeBSD release. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 21:20:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0FD90106566B for ; Thu, 11 Jun 2009 21:20:15 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id D04478FC16 for ; Thu, 11 Jun 2009 21:20:13 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 18BE87E837; Thu, 11 Jun 2009 13:20:10 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org, yuri@rawbw.com Date: Thu, 11 Jun 2009 13:20:08 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <4A315B15.5030000@rawbw.com> <200906111155.15644.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31632C.7060005@rawbw.com> In-Reply-To: <4A31632C.7060005@rawbw.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111320.08907.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Subject: Re: rc.conf when ssid has spaces in it: missing documentation or missing feature? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 21:20:15 -0000 On Thursday 11 June 2009 12:03:56 Yuri wrote: > Mel Flynn wrote: > > So escape use and escape the quotes with a backslash. You may need more > > then one backslash, depending on the level of evaluation in /etc/rc.subr > > and /etc/rc.d/netif. > > I believe documentation should describe this since this is a major > element of setting wireless network up. Perhaps. > If that's more than one backslash that's bad since it makes it cryptic. > I will investigate and will file a PR with patch. Knowledge of how sh treats variables is assumed for any unix admin. The level of escaping might be cryptic to some, but using sh -x /etc/rc./netif start one can easily trace how the ifconfig_ variable is evaluated and where the backslashes are consumed. -- Mel From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 21:50:05 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC35C1065678 for ; Thu, 11 Jun 2009 21:50:05 +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 951D58FC1D for ; Thu, 11 Jun 2009 21:50:05 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6754 invoked from network); 11 Jun 2009 21:50:05 -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 ; 11 Jun 2009 21:50:04 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id D47585084F; Thu, 11 Jun 2009 17:50:03 -0400 (EDT) To: Peter Clark , freebsd-questions@freebsd.org References: <4A3159B3.5090009@mtmary.edu> <4A316C54.3040409@otenet.gr> From: Lowell Gilbert Date: Thu, 11 Jun 2009 17:50:03 -0400 In-Reply-To: <4A316C54.3040409@otenet.gr> (Manolis Kiagias's message of "Thu\, 11 Jun 2009 23\:43\:00 +0300") Message-ID: <44zlcephis.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: Make Question 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, 11 Jun 2009 21:50:06 -0000 Manolis Kiagias writes: >> I have inherited an old FreeBSD 5.1 machine(5.1-RELEASE-p18). I >> realize that the short answer to my question is more than likely to >> upgrade the OS to a current release and I would if I had that option >> right now, but I do not. I needed to upgrade the perl/openssh/openssl >> implementation on this box. My first thought was to use the port on >> the machine that was from that era but make fails. So then I thought >> to csup the ports tree and try with a new version, that fails as well. >> The error is as follows: >> > > 5.1 (in fact all 5.X) has reached EOL. The latest ports tree won't > compile stuff for 5.X. Use the following line in your ports-supfile to > get the last ports tree that was supported in 5.X: > > *default release=cvs tag=RELEASE_5_EOL > > instead of > > *default release=cvs tag=. > > Still, since this is going to be really old you may still have problems > (missing distfiles and so on). But is worth trying if you must stay with > 5.X for whatever reason. One thing it won't do is get you any of the bug fixes to the ssh port. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 22:07:48 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B15C6106566B for ; Thu, 11 Jun 2009 22:07:48 +0000 (UTC) (envelope-from prvs=40649701e=pauls@utdallas.edu) Received: from ip-relay-001.utdallas.edu (ip-relay-001.utdallas.edu [129.110.20.111]) by mx1.freebsd.org (Postfix) with ESMTP id 785808FC1E for ; Thu, 11 Jun 2009 22:07:48 +0000 (UTC) (envelope-from prvs=40649701e=pauls@utdallas.edu) X-Group: RELAYLIST X-IronPort-AV: E=Sophos;i="4.42,204,1243832400"; d="scan'208";a="13333305" Received: from smtp3.utdallas.edu ([129.110.20.110]) by ip-relay-001.utdallas.edu with ESMTP; 11 Jun 2009 16:38:59 -0500 Received: from utd65257.utdallas.edu (utd65257.utdallas.edu [129.110.3.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTPSA id AE0774EF43; Thu, 11 Jun 2009 16:38:59 -0500 (CDT) Date: Thu, 11 Jun 2009 21:38:55 +0000 From: Paul Schmehl To: Drew Tomlinson Message-ID: In-Reply-To: <4A310A97.7050504@mykitchentable.net> References: <6322EB049C37BA76C25CD076@Macintosh-2.local> <4A30674D.1040804@mykitchentable.net> <84015F2050B2B2480B0E0C49@Macintosh-2.local> <4A310A97.7050504@mykitchentable.net> X-Mailer: Mulberry/4.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========F6041C8F52C65346AFFB==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@FreeBSD.org Subject: Re: Help With rc.d Script -- SOLVED X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 22:07:49 -0000 --==========F6041C8F52C65346AFFB========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Thursday, June 11, 2009 08:45:59 -0500 Drew Tomlinson=20 wrote: > > The problem here is that urchinctl does not write a pid file by default > and I can't figure out how to make it do so. > > However in reading man rc.subr, I found argument_cmd that works for me. > By setting argument_cmd, I can override the default methods called by > run_rc_command. Thus I set these three lines: > > start_cmd=3D"/usr/local/urchin/bin/urchinctl start" > stop_cmd=3D"/usr/local/urchin/bin/urchinctl stop" > status_cmd=3D"/usr/local/urchin/bin/urchinctl status" > > Originally, I used "$1" instead of start, stop, and status. However > this had the effect of making "restart" restart twice, once for the > start method and once for the stop method because > "/usr/local/urchin/bin/urchinctl restart" was being run each time. > >> If that does work, your script should at least be able to report the >> status (running or not). > > I also had to set the procname variable to make the status method > available. In my case, it didn't matter to what it was set as the > urchinctl command handled the actual status reporting. > >> I'm assuming that, because root is running the lowest numbered >> process, killing that process will kill all the children as well. > Killing the root process killed all the urchinwebd processes but left > the urchind processes hanging around. But no matter, I got things working. > Drew, I'm glad you were able to get it working. There may be a way to kill the = urchind processes as well. If you set procname to urchin, the rc.subr script=20 might understand that to mean any process that begins with that string. I=20 haven't tested it, but looking at the script (/etc/rc.subr), it appears to me=20 to be the case. If that doesn't work, perhaps procname urchin* would. --=20 Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========F6041C8F52C65346AFFB==========-- From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 22:10:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A888106566C for ; Thu, 11 Jun 2009 22:10:15 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id E34DA8FC13 for ; Thu, 11 Jun 2009 22:10:09 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (mailhost2.waddell.com [10.1.10.30]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n5BM9ibC021927 for ; Thu, 11 Jun 2009 17:09:54 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost2.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 25D0289E32 for ; Thu, 11 Jun 2009 17:09:44 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost2.waddell.com (Postfix) with ESMTP id EED0789E29 for ; Thu, 11 Jun 2009 17:09:43 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 11 Jun 2009 17:09:43 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Thu, 11 Jun 2009 17:09:43 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF4E@WADPEXV0.waddell.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: reference for beginner on configure/make/compile/linking/etc. thread-index: Acnq4VLRaBQ6PfRjQQmvZP8TlnsXpg== From: "Gary Gatten" To: X-OriginalArrivalTime: 11 Jun 2009 22:09:43.0579 (UTC) FILETIME=[52E106B0:01C9EAE1] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: reference for beginner on configure/make/compile/linking/etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 11 Jun 2009 22:10:15 -0000 As you may recall from a recent post I've been trying to get nTop compiled and working on Solaris 10 x86. After 40 - 60 hours (I loose track) I *THINK* it's actually working for the most part. =20 Before certain people get pi$$ed off about this not being a Solaris list - chill for a sec! =20 I'm just looking for some materials that can help me understand the whole configure/make/compile/linking/etc. stuff. Someone that knew this stuff could've probably resolved my issues in a few hours. It seems COMPLETELY overly complex to me - maybe cause the developer tries to make it as portable as possible, but with every *nix like things putting files wherever they want, different cc's / ld's, etc. - I can see where it can get hairy. =20 Anyway, TIA for your input. Hopefully this experience and the references you can point me to will help the next time I try to get something onto FreeBSD! =20 TIA! =20 Gary
"This email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 22:53:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D23AA1065672 for ; Thu, 11 Jun 2009 22:53:50 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.30]) by mx1.freebsd.org (Postfix) with ESMTP id 86E008FC1A for ; Thu, 11 Jun 2009 22:53:50 +0000 (UTC) (envelope-from dave.mehler@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so1008898ywe.13 for ; Thu, 11 Jun 2009 15:53:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:reply-to:from:to:subject:date :organization:message-id:mime-version:content-type :content-transfer-encoding:x-mailer:x-mimeole:thread-index; bh=HutB++DydjyF9y1+/g50oAiZHLpfzuXknD/YLUmJkUk=; b=sOOYh1J/nXNjsBxn6VjxBHLkBkOwbK7kHCVVl7ESYsvnc076nSs0EvsU1ytjxzIAp4 jIAQPdxUbZiuTU3rv6CVvTIu8D/yKcggCz8ZHY5tI/EUXUcXQnwiZCH3Wf/lp1AQ+ijG vusZdF3mGOWfQPFiEHJlcbVypLtamjd/jd/m0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=reply-to:from:to:subject:date:organization:message-id:mime-version :content-type:content-transfer-encoding:x-mailer:x-mimeole :thread-index; b=kxMtXXLMNRhHIx0D6YVjt+5IdhvVAXevg3CABc74ElkVlG3qjCXJ7OsZOhA241uTmr sNsd6BpRw02Lr8xYyaNOsr7yjuMOs7tb3TuOrCXw3j3v23meRMbHP1sI0bYshnugI6gx NYzIshmPUmBwh/R3nNCev347lSUeMJ3qRU4AM= Received: by 10.90.96.1 with SMTP id t1mr954845agb.109.1244760829933; Thu, 11 Jun 2009 15:53:49 -0700 (PDT) Received: from hades ([99.148.206.19]) by mx.google.com with ESMTPS id 36sm869671agc.20.2009.06.11.15.53.48 (version=SSLv3 cipher=RC4-MD5); Thu, 11 Jun 2009 15:53:48 -0700 (PDT) From: "Dave" To: Date: Thu, 11 Jun 2009 18:54:00 -0400 Organization: davemehler.com Message-ID: 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.5579 Thread-Index: Acnq54JBc0MCpmXRTTC2BqcUZ3Z5qw== Subject: Authenticating users via openldap on 7.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dave.mehler@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2009 22:53:51 -0000 Hello, I had user authentication going about a year and some months back on a 6.2 box. Unfortunately that box is no longer under my control. I'm trying to duplicate what was done under 6.2. If anyone has this going can you write me offlist? Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Thu Jun 11 23:23:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 67864106564A for ; Thu, 11 Jun 2009 23:23:58 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 32B058FC12 for ; Thu, 11 Jun 2009 23:23:57 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id E35BA7E837; Thu, 11 Jun 2009 15:23:56 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 15:23:55 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> In-Reply-To: <4A31676C.6020709@bah.homeip.net> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Bernt Hansson Subject: Re: Compiling in sound driver in 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: Thu, 11 Jun 2009 23:23:58 -0000 On Thursday 11 June 2009 12:22:04 Bernt Hansson wrote: > Mel Flynn skrev: > > On Thursday 11 June 2009 11:36:16 Bernt Hansson wrote: > >> Roland Smith skrev: > >>> On Thu, Jun 11, 2009 at 08:48:32PM +0200, Bernt Hansson wrote: > >>>> Roland Smith skrev: > >>>>>>>> That doesn't help me. snd_hda driver won't load either way. I > >>>>>>>> always have to load it manualy. > >>>>>>> > >>>>>>> What is the exact error message that you get? > >>>>>> > >>>>>> None. No error message. > >>>>> > >>>>> So the kernel now builds correctly with 'device sound' and 'device > >>>>> snd_hda'? > >>>> > >>>> It's always built, sound or no sound. > >>> > >>> Than that is weird. Because if snd_hda is built into the kernel, you > >>> should not be able to load the module. > >> > >> Beats me! Is there any other info you might to have? > > > > Since you're not the OP, could you post your full kernel config and dmesg > > of that kernel? > > Yes of course. > > Dmesg: > > Copyright (c) 1992-2009 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 is a registered trademark of The FreeBSD Foundation. > FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 > root@fqdn:/usr/obj/usr/src/sys/GENERIC ^^^^^^^ Did you edit GENERIC or did you forget to set KERNCONF during build/installkernel? -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 00:10:29 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20BD0106564A for ; Fri, 12 Jun 2009 00:10:29 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from mail.experts-exchange.com (mail.experts-exchange.com [64.156.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 0BC408FC13 for ; Fri, 12 Jun 2009 00:10:28 +0000 (UTC) (envelope-from jhelfman@e-e.com) Received: from eggman.experts-exchange.com (unknown [72.29.180.81]) by mail.experts-exchange.com (Postfix) with ESMTP id B28DA4A30908 for ; Thu, 11 Jun 2009 17:10:21 -0700 (PDT) Received: by eggman.experts-exchange.com (sSMTP sendmail emulation); Thu, 11 Jun 2009 17:10:26 -0700 Date: Thu, 11 Jun 2009 17:10:26 -0700 From: Jason To: freebsd-questions@freebsd.org Message-ID: <20090612001026.GG39951@eggman.experts-exchange.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline X-Operating-System: FreeBSD 7.1-RELEASE-p4 GENERIC X-Living-The-Dream: I love the SLO Life! User-Agent: Mutt/1.5.18 (2008-05-17) Subject: freebsd update 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: Fri, 12 Jun 2009 00:10:29 -0000 Hi, I have just started getting into the realm of kernel building, and I have a question in so far as upgrades. Is it possible to do a freebsd-update fetch then install, reboot, and then install again to get to the latest release you want to run? Update /usr/src with sources and build a kernel from that, and use that kernel. After this, assuming this is the correct path, can the same path be used to upgrade other servers, and then just plop the kernel on (same hardware.) I am not sure if this is the right path, but looking to understand it a little better. Thanks! From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 00:10:30 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6AE261065670 for ; Fri, 12 Jun 2009 00:10:30 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 2380E8FC15 for ; Fri, 12 Jun 2009 00:10:29 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id EF8617E837 for ; Thu, 11 Jun 2009 16:10:28 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Thu, 11 Jun 2009 16:10:26 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <70C0964126D66F458E688618E1CD008A0793EF4E@WADPEXV0.waddell.com> In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF4E@WADPEXV0.waddell.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906111610.27482.mel.flynn+fbsd.questions@mailing.thruhere.net> Subject: Re: reference for beginner on configure/make/compile/linking/etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 00:10:30 -0000 On Thursday 11 June 2009 14:09:43 Gary Gatten wrote: > It seems > COMPLETELY overly complex to me - maybe cause the developer tries to > make it as portable as possible, but with every *nix like things putting > files wherever they want, different cc's / ld's, etc. - I can see where > it can get hairy. It *is* overly complex. The original design goal of "easily create portable shell to configure and Makefiles" has long been replaced with "cruft now requiring perl, additional files for linking (.la) and overall confusion when things don't work". It is no wonder that larger projects are switching to cmake and smaller to jam/scons. That said, if the developers know what they're doing, you won't see any OS assumption in the source code (#ifdef __FreeBSD__ and similar) and you would be able to assert portability differences by grepping for '^#ifn?def[[:space:]]+HAVE_' in headers and source. Problems with configure/automake usually can be classified in the following categories: - Unhandled cases developers are not aware of: prerequisite headers or headers in different locations then are assumed. Library symbols in differently named libraries. - Attempt to figure out a prerequisite is present not directly supported by autoconf/automake then created by the developers in not so portable script. - Assumptions on struct members, number of arguments to certain functions, size of data structures, presence of symbols. - Lex/yacc/bison parser generator version problems. I've always found curl (ftp/curl) port a good example of autoconf usage. -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 00:16:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02527106566C for ; Fri, 12 Jun 2009 00:16:52 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 807A58FC0C for ; Fri, 12 Jun 2009 00:16:51 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz17 with SMTP id 17so16725bwz.43 for ; Thu, 11 Jun 2009 17:16:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=LFaXEx5odhVsygXmoKVT48WpRGiKITqfHKYifTjuxHc=; b=A1R8Sh7mqI5YOA7C7ShYH3bJhDf6ppR8qEgtiwSrrXeAna9iQcYuawUcsSfGwxPy32 8WcKGiNBUPxvRAosXEFgmL9PHwtYoxf+UTxZ1XndOWt4MNnM5wyZXBzwZVcXW0JOWA8p EPdetdir02l2b025+uvm0IuXG6bgEyN+2Hm0k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=uBBsrmw2ieMxCgZfL7RqDV10xN+E1eBVCOg2+uQMhRcevMpyMsz0pcJ0pQttCKK1NI 4MdoaNJkbJGN9YsUBfJnoOd1vX+eRY5tRWzNmGkUOfXqWJpgDfimiXK4KT/bnMsh1KKW PrbQImTD2wHhbfc1gTNaJXUozKgWNsyt9AJSM= MIME-Version: 1.0 Received: by 10.204.54.4 with SMTP id o4mr3073806bkg.10.1244765810358; Thu, 11 Jun 2009 17:16:50 -0700 (PDT) In-Reply-To: <20090612001026.GG39951@eggman.experts-exchange.com> References: <20090612001026.GG39951@eggman.experts-exchange.com> Date: Thu, 11 Jun 2009 20:16:50 -0400 Message-ID: <4ad871310906111716x100127bbt2d99e16089ea2d05@mail.gmail.com> From: Glen Barber To: Jason Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: freebsd update 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: Fri, 12 Jun 2009 00:16:52 -0000 Hi, Jason On Thu, Jun 11, 2009 at 8:10 PM, Jason wrote: > Hi, > > I have just started getting into the realm of kernel building, and I have a > question in so far as upgrades. > > Is it possible to do a freebsd-update fetch then install, reboot, and then > install again to get to the latest release you want to run? > Yes, this is possible. > Update /usr/src with sources and build a kernel from that, and use that > kernel. > Yep. > After this, assuming this is the correct path, can the same path be used to > upgrade other servers, and then just plop the kernel on (same hardware.) > If it is a GENERIC kernel on the other servers, you can follow the freebsd-update path mentioned above. > I am not sure if this is the right path, but looking to understand it a > little better. > If you only want binary upgrades, freebsd-update is probably your best bet. If you like pain (like most of us do), you can build from source. :) -- Glen Barber From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 00:52:39 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7FBC5106566C for ; Fri, 12 Jun 2009 00:52:39 +0000 (UTC) (envelope-from lars@larseighner.com) Received: from mail.team1internet.com (mail.team1internet.com [216.110.13.10]) by mx1.freebsd.org (Postfix) with ESMTP id 5C0508FC14 for ; Fri, 12 Jun 2009 00:52:39 +0000 (UTC) (envelope-from lars@larseighner.com) Received: by mail.team1internet.com (Postfix, from userid 12346) id D064716B53E; Thu, 11 Jun 2009 19:52:38 -0500 (CDT) Received: from larseighner.com (unknown [216.110.13.76]) by mail.team1internet.com (Postfix) with SMTP id 39A0316B51F; Thu, 11 Jun 2009 19:52:37 -0500 (CDT) Received: by larseighner.com (nbSMTP-1.00) for uid 1001 lars@larseighner.com; Thu, 11 Jun 2009 19:48:31 -0500 (CDT) Date: Thu, 11 Jun 2009 19:48:25 -0500 (CDT) From: Lars Eighner X-X-Sender: lars@debranded.6dollardialup.com To: Jason In-Reply-To: <20090612001026.GG39951@eggman.experts-exchange.com> Message-ID: <20090611194820.M97899@qroenaqrq.6qbyyneqvnyhc.pbz> References: <20090612001026.GG39951@eggman.experts-exchange.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Sanitizer: Anomy and SpamAssassin mail filter - see http://www.6dollardialup.com/support/spaminfo.html Cc: freebsd-questions@freebsd.org Subject: Re: freebsd update 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: Fri, 12 Jun 2009 00:52:40 -0000 On Thu, 11 Jun 2009, Jason wrote: > Hi, > > I have just started getting into the realm of kernel building, and I have > a question in so far as upgrades. > > Is it possible to do a freebsd-update fetch then install, reboot, and then > install again to get to the latest release you want to run? > > Update /usr/src with sources and build a kernel from that, and use that > kernel. In general when you make an updated kernel you should rebuild and install world too. This doesn't apply to building a different (custom) kernel when world has not changed. Okay, it is often true that within major versions you can run with an updated kernel on the old world for a long time without encountering a problem, but problems from kernel-world mismatch are not extremely rare. If and when you install the sources, check the procedures in UPADATING (near the bottom) for best practices procedure. > After this, assuming this is the correct path, can the same path be used to > upgrade other servers, and then just plop the kernel on (same hardware.) With the above concern about kernel-world mismatch in mind, yes this is likely to work, but the best practice would be to make a release. This should work even if there is a minor, perhaps unknown, variation in hardware. > > I am not sure if this is the right path, but looking to understand it a > little better. -- Lars Eighner http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 02:46:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1A6D106566B for ; Fri, 12 Jun 2009 02:46:24 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 512B78FC15 for ; Fri, 12 Jun 2009 02:46:23 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from kw.homeip.net (c80-217-74-54.bredband.comhem.se [80.217.74.54]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id n5C2kMU9046254; Fri, 12 Jun 2009 04:46:22 +0200 (CEST) (envelope-from bernt@bah.homeip.net) Message-ID: <4A31C167.9040400@bah.homeip.net> Date: Fri, 12 Jun 2009 04:45:59 +0200 From: Bernt Hansson User-Agent: slrn/1.0.8 (FreeBSD) MIME-Version: 1.0 To: Mel Flynn References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 02:46:25 -0000 Mel Flynn said the following on 2009-06-12 01:23: > On Thursday 11 June 2009 12:22:04 Bernt Hansson wrote: >> Mel Flynn skrev: >>> On Thursday 11 June 2009 11:36:16 Bernt Hansson wrote: >>>> Roland Smith skrev: >>>>> On Thu, Jun 11, 2009 at 08:48:32PM +0200, Bernt Hansson wrote: >>>>>> Roland Smith skrev: >>>>>>>>>> That doesn't help me. snd_hda driver won't load either way. I >>>>>>>>>> always have to load it manualy. >>>>>>>>> What is the exact error message that you get? >>>>>>>> None. No error message. >>>>>>> So the kernel now builds correctly with 'device sound' and 'device >>>>>>> snd_hda'? >>>>>> It's always built, sound or no sound. >>>>> Than that is weird. Because if snd_hda is built into the kernel, you >>>>> should not be able to load the module. >>>> Beats me! Is there any other info you might to have? >>> Since you're not the OP, could you post your full kernel config and dmesg >>> of that kernel? >> Yes of course. >> >> Dmesg: >> >> Copyright (c) 1992-2009 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 is a registered trademark of The FreeBSD Foundation. >> FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 >> root@fqdn:/usr/obj/usr/src/sys/GENERIC > ^^^^^^^ > Did you edit GENERIC Yes. Added sound and snd_hda > or did you forget to set KERNCONF during build/installkernel? No. cd /usr/src make buildkernel KERNCONF=GENERIC make installkernel KERNCONF=GENERIC reboot is what I did. No snd_hda From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 03:02:26 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 069E7106566B for ; Fri, 12 Jun 2009 03:02:26 +0000 (UTC) (envelope-from fmf2004kft@atlasz.web-server.hu) Received: from alfa.web-server.hu (mustang-a.web-server.hu [195.228.155.214]) by mx1.freebsd.org (Postfix) with ESMTP id 916348FC1D for ; Fri, 12 Jun 2009 03:02:25 +0000 (UTC) (envelope-from fmf2004kft@atlasz.web-server.hu) Received: from atlasz ([10.0.3.210] ident=Debian-exim) by alfa.web-server.hu with esmtp (Exim 4.63) (envelope-from ) id 1MEnu2-0000zS-7s for questions@freebsd.org; Thu, 11 Jun 2009 19:17:31 +0200 Received: from fmf2004kft by atlasz with local (Exim 4.63) (envelope-from ) id 1MEnu2-0002GN-6e for questions@freebsd.org; Thu, 11 Jun 2009 19:17:26 +0200 To: questions@freebsd.org From: Bank of Montreal Content-Transfer-Encoding: 8bit Message-Id: Date: Thu, 11 Jun 2009 19:17:26 +0200 MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: security alert X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 03:02:26 -0000 Access denied Your internet banking has been locked due to three consecutive failures of the banking security check. To unlock your BMO internet banking, please activate your account below : [1] Unlock Your BMO Internet Banking © 2009 Bank of Montreal. References 1. http://gumballevents.com/gallery/bmo.com/BMO/BMO/BMO/BMO/BMO/BMO/BMO/BMO/bmo/index.htm From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 03:30:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B3E9106566C for ; Fri, 12 Jun 2009 03:30:51 +0000 (UTC) (envelope-from noc@hdk5.net) Received: from guam10.hdk5.net (guam10.hdk5.net [66.180.132.235]) by mx1.freebsd.org (Postfix) with ESMTP id D111C8FC13 for ; Fri, 12 Jun 2009 03:30:50 +0000 (UTC) (envelope-from noc@hdk5.net) Received: from mohawk7.intra.net (unknown [66.180.149.18]) by guam10.hdk5.net (Postfix) with ESMTP id DE64C5C5D for ; Thu, 11 Jun 2009 17:34:51 -1000 (HST) Message-ID: <4A31CBEA.3030502@hdk5.net> Date: Thu, 11 Jun 2009 17:30:50 -1000 From: Al Plant User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.11) Gecko/20071128 FreeBSD/i386 SeaMonkey/1.1.7 MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Xorg on FreeBSD 8* i386 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 03:30:51 -0000 Aloha, I have had problems trying to install the new Xorg on Amd64 box with Nvidia card and also old trio. I see many posts of issues on this on Questions List. Can I run the new Xorg on the Amd64 with nvidia or do I have to use i386? Also is it possible to use an older version of Xorg to make a card work that was working on the older version. And can the hal setup be eliminated if it causes the video to fail? I want to try the previously working box ( was Running FreeBSD 7* ) as a desktop with 8*. Thanks for any help. ~Al Plant - Honolulu, Hawaii - Phone: 808-284-2740 + http://hawaiidakine.com + http://freebsdinfo.org + + http://aloha50.net - Supporting - FreeBSD 6.* - 7.* - 8.* + < email: noc@hdk5.net > "All that's really worth doing is what we do for others."- Lewis Carrol From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 05:01:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5694106566B for ; Fri, 12 Jun 2009 05:01:08 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 58C1E8FC15 for ; Fri, 12 Jun 2009 05:01:08 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from kw.homeip.net (c80-217-74-54.bredband.comhem.se [80.217.74.54]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id n5C50xm6048745; Fri, 12 Jun 2009 07:01:04 +0200 (CEST) (envelope-from bernt@bah.homeip.net) Message-ID: <4A31E0F5.3080207@bah.homeip.net> Date: Fri, 12 Jun 2009 07:00:37 +0200 From: Bernt Hansson User-Agent: slrn/1.0.8 (FreeBSD) MIME-Version: 1.0 To: Fbsd1 , "freebsd-questions@freebsd.org" References: <4A3105B2.8070405@bah.homeip.net> <4A310668.7040502@bah.homeip.net> <4A31D105.5080306@a1poweruser.com> In-Reply-To: <4A31D105.5080306@a1poweruser.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: USB flash disc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 05:01:09 -0000 Fbsd1 said the following on 2009-06-12 05:52: > Bernt Hansson wrote: >> Bernt Hansson: >>> Hello list! >>> >>> >>> I've got an usb flash disc kingston datatraveler DT150 64GB. >>> That I put pcbsd on to try, and now I can't seem to get it of the stick. >>> >>> Tried fdisk -BI /dev/da0, dd if=/dev/zero of=/dev/da0 bs=1m and nothing >>> seems to work. >>> >>> Is there a solution to this? >>> >>> >>> dmesg: >>> >>> da0 at umass-sim0 bus 0 target 0 lun 0 >>> da0: Removable Direct Access SCSI-2 device >>> da0: 40.000MB/s transfers >>> da0: 65536MB (134217728 512 byte sectors: 255H 63S/T 8354C) >>> GEOM_LABEL: Label for provider da0 is iso9660/PCBSD. >>> >>> >>> Errors when trying fdisk: >>> >>> fdisk -BI /dev/da0 >>> ******* Working on device /dev/da0 ******* >>> fdisk: invalid fdisk partition table found >>> fdisk: Geom not found: "da0" >>> fdisk: Failed to write sector zero >>> >>> umass0: BBB reset failed, IOERROR >>> umass0: BBB bulk-in clear stall failed, IOERROR >>> umass0: BBB bulk-out clear stall failed, IOERROR >> >> And I also saw this error >> (da0:umass-sim0:0:0:0): Synchronize cache failed, status == 0x4, scsi >> status == 0x0 >> >>> Running: >>> >>> FreeBSD 7.2-STABLE #0: Tue Jun 9 17:04:38 CEST 2009 >>> :/usr/obj/usr/src/sys/GENERIC amd64 > > Try plugging it into a windows XP system and run format on it. Already done that. No go. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 05:33:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 93CE9106564A for ; Fri, 12 Jun 2009 05:33:17 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (macos.cmi.ua.ac.be [143.129.75.1]) by mx1.freebsd.org (Postfix) with ESMTP id 270968FC12 for ; Fri, 12 Jun 2009 05:33:16 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (localhost [127.0.0.1]) by macos.cmi.ua.ac.be (8.14.3/8.14.3) with ESMTP id n5C5XE0W082511; Fri, 12 Jun 2009 07:33:14 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) Received: from localhost (pdon@localhost) by macos.cmi.ua.ac.be (8.14.3/8.14.3/Submit) with ESMTP id n5C5XE5S082508; Fri, 12 Jun 2009 07:33:14 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) X-Authentication-Warning: macos.cmi.ua.ac.be: pdon owned process doing -bs Date: Fri, 12 Jun 2009 07:33:14 +0200 (CEST) From: Pieter Donche X-X-Sender: pdon@macos.cmi.ua.ac.be To: Mel Flynn In-Reply-To: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> Message-ID: References: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: py25-tkinter-2.5.4_3 / 2.6.2_3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 05:33:17 -0000 On Thu, 11 Jun 2009, Mel Flynn wrote: > On Wednesday 10 June 2009 23:21:58 Pieter Donche wrote: >> portupgrade advertizes since 3 days: >> ... >> py25-tkinter-2.5.4_3 < needs updating (index has 2.6.2_3) >> >> using portupgrade -a >> upgrades all other ports that need upgrading, but never py25-tkinter >> >> what's wrong here? > > I presume you didn't build the index yourself. Setting > PYTHON_DEFAULT_VERSION=python2.6 in /etc/make.conf will likely solve your > problem. > -- > Mel Should I then first install python26-2.6.2 from the ports? Shouldn't the portupgrade have somewhere asked to install a higher version of python (as it does for e.g. perl etc..) ?? I haven't met such an upgrade, my python is pkg_info | grep python python25-2.5.4_1 An interpreted object-oriented programming language From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 06:07:35 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACF8F1065670 for ; Fri, 12 Jun 2009 06:07:35 +0000 (UTC) (envelope-from z.szalbot@lcwords.com) Received: from relay.lc-words.com (relay.lc-words.com [62.121.130.110]) by mx1.freebsd.org (Postfix) with ESMTP id 609DD8FC19 for ; Fri, 12 Jun 2009 06:07:35 +0000 (UTC) (envelope-from z.szalbot@lcwords.com) Received: from localhost (localhost [127.0.0.1]) by relay.lc-words.com (Postfix) with ESMTP id 3EA51B808F for ; Fri, 12 Jun 2009 08:05:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lcwords.com; s=mainlcwords; t=1244786748; bh=wu158RgCZO+ze9BScOesylzPl5mpzmLuwct/Z8fsiUk=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=EjK4Q7zmps/cB/7LPEEHKBkVebAJVcNQnIzPIi+L0Y0TxwhwTUXAhGoAUdRNyfoHs e04noRe60Kf1+/LU0jYVv7oSm3LuPEM7a9CHgGxbvDkb6C6ebT1thq8WsW5jumQAvY gc9Uw+MuoAaaVPUCEP5h8/90ZEgx96QEeNDkcGdg= Received: from relay.lc-words.com ([127.0.0.1]) by localhost (relay.lc-words.com [127.0.0.1]) (amavisd-maia, port 10024) with ESMTP id 84620-01 for ; Fri, 12 Jun 2009 08:05:47 +0200 (CEST) Received: from [127.0.0.1] (aejo234.neoplus.adsl.tpnet.pl [79.186.248.234]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: z.szalbot@lcwords.com) by relay.lc-words.com (Postfix) with ESMTPSA id 96994B807E for ; Fri, 12 Jun 2009 08:05:47 +0200 (CEST) Message-ID: <4A31F0A2.3060704@lcwords.com> Date: Fri, 12 Jun 2009 08:07:30 +0200 From: Zbigniew Szalbot User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard Subject: ramdisk creation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 06:07:35 -0000 Hello, I would like to speed up amavisd operation by allowing it to use ramdisk, so I thought I would follow the advice given here: http://www.stahl.bau.tu-bs.de/~hildeb/postfix/amavisd_tmpfs.shtml However, I just want to make sure I get the procedure right. In my case, the temp folder is /var/amavisd/tmp So (1) I need to create an entry in /etc/fstab md /var/amavisd/tmp mfs rw,-s512m 2 0 (2) create the ramdisk mdmfs -s 512m md /var/amavids/tmp (3) mount the ramdisk mount /var/amavids/tmp Is the procedure right? I read mdmfs man and hope I am OK here. If it is OK, I guess I need to stop amavisd before creating ramdisk and mounting it, right? Thanks a lot for all feedback you can give me! -- Zbigniew Szalbot www.fairtrade.net.pl From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 08:14:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 070C2106566B for ; Fri, 12 Jun 2009 08:14:57 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (macos.cmi.ua.ac.be [143.129.75.1]) by mx1.freebsd.org (Postfix) with ESMTP id 7A8758FC0C for ; Fri, 12 Jun 2009 08:14:56 +0000 (UTC) (envelope-from Pieter.Donche@ua.ac.be) Received: from macos.cmi.ua.ac.be (localhost [127.0.0.1]) by macos.cmi.ua.ac.be (8.14.3/8.14.3) with ESMTP id n5C8EsQP044662 for ; Fri, 12 Jun 2009 10:14:54 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) Received: from localhost (pdon@localhost) by macos.cmi.ua.ac.be (8.14.3/8.14.3/Submit) with ESMTP id n5C8EsKi044659 for ; Fri, 12 Jun 2009 10:14:54 +0200 (CEST) (envelope-from Pieter.Donche@ua.ac.be) X-Authentication-Warning: macos.cmi.ua.ac.be: pdon owned process doing -bs Date: Fri, 12 Jun 2009 10:14:54 +0200 (CEST) From: Pieter Donche X-X-Sender: pdon@macos.cmi.ua.ac.be To: "mail.list freebsd-questions" In-Reply-To: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> Message-ID: References: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: python2.5->2.6 and mailman(python2.5) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Pieter Donche List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 08:14:57 -0000 I followed the /usr/ports/UPGRADING recommendations for upgrading from python 2.5 to python 2.6 # portupgrade -o lang/python26 lang/python25 and then # cd /usr/ports/lang/python && make upgrade-site-packages /usr/local/bin/python2.5 is now completely replaced by /usr/local/bin/python2.6 but my mailman software mailman-2.1.12 A mailing list manager (MLM) .. still wants it: The cron entry that runs every 5 minutes, sends an error message to root ... /usr/local/bin/python2.5: not found mailman software has /usr/local/bin/python2.5 hardcoded in many, many scripts, cron etc... How to solve this in the most clean manner? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 08:31:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D143D1065672 for ; Fri, 12 Jun 2009 08:31:57 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out3.uni-muenster.de (ZIVM-OUT3.UNI-MUENSTER.DE [128.176.192.18]) by mx1.freebsd.org (Postfix) with ESMTP id 652618FC15 for ; Fri, 12 Jun 2009 08:31:57 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) X-IronPort-AV: E=Sophos;i="4.42,208,1243807200"; d="scan'208";a="5760102" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay3.uni-muenster.de with ESMTP; 12 Jun 2009 10:28:43 +0200 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id 9B37D1B0763; Fri, 12 Jun 2009 10:28:43 +0200 (CEST) Date: Fri, 12 Jun 2009 10:28:43 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: `gpart show` and secondary GPT header X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 08:31:58 -0000 i have a question about gpart. when id do `gpart show ad0` i get the follow= ing output: =3D> 34 488394988 ad0 GPT (233G) 34 20971486 1 freebsd-swap (10G) 20971520 467423502 2 freebsd-ufs (223G) which is just what i want. however i'm a bit curious about the GPT header= =2E only the primary header from 0 - 33 is being shown. what about the secondary/backup GPT header. is it present and just now shown by gpart or doesn't it exist at all? because in 7-STABLE e.g. `pt show ad0` also displays the secondary GPT head= er at the end of the disk. cheers. =2E..oh...and i'm running HEAD (r193846M). ;) From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 08:50:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FEE01065670 for ; Fri, 12 Jun 2009 08:50:27 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out3.uni-muenster.de (ZIVM-OUT3.UNI-MUENSTER.DE [128.176.192.18]) by mx1.freebsd.org (Postfix) with ESMTP id B860A8FC13 for ; Fri, 12 Jun 2009 08:50:26 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) X-IronPort-AV: E=Sophos;i="4.42,208,1243807200"; d="scan'208";a="5759486" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay3.uni-muenster.de with ESMTP; 12 Jun 2009 10:21:12 +0200 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id 79C5D1B0763; Fri, 12 Jun 2009 10:21:12 +0200 (CEST) Date: Fri, 12 Jun 2009 10:21:11 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: Problem with burncd X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 08:50:27 -0000 the "burncd: ioctl(CDRIOCFIXATE); Input/output error." is being caused by a bug in ata-queue.c. the fix is in HEAD. here's the PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=95979 with a patch. cheers. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 10:56:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5A4B1106566C for ; Fri, 12 Jun 2009 10:56:26 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx01.qsc.de (mx01.qsc.de [213.148.129.14]) by mx1.freebsd.org (Postfix) with ESMTP id 163148FC14 for ; Fri, 12 Jun 2009 10:56:25 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx01.qsc.de (Postfix) with ESMTP id BA0333D1E3; Fri, 12 Jun 2009 12:56:23 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CAsJMR001468; Fri, 12 Jun 2009 12:54:19 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 12:54:19 +0200 From: Polytropon To: Bernt Hansson Message-Id: <20090612125419.e418347b.freebsd@edvax.de> In-Reply-To: <4A31C167.9040400@bah.homeip.net> References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 10:56:26 -0000 On Fri, 12 Jun 2009 04:45:59 +0200, Bernt Hansson wrote: > Mel Flynn said the following on 2009-06-12 01:23: > >> FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 > >> root@fqdn:/usr/obj/usr/src/sys/GENERIC > > ^^^^^^^ > > Did you edit GENERIC > > Yes. Added sound and snd_hda Polite note: This is NOT the way to create a custom kernel. The handbook mentions that it's advised to create a copy of GENERIC and work with that. It's even possible to create a config file from scratch, including material from LINT and NOTES, as well as from GENERIC. In order to avoid problems, you should follow this advice given in the handbook. > > or did you forget to set KERNCONF during build/installkernel? > > No. cd /usr/src > make buildkernel KERNCONF=GENERIC > make installkernel KERNCONF=GENERIC > reboot > > is what I did. No snd_hda It looks understandable (allthough not mentioned in the handbook). Just to be sure, try the recommended approach. If you're not using KERNCONF, GENERIC will be selected automatically. # cd /usr/src/sys/i386/conf # cp GENERIC MYKERNEL (or use any other descriptive name instead of MYKERNEL). edit MYKERNEL and add device sound device snd_hda # cd /usr/src # make buildkernel KERNCONF=MYKERNEL # make installkernel KERNCONF=MYKERNEL # reboot Check /etc/make.conf and /etc/src.conf for any strange values that may be a reason for our strange observations. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 10:41:04 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09C731065673; Fri, 12 Jun 2009 10:41:04 +0000 (UTC) (envelope-from millenia2000@hotmail.com) Received: from bay0-omc3-s36.bay0.hotmail.com (bay0-omc3-s36.bay0.hotmail.com [65.54.246.236]) by mx1.freebsd.org (Postfix) with ESMTP id DE1178FC0A; Fri, 12 Jun 2009 10:41:03 +0000 (UTC) (envelope-from millenia2000@hotmail.com) Received: from BAY126-DS3 ([65.55.131.30]) by bay0-omc3-s36.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 03:41:03 -0700 X-Originating-IP: [68.48.96.222] X-Originating-Email: [millenia2000@hotmail.com] Message-ID: From: "Sean Cavanaugh" To: "Derrick Ryalls" , "Wojciech Puchar" References: <505626234.20090611112828@sng.by><991123400906110540u6576aebaif6d1d18815f2d496@mail.gmail.com> In-Reply-To: Date: Fri, 12 Jun 2009 06:40:30 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="utf-8"; reply-type=original Content-Transfer-Encoding: 8bit X-Priority: 3 X-MSMail-Priority: Normal Importance: Normal X-Mailer: Microsoft Windows Live Mail 14.0.8064.206 X-MimeOLE: Produced By Microsoft MimeOLE V14.0.8064.206 X-OriginalArrivalTime: 12 Jun 2009 10:41:03.0422 (UTC) FILETIME=[488F2DE0:01C9EB4A] X-Mailman-Approved-At: Fri, 12 Jun 2009 11:34:07 +0000 Cc: Ivailo Tanusheff , Anton , =?utf-8?B?T2RoaWFtYm8g44Ov44K344Oz44OI44Oz?= , freebsd-questions@freebsd.org, owner-freebsd-questions@freebsd.org Subject: Re: FreeBSD as a router X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 10:41:04 -0000 I prefer pfSense. it started as a fork of M0n0wall and has since incorporated a LOT more features. it uses pf as its filter base and is fully expandable using plugins -------------------------------------------------- From: "Derrick Ryalls" Sent: Thursday, June 11, 2009 10:33 AM To: "Wojciech Puchar" Cc: ; "Ivailo Tanusheff" ; "Odhiambo ワシントン" ; ; "Anton" Subject: Re: FreeBSD as a router > You might also check out monowall. It is a stripped down version of > FreeBSD > that can run off a small flash card and has a web interface. > > On Jun 11, 2009 6:05 AM, "Wojciech Puchar" > > wrote: > >>> powerful. > > > > Hmm, PF would be better (not IPF) but I hear ipfw ha > smore features ..... > basicly - if you think ipfw can't do something - read manual again ;) > > exaggerated, but not very much... > > _______________________________________________ > freebsd-questions@freebsd.org mailing list http://l... > _______________________________________________ > 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 12 11:43:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62E12106566B for ; Fri, 12 Jun 2009 11:43:56 +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 371038FC15 for ; Fri, 12 Jun 2009 11:43:56 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 12738 invoked from network); 12 Jun 2009 11:43:55 -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 ; 12 Jun 2009 11:43:55 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id E914B50825; Fri, 12 Jun 2009 07:43:49 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 584831CC69; Fri, 12 Jun 2009 07:43:49 -0400 (EDT) To: Pieter Donche References: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> From: Lowell Gilbert Date: Fri, 12 Jun 2009 07:43:49 -0400 In-Reply-To: (Pieter Donche's message of "Fri\, 12 Jun 2009 10\:14\:54 +0200 \(CEST\)") Message-ID: <44y6rx7k3u.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "mail.list freebsd-questions" Subject: Re: python2.5->2.6 and mailman(python2.5) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 11:43:56 -0000 Pieter Donche writes: > I followed the /usr/ports/UPGRADING recommendations > for upgrading from python 2.5 to python 2.6 > > # portupgrade -o lang/python26 lang/python25 > and then > # cd /usr/ports/lang/python && make upgrade-site-packages > > /usr/local/bin/python2.5 is now completely replaced by > /usr/local/bin/python2.6 but my mailman software > mailman-2.1.12 A mailing list manager (MLM) .. > still wants it: > > The cron entry that runs every 5 minutes, sends an error message to root ... > /usr/local/bin/python2.5: not found > > mailman software has /usr/local/bin/python2.5 hardcoded in many, many > scripts, cron etc... > > How to solve this in the most clean manner? I just shut mailman down and did a full rebuild of it ("portupgrade -f mailman"). -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 11:56:24 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1610F106564A for ; Fri, 12 Jun 2009 11:56:23 +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 A8B7C8FC12 for ; Fri, 12 Jun 2009 11:56:23 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 18431 invoked from network); 12 Jun 2009 11:56:23 -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 ; 12 Jun 2009 11:56:22 -0000 Received: from lowell-desk.lan (lowell-desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id A283350825; Fri, 12 Jun 2009 07:56:16 -0400 (EDT) Received: by lowell-desk.lan (Postfix, from userid 1147) id 47C6E1CC69; Fri, 12 Jun 2009 07:56:16 -0400 (EDT) To: Pieter Donche , "mail.list freebsd-questions" References: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> <44y6rx7k3u.fsf@lowell-desk.lan> From: Lowell Gilbert Date: Fri, 12 Jun 2009 07:56:16 -0400 In-Reply-To: <44y6rx7k3u.fsf@lowell-desk.lan> (Lowell Gilbert's message of "Fri\, 12 Jun 2009 07\:43\:49 -0400") Message-ID: <44tz2l7jj3.fsf@lowell-desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Subject: Re: python2.5->2.6 and mailman(python2.5) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 11:56:24 -0000 Lowell Gilbert writes: > I just shut mailman down and did a full rebuild of it > ("portupgrade -f mailman"). and submitted a PR to add it to the upgrade-site-packages target. -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 11:58:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92ABA106566B for ; Fri, 12 Jun 2009 11:58:37 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id A5DEA8FC15 for ; Fri, 12 Jun 2009 11:58:36 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5CBv1Oj001534; Fri, 12 Jun 2009 13:57:01 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5CBv1FR001531; Fri, 12 Jun 2009 13:57:01 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 12 Jun 2009 13:57:01 +0200 (CEST) From: Wojciech Puchar To: Zbigniew Szalbot In-Reply-To: <4A31F0A2.3060704@lcwords.com> Message-ID: References: <4A31F0A2.3060704@lcwords.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: ramdisk creation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 11:58:37 -0000 > > So (1) I need to create an entry in /etc/fstab > md /var/amavisd/tmp mfs rw,-s512m 2 0 If you have FreeBSD 7.* use tmpfs filesystem tmpfs /var/amavisd/tmp tmpfs rw,size=536870912 0 0 It's filesystem designed for this. Works well. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 12:06:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18A6510656A7 for ; Fri, 12 Jun 2009 12:06:19 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) Received: from f.mail.ru.ac.za (f.mail.ru.ac.za [IPv6:2001:4200:1010::25:6]) by mx1.freebsd.org (Postfix) with ESMTP id 493028FC13 for ; Fri, 12 Jun 2009 12:06:18 +0000 (UTC) (envelope-from j.mckeown@ru.ac.za) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=ru-msa; d=ru.ac.za; h=Received:From:Organization:To:Subject:Date:User-Agent:References:In-Reply-To:X-Face:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-Disposition:Message-Id:X-Virus-Scanned:X-Authenticated-User; b=fcWIeKfPAGhS4vN3kH5Ac7dnWRgX7zqwHolGzBsCA9sLgRIDXrHQgRihYnFKAoiHHPyWe2eggBhrexcUcdr9iZle9Z9NoklfG3DAk42aHdiWFy6nwEqpzpXbaHMAphdE; Received: from vorkosigan.ru.ac.za ([2001:4200:1010:1058:219:d1ff:fe9f:a932]:54495) by f.mail.ru.ac.za with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MF5WS-0000VD-9V for freebsd-questions@freebsd.org; Fri, 12 Jun 2009 14:06:16 +0200 From: Jonathan McKeown Organization: Rhodes University To: freebsd-questions@freebsd.org Date: Fri, 12 Jun 2009 14:06:15 +0200 User-Agent: KMail/1.9.10 References: <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> In-Reply-To: <20090612125419.e418347b.freebsd@edvax.de> X-Face: $@VrUx^RHy/}yu]jKf/<4T%/d|F+$j-Ol2"2J$q+%OK1]&/G_S9(=?utf-8?q?HkaQ*=60!=3FYOK=3FY!=27M=60C=0A=09aP=5C9nVPF8Q=7DCilHH8l=3B=7E!4?= =?utf-8?q?2HK6=273lg4J=7Daz?=@1Dqqh:J]M^"YPn*2IWrZON$1+G?oX3@ =?utf-8?q?k=230=0A=0954XDRg=3DYn=5FF-etwot4U=24b?=dTS{i X-Virus-Scanned: f.mail.ru.ac.za (2001:4200:1010::25:6) X-Authenticated-User: s0900137 from vorkosigan.ru.ac.za (2001:4200:1010:1058:219:d1ff:fe9f:a932) using auth_plaintext Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 12:06:19 -0000 On Friday 12 June 2009 12:54:19 Polytropon wrote: > On Fri, 12 Jun 2009 04:45:59 +0200, Bernt Hansson wrote: > > Mel Flynn said the following on 2009-06-12 01:23: > > >> FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 > > >> root@fqdn:/usr/obj/usr/src/sys/GENERIC > > > > > > ^^^^^^^ > > > Did you edit GENERIC > > > > Yes. Added sound and snd_hda > > Polite note: This is NOT the way to create a custom kernel. The > handbook mentions that it's advised to create a copy of GENERIC > and work with that. Just to emphasise this point: look at the other kernel configs supplied with source. They tend to include GENERIC, and then have a small list of changed options. Messing about with GENERIC is not a good idea. Jonathan From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 12:28:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F16D1106566B for ; Fri, 12 Jun 2009 12:28:02 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s34.blu0.hotmail.com (blu0-omc4-s34.blu0.hotmail.com [65.55.111.173]) by mx1.freebsd.org (Postfix) with ESMTP id AD9FD8FC1A for ; Fri, 12 Jun 2009 12:28:02 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP60 ([65.55.111.135]) by blu0-omc4-s34.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 05:28:02 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP60.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 05:28:02 -0700 Date: Fri, 12 Jun 2009 08:27:54 -0400 From: Carmel To: FreeBSD Question Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 12 Jun 2009 12:28:02.0199 (UTC) FILETIME=[3A72D270:01C9EB59] Subject: XFCE4 and screen resolution X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: FreeBSD Question List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 12:28:03 -0000 I just installed XFCE4 on a fresh FreeBSD-7.2 installation. It works fine except that I cannot get the screen resolution to stay set after I exit the program. The default is: 1792x1144 @ 60 I set it to: 1024x768 @ 85 Everything works fine until I shutdown the program. When I restart it, it reverts to the default setting. I have 'save session' set to on. I tried a trick I found while Googling to place 'xrandr - 1024x768 -r 85' in the '.xinitrc' file; however, that did not work either. Obviously I am doing something wrong here. Should I post this on the XFCE forum or does someone here have a solution. -- Carmel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 12:40:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89C6B1065672 for ; Fri, 12 Jun 2009 12:40:57 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 494738FC1C for ; Fri, 12 Jun 2009 12:40:57 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id BB36119B7E60; Fri, 12 Jun 2009 14:40:55 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CCenq8002168; Fri, 12 Jun 2009 14:40:49 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 14:40:49 +0200 From: Polytropon To: FreeBSD Question Message-Id: <20090612144049.c74ec6f9.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Carmel Subject: Re: XFCE4 and screen resolution X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 12:40:58 -0000 On Fri, 12 Jun 2009 08:27:54 -0400, Carmel wrote: > I tried a trick I found while Googling to place 'xrandr - 1024x768 -r > 85' in the '.xinitrc' file; however, that did not work either. Maybe your .xinitrc isn't executed? In mine, I have xrandr --fb 1400x1050 xrandr --size 1400x1050 to override non-functioning X autodetect and non-working xorg.conf settings. > Obviously I am doing something wrong here. Should I post this on the > XFCE forum or does someone here have a solution. Do you have the same problems with other WM / DE? -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 12:44:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D9B35106566C for ; Fri, 12 Jun 2009 12:44:56 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D46EE8FC1D for ; Fri, 12 Jun 2009 12:44:55 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3) with ESMTP id n5CChlUm001575; Fri, 12 Jun 2009 14:43:47 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.3/8.14.3/Submit) with ESMTP id n5CChk0H001572; Fri, 12 Jun 2009 14:43:46 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Fri, 12 Jun 2009 14:43:46 +0200 (CEST) From: Wojciech Puchar To: Polytropon In-Reply-To: <20090612125419.e418347b.freebsd@edvax.de> Message-ID: References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 12:44:57 -0000 > # cd /usr/src/sys/i386/conf > # cp GENERIC MYKERNEL > (or use any other descriptive name instead of MYKERNEL). > edit MYKERNEL and add > device sound > device snd_hda > # cd /usr/src > # make buildkernel KERNCONF=MYKERNEL > # make installkernel KERNCONF=MYKERNEL > # reboot why not: edit MYKERNEL config MYKERNEL cd ../compile/MYKERNEL make depend make make install ? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 12:54:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D506106564A for ; Fri, 12 Jun 2009 12:54:34 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id EB62A8FC1B for ; Fri, 12 Jun 2009 12:54:33 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id 058F116C0177; Fri, 12 Jun 2009 14:54:31 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CCsQ8A002206; Fri, 12 Jun 2009 14:54:26 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 14:54:26 +0200 From: Polytropon To: Wojciech Puchar Message-Id: <20090612145426.6605d988.freebsd@edvax.de> In-Reply-To: References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 12:54:34 -0000 On Fri, 12 Jun 2009 14:43:46 +0200 (CEST), Wojciech Puchar wrote: > why not: > > > edit MYKERNEL > config MYKERNEL > cd ../compile/MYKERNEL > make depend > make > make install > > ? Yes, why not? It still works. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:15:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CB88106566B for ; Fri, 12 Jun 2009 13:15:40 +0000 (UTC) (envelope-from z.szalbot@lcwords.com) Received: from relay.lc-words.com (relay.lc-words.com [62.121.130.110]) by mx1.freebsd.org (Postfix) with ESMTP id D0D6A8FC08 for ; Fri, 12 Jun 2009 13:15:39 +0000 (UTC) (envelope-from z.szalbot@lcwords.com) Received: from localhost (localhost [127.0.0.1]) by relay.lc-words.com (Postfix) with ESMTP id 1D70CB803F; Fri, 12 Jun 2009 15:13:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lcwords.com; s=mainlcwords; t=1244812434; bh=0CMSnYaBl1uqNSpXENX6vr+BI81P/3QXLw0GkFj/zPM=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=JrNdx7NliaucZkuMT+5GNW2g+7X1EEBLq0rMj7JqJENNwwYV/Q7XGEdpI0ImbHBlp P1geLg0oZv0X2U57djeMDXJlc88XLhAZsKVOU+e1Q2ry+2zrgDhUF/i7X0l9EgqO0l wn3rfbdWj8n6gdu0kFVmdsTxSuaxbohz8ytEMEsk= Received: from relay.lc-words.com ([127.0.0.1]) by localhost (relay.lc-words.com [127.0.0.1]) (amavisd-maia, port 10024) with ESMTP id 54183-03; Fri, 12 Jun 2009 15:13:53 +0200 (CEST) Received: from [127.0.0.1] (aejo234.neoplus.adsl.tpnet.pl [79.186.248.234]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: z.szalbot@lcwords.com) by relay.lc-words.com (Postfix) with ESMTPSA id 8FA9DB803D; Fri, 12 Jun 2009 15:13:53 +0200 (CEST) Message-ID: <4A3254F7.9060908@lcwords.com> Date: Fri, 12 Jun 2009 15:15:35 +0200 From: Zbigniew Szalbot User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Wojciech Puchar References: <4A31F0A2.3060704@lcwords.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Maia Mailguard Cc: freebsd-questions@freebsd.org Subject: Re: ramdisk creation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:15:41 -0000 Wojciech Puchar pisze: >> >> So (1) I need to create an entry in /etc/fstab >> md /var/amavisd/tmp mfs rw,-s512m 2 0 > > If you have FreeBSD 7.* use tmpfs filesystem > > tmpfs /var/amavisd/tmp tmpfs rw,size=536870912 0 0 > > It's filesystem designed for this. Works well. Thanks Wojtek - I appreciate it. I do have 7.2 so I can use it but having already added md to the system, I wonder if there is any advantage of replacing it with tmpfs. If there is, what is the best way to change it? Would I just unmount /var/amavisd/tmp and then proceed with the tmpfs thing? Thank you! Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:29:59 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 467641065676 for ; Fri, 12 Jun 2009 13:29:59 +0000 (UTC) (envelope-from pettefar@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id C76B68FC15 for ; Fri, 12 Jun 2009 13:29:58 +0000 (UTC) (envelope-from pettefar@gmail.com) Received: by ewy8 with SMTP id 8so2473194ewy.43 for ; Fri, 12 Jun 2009 06:29:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:from:to :content-type:content-transfer-encoding:mime-version:subject:date :x-mailer; bh=pWzzov8Cy7xKXbjsqC/ga8Zb+b4zv1ckrDwPYwTx/Vw=; b=UxSZy2nNl54whCXyDd4sr7GfRrFyyRPvr3RfkJUFxr7SIVC9z4CCmG9h5YMAk5OW2E k/i3jCtmDUqGGL36zpiELlSrhk8t3u5V7rb+Qe/ebK2fZoB+T81gGK29nzfAsQaFGcfg r6jHwtPWM53C6GH54JJeXjLkaMW5rGGtcM9LU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:from:to:content-type:content-transfer-encoding :mime-version:subject:date:x-mailer; b=kpEeziNAqOIT+xwh/Mo8FymsMryTHmqaPJ2lmHPr+7FZMFscjuYxGPSLBBClW2RDo5 o8McKtNT8cvRvWA+JuR03zYNbwdelCJj1ntd+MvGC4tCgZdvh2GlXjCT/gbY8kjmuZN5 CLmUOaAOBEz5yeOC39SqFmq/TIQXb3LP4VkX8= Received: by 10.210.119.5 with SMTP id r5mr2025979ebc.89.1244812173612; Fri, 12 Jun 2009 06:09:33 -0700 (PDT) Received: from ?10.10.19.139? (host-213-189-162-182.brutele.be [213.189.162.182]) by mx.google.com with ESMTPS id 10sm267608eyd.52.2009.06.12.06.09.26 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 12 Jun 2009 06:09:32 -0700 (PDT) Sender: Nick Pettefar Message-Id: From: Nick@Pettefar.com To: questions@FreeBSD.org Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Fri, 12 Jun 2009 15:09:04 +0200 X-Mailer: Apple Mail (2.935.3) Cc: Subject: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:29:59 -0000 In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html It says: "If the X server has been configured and a Default Desktop chosen, it can be started by typing startx at the command line." but nowhere in the manual or the installation program is there any information or options on X server configuration or choosing a Default Desktop! Help! Nick From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:43:02 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A2B7106566C for ; Fri, 12 Jun 2009 13:43:02 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from blu0-omc4-s27.blu0.hotmail.com (blu0-omc4-s27.blu0.hotmail.com [65.55.111.166]) by mx1.freebsd.org (Postfix) with ESMTP id E63C58FC15 for ; Fri, 12 Jun 2009 13:43:01 +0000 (UTC) (envelope-from carmel_ny@hotmail.com) Received: from BLU0-SMTP53 ([65.55.111.136]) by blu0-omc4-s27.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 06:43:01 -0700 X-Originating-IP: [76.23.177.172] X-Originating-Email: [carmel_ny@hotmail.com] Message-ID: Received: from scorpio ([76.23.177.172]) by BLU0-SMTP53.blu0.hotmail.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 06:43:01 -0700 Date: Fri, 12 Jun 2009 09:42:52 -0400 From: Carmel To: freebsd-questions@freebsd.org In-Reply-To: <20090612144049.c74ec6f9.freebsd@edvax.de> References: <20090612144049.c74ec6f9.freebsd@edvax.de> Organization: seibercom.net X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd6.4) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 12 Jun 2009 13:43:01.0280 (UTC) FILETIME=[B41C1A00:01C9EB63] Subject: Re: XFCE4 and screen resolution 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, 12 Jun 2009 13:43:02 -0000 On Fri, 12 Jun 2009 14:40:49 +0200 Polytropon wrote: >On Fri, 12 Jun 2009 08:27:54 -0400, Carmel >wrote: >> I tried a trick I found while Googling to place 'xrandr - 1024x768 -r >> 85' in the '.xinitrc' file; however, that did not work either. > >Maybe your .xinitrc isn't executed? In mine, I have > > xrandr --fb 1400x1050 > xrandr --size 1400x1050 > >to override non-functioning X autodetect and non-working xorg.conf >settings. > > > >> Obviously I am doing something wrong here. Should I post this on the >> XFCE forum or does someone here have a solution. > >Do you have the same problems with other WM / DE? Evidently, it is not being executed by startxfce4. If I run the command once XFCE4 is started, it works. -- Carmel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:44:24 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D66881065693 for ; Fri, 12 Jun 2009 13:44:24 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id ED5748FC1A for ; Fri, 12 Jun 2009 13:44:23 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by fxm20 with SMTP id 20so2017557fxm.43 for ; Fri, 12 Jun 2009 06:44:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=XKQXv5ZBpafvYoV3j5FFBI9Rx7IxAOYmfJCpQE1KGaY=; b=Yo7Yg7C6bUyO/4rnu9BDPeZNvcVVtCUUyglcK/t8VV+WWAomPrg9WzUFUkEMjkaKOh v6Eie/9KmMYWj3LGb+RcOD6oa/IfzdcCg7IyKcGREzA40876bwM8/aeKGmtPTg/3YCzO s/sBUKCdyb4Bs9ukM74bo5Nt3WRx9kZ3dy3Vg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=swQb7yO2JuQ7uT2DHIkeUA/ZWRLCjxC0m7KPyE8woXEUH7LaOK7mHfX39TNJpGp07r ahgR8Ix11in1TI1hcQKR2ZwETvOFHGYj0eXENTJnGdOZlGN6dxkFQyux5ivLg5xPOIZ1 hptiBrZMvMLO4A54wEUBA112oYrMiuE8li75c= MIME-Version: 1.0 Received: by 10.204.52.197 with SMTP id j5mr3613045bkg.157.1244814262870; Fri, 12 Jun 2009 06:44:22 -0700 (PDT) In-Reply-To: References: Date: Fri, 12 Jun 2009 09:44:22 -0400 Message-ID: <4ad871310906120644w218610ccxa6864a5f1b430dd2@mail.gmail.com> From: Glen Barber To: Nick@pettefar.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:44:25 -0000 Hi, Nick On Fri, Jun 12, 2009 at 9:09 AM, wrote: > In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html > It says: "If the X server has been configured and a Default Desktop chose= n, > it can be started by typing startx at the command line." but nowhere in t= he > manual or the installation program is there any information or options on= X > server configuration or choosing a Default Desktop! =A0Help! > You can set a default desktop by creating $HOME/.xinitrc containing: /usr/local/bin/your_desktop_environment Unless someone beats me to it, I'll take a look at this over the weekend and submit a patch for the handbook. --=20 Glen Barber From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:45:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84040106568A for ; Fri, 12 Jun 2009 13:45:16 +0000 (UTC) (envelope-from scjamorim@bsd.com.br) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 1A3F08FC1C for ; Fri, 12 Jun 2009 13:45:15 +0000 (UTC) (envelope-from scjamorim@bsd.com.br) Received: by ewy8 with SMTP id 8so2483913ewy.43 for ; Fri, 12 Jun 2009 06:45:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.210.69.13 with SMTP id r13mr4406189eba.2.1244812630425; Fri, 12 Jun 2009 06:17:10 -0700 (PDT) In-Reply-To: References: Date: Fri, 12 Jun 2009 10:17:10 -0300 Message-ID: <5859850b0906120617g53364cb5r4b26619c001c5fd7@mail.gmail.com> From: =?ISO-8859-1?Q?Sylvio_C=E9sar_Teixeira_Amorim?= To: dave.mehler@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Authenticating users via openldap on 7.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, 12 Jun 2009 13:45:17 -0000 Hi, http://www.opennet.ru/base/net/samba_pdc_freebsd.txt.html 2009/6/11 Dave > Hello, > I had user authentication going about a year and some months back on > a 6.2 box. Unfortunately that box is no longer under my control. I'm trying > to duplicate what was done under 6.2. If anyone has this going can you > write > me offlist? > Thanks. > Dave. > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > -- -=-=-=-=-=-=-=- Live free or die - UNIX* -=-=-=-=-=-=-= From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:46:23 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A631310657DA for ; Fri, 12 Jun 2009 13:46:23 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 662E68FC14 for ; Fri, 12 Jun 2009 13:46:23 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id 1D4B116C0427; Fri, 12 Jun 2009 15:46:21 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CDjGpO002401; Fri, 12 Jun 2009 15:45:16 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 15:45:16 +0200 From: Polytropon To: Nick@Pettefar.com Message-Id: <20090612154516.798cc602.freebsd@edvax.de> In-Reply-To: References: Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 13:46:24 -0000 On Fri, 12 Jun 2009 15:09:04 +0200, Nick@Pettefar.com wrote: > In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html > It says: "If the X server has been configured and a Default Desktop > chosen, it can be started by typing startx at the command line." but > nowhere in the manual or the installation program is there any > information or options on X server configuration or choosing a Default > Desktop! Help! Today's X configures automatically. Otherwise, refer to the handbook's section about configuring X. For selecting a default desktop, refer to KDE and Gnome on FreeBSD which you'll find in the handbook, too. Of course you can use XFCE, Fluxbox, FVWM, WindowMaker, Metacity, Enlightenment or any other DE / WM you can think of. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:48:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E14DA10656B4 for ; Fri, 12 Jun 2009 13:48:59 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 520B68FC16 for ; Fri, 12 Jun 2009 13:48:59 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 46949 invoked by uid 89); 12 Jun 2009 13:50:47 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 12 Jun 2009 13:50:47 -0000 Message-ID: <4A325CD8.6020704@ibctech.ca> Date: Fri, 12 Jun 2009 09:49:12 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org Questions -" References: <4A304AD3.10109@ibctech.ca> In-Reply-To: <4A304AD3.10109@ibctech.ca> X-Enigmail-Version: 0.95.7 Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms000104070509060807040003" Subject: Re: Automagic revision numbers with Perl Modules and SVN X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:49:00 -0000 This is a cryptographically signed message in MIME format. --------------ms000104070509060807040003 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Steve Bertrand wrote: > Hey all, > > I've been migrating all of my projects from CVS to SVN (starting over > from the beginning). > > All of the projects in question are Perl modules. [..snip..] > Any guidance to fix the version numbering (especially to fix the FreeBSD > package db) to make it automagic again, is very welcome: Well, it took longer than I had hoped/expected, but I've finally got my version automatic again. For the archives: # cd project_dir # svn propset svn:keywords "Revision" ...and: %svn diff -r56 EagleUser.pm ... -$VERSION = sprintf "%d.%03d", q$Revision: 1.9 $ =~ /: (\d+)\.(\d+)/; +$VERSION = sprintf "%d", q$Revision$ =~ /(\d+)/; It took me quite a while to get that change right. Many of the examples on the 'net did not have the sprintf(), which resulted in $VERSION == 1 no matter what. Once I did the next commit, the current revision was inserted into 'Revision'. ...now, my desired result: %pkg_version -v | grep Eagle bsdpan-EagleUser-73 Cheers and thanks! Steve --------------ms000104070509060807040003 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 MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIII/zCC AtowggJDoAMCAQICEEs5xg/J3t77QWJ4SatV1HcwDQYJKoZIhvcNAQEFBQAwYjELMAkGA1UE BhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMT I1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBMB4XDTA5MDUwNzIzMTYxMFoX DTEwMDUwNzIzMTYxMFowQjEfMB0GA1UEAxMWVGhhd3RlIEZyZWVtYWlsIE1lbWJlcjEfMB0G CSqGSIb3DQEJARYQc3RldmVAaWJjdGVjaC5jYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC AQoCggEBAJSTRAjP1RVa87/mnZn+PBTbENgyhhBJ4rWApmaNcthzRdk2DB/49KrXx3EQP60w Lj4KU0DFkiGNVj9BnVxRAx/WDXKxGC3uGGEG6gjyWv8KFMWMsH9mL7y7uNow1HueT6pZUf9o yY8Ewd+01QpGi7FfXOae7lGHhbEwnEJGwz08ytRfLmH0KtEzlZanZZhwDGX5s1kIHnyxdACh 3byXY6Z2bOrx0rcrQHCnHJppxddR60F7igjaMuBFstE51h9XTgXDNKJbglqTug5ghGihNuP6 VsBN7ue62y96UGIE22TvKEcAQ665vQGjHqZeSzZYy+hWNOa27pWFmhlqFjx0x8MCAwEAAaMt MCswGwYDVR0RBBQwEoEQc3RldmVAaWJjdGVjaC5jYTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3 DQEBBQUAA4GBAMOmjxjp2Xzk6ZHLwTgFDzVhm98RjRT3UXotKjNIR7SgwfWF5wkJrx4I+dXu ui5ztMEq4bTTRgJ344MqE6uZiZlg+tBIFHZGCJfKdzsX4QuV2jmw0sR5dMaYxG6tlDB0YUMv gTqzV7ZDpiusTMOZe9pP1PdxFhOcIJXtMQDj5LhuMIIC2jCCAkOgAwIBAgIQSznGD8ne3vtB YnhJq1XUdzANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3Rl IENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVt YWlsIElzc3VpbmcgQ0EwHhcNMDkwNTA3MjMxNjEwWhcNMTAwNTA3MjMxNjEwWjBCMR8wHQYD VQQDExZUaGF3dGUgRnJlZW1haWwgTWVtYmVyMR8wHQYJKoZIhvcNAQkBFhBzdGV2ZUBpYmN0 ZWNoLmNhMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlJNECM/VFVrzv+admf48 FNsQ2DKGEEnitYCmZo1y2HNF2TYMH/j0qtfHcRA/rTAuPgpTQMWSIY1WP0GdXFEDH9YNcrEY Le4YYQbqCPJa/woUxYywf2YvvLu42jDUe55PqllR/2jJjwTB37TVCkaLsV9c5p7uUYeFsTCc QkbDPTzK1F8uYfQq0TOVlqdlmHAMZfmzWQgefLF0AKHdvJdjpnZs6vHStytAcKccmmnF11Hr QXuKCNoy4EWy0TnWH1dOBcM0oluCWpO6DmCEaKE24/pWwE3u57rbL3pQYgTbZO8oRwBDrrm9 AaMepl5LNljL6FY05rbulYWaGWoWPHTHwwIDAQABoy0wKzAbBgNVHREEFDASgRBzdGV2ZUBp YmN0ZWNoLmNhMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQEFBQADgYEAw6aPGOnZfOTpkcvB OAUPNWGb3xGNFPdRei0qM0hHtKDB9YXnCQmvHgj51e66LnO0wSrhtNNGAnfjgyoTq5mJmWD6 0EgUdkYIl8p3OxfhC5XaObDSxHl0xpjEbq2UMHRhQy+BOrNXtkOmK6xMw5l72k/U93EWE5wg le0xAOPkuG4wggM/MIICqKADAgECAgENMA0GCSqGSIb3DQEBBQUAMIHRMQswCQYDVQQGEwJa QTEVMBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoT EVRoYXd0ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERp dmlzaW9uMSQwIgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG 9w0BCQEWHHBlcnNvbmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDMwNzE3MDAwMDAwWhcN MTMwNzE2MjM1OTU5WjBiMQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRp bmcgKFB0eSkgTHRkLjEsMCoGA1UEAxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3Vp bmcgQ0EwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMSmPFVzVftOucqZWh5owHUEcJ3f 6f+jHuy9zfVb8hp2vX8MOmHyv1HOAdTlUAow1wJjWiyJFXCO3cnwK4Vaqj9xVsuvPAsH5/Ef kTYkKhPPK9Xzgnc9A74r/rsYPge/QIACZNenprufZdHFKlSFD0gEf6e20TxhBEAeZBlyYLf7 AgMBAAGjgZQwgZEwEgYDVR0TAQH/BAgwBgEB/wIBADBDBgNVHR8EPDA6MDigNqA0hjJodHRw Oi8vY3JsLnRoYXd0ZS5jb20vVGhhd3RlUGVyc29uYWxGcmVlbWFpbENBLmNybDALBgNVHQ8E BAMCAQYwKQYDVR0RBCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDItMTM4MA0GCSqG SIb3DQEBBQUAA4GBAEiM0VCD6gsuzA2jZqxnD3+vrL7CF6FDlpSdf0whuPg2H6otnzYvwPQc UCCTcDz9reFhYsPZOhl+hLGZGwDFGguCdJ4lUJRix9sncVcljd2pnDmOjCBPZV+V2vf3h9bG CE6u9uo05RAaWzVNd+NWIXiC3CEZNd4ksdMdRv9dX2VPMYIDZDCCA2ACAQEwdjBiMQswCQYD VQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkgTHRkLjEsMCoGA1UE AxMjVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIElzc3VpbmcgQ0ECEEs5xg/J3t77QWJ4SatV 1HcwCQYFKw4DAhoFAKCCAcMwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0B CQUxDxcNMDkwNjEyMTM0OTEyWjAjBgkqhkiG9w0BCQQxFgQUSr6wsLfttbU8rulT6Zum1H0R bD8wUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYIKoZI hvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwgYUGCSsGAQQBgjcQBDF4MHYwYjEL MAkGA1UEBhMCWkExJTAjBgNVBAoTHFRoYXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAq BgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBGcmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0Fi eEmrVdR3MIGHBgsqhkiG9w0BCRACCzF4oHYwYjELMAkGA1UEBhMCWkExJTAjBgNVBAoTHFRo YXd0ZSBDb25zdWx0aW5nIChQdHkpIEx0ZC4xLDAqBgNVBAMTI1RoYXd0ZSBQZXJzb25hbCBG cmVlbWFpbCBJc3N1aW5nIENBAhBLOcYPyd7e+0FieEmrVdR3MA0GCSqGSIb3DQEBAQUABIIB ADnTVBkDD5A9HxCopHHS2AsIiGwezVKZM+IagO2JA77SNetmaZ7PCNvKEKXBCuoIiQtNLWWN et4DWdiy08/mXYjuit49RIzG1E/pRv9Tispr9zvuUbNgPn79xcPrqA3q7OyYlaAW9Yffw0P3 dDdLVTJCRpHc36jISXdLi2zewv/BIae2vzp+8k7jXYuVQ6wWflyS565ROgSDZowKiQjcAVXI aynAX6Bypt+vffLBlRfXF+Yi29ZI+1sDMCOhMygGgSG/qqb78vxDCkC9/JTP9PAQEpO+StKy KK+hqDaDyAdU/t5n/miBStrACmS62mkHW9GhUln4ypUk40wqnMFC0lsAAAAAAAA= --------------ms000104070509060807040003-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:52:12 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCA7F106566B for ; Fri, 12 Jun 2009 13:52:12 +0000 (UTC) (envelope-from nramrani@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 6594D8FC14 for ; Fri, 12 Jun 2009 13:52:12 +0000 (UTC) (envelope-from nramrani@gmail.com) Received: by bwz17 with SMTP id 17so301609bwz.43 for ; Fri, 12 Jun 2009 06:52:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=iDV4qtguxiXBV3wYVE8k1JzZV+mQ+lBgNRVAagt6VFI=; b=wT1e9xBuJBAXroozEfVTTTB0XkK/rVsW+0LttmZGbeKJfdN9hbxSj5AEuY7/2EzdUZ O7VlH19rB0L+R9LzWhIeiF9QfBHXdDGNn+ZSO5UGmv/pFpxAdQICrH/4c2pYpAYV1Qo+ zf3zVTHdu+SUTQJ3dWLB8+cjPYsc9U2Gjjfao= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=mUhavx22Pl5cj6Eu56iAL+jYcgzSlE4+kLyEoc5PMM+bZqlMXNk0D9jTr5bmtJssLy igUFlg8wbhsCKbcMjkIkTfXGqsO1O8TgFf92Ce/RE8LD2u1r3lHNJTCWP9Wr2HG5TAqj bqI8qQMsbCkBQyUEeAlt25VIbHJi11VFgZlxw= MIME-Version: 1.0 Received: by 10.216.2.201 with SMTP id 51mr1316032wef.17.1244814731109; Fri, 12 Jun 2009 06:52:11 -0700 (PDT) Date: Fri, 12 Jun 2009 15:52:11 +0200 Message-ID: <2ac7a28b0906120652g500f852eted9eeb28d7169685@mail.gmail.com> From: n ramrani To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: zfs error ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 13:52:13 -0000 Hi, I have FreeBSD 7.0-RELEASE-p4. I do this: >portsnap fetch >portsnap update >/usr/sbin/freebsd-update fetch >/usr/sbin/freebsd-update install After a reboot of my server I have: "kmem-suballoc : bad status return of 3 panic: kmeme_suballoc cpuid=0 "* On the prompt,i try > show vm.kmem_size 1024 >show vm.kmem_size_max 1024 I try to change to > set vm.kmem_size="1536M" > set vm.kmem_size_max="1536M" show value is ok ,but when i try to do >boot -s I have the same message * how can i take back the hand on system ? > thanks. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:52:47 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 274F2106566C for ; Fri, 12 Jun 2009 13:52:47 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from mail-gx0-f207.google.com (mail-gx0-f207.google.com [209.85.217.207]) by mx1.freebsd.org (Postfix) with ESMTP id D0D1C8FC13 for ; Fri, 12 Jun 2009 13:52:46 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: by gxk3 with SMTP id 3so3376005gxk.19 for ; Fri, 12 Jun 2009 06:52:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:content-type :date:message-id:mime-version:x-mailer; bh=nJdmojNDBS/MTIEyegkHf/dHrBdr2mhKEs1yPfWTE+4=; b=OovqRoqaTNTGVqqmUIKR4xsojrd5F2seCKhTSz1+ffQp6Pi1/ROUe30JBVzMFN1sG5 U7AJn9EHJ6Z2ZRHmQSebbE6CfMNt3oRrF33mrlYQhhh595MNpOi3TSgJhD+HMFsWpZk8 3WzomsDleuxmnGdHVNIREcBkJG8o6vjHiBaxI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer; b=Uug6lJgXGqRKLlsYa28vJdiRbwaxMJPiVu/gWVy4h8l+4gsTjlmu+yHN97tJHv4Cv4 HICb/O2digE2V9rHOHHNI1d0N/wEGnXncNmkhD2KUXsPQ1DYPGiwXcZx8s2o/o+UbYhL XHAjWpLYIPkMr8E3Yobfq934v1f9HX/ZEZkfM= Received: by 10.90.29.13 with SMTP id c13mr472007agc.106.1244814766246; Fri, 12 Jun 2009 06:52:46 -0700 (PDT) Received: from ?192.168.6.250? ([189.123.214.109]) by mx.google.com with ESMTPS id 9sm1815043agc.62.2009.06.12.06.52.44 (version=SSLv3 cipher=RC4-MD5); Fri, 12 Jun 2009 06:52:45 -0700 (PDT) From: Sergio de Almeida Lenzi To: freebsd-questions Date: Fri, 12 Jun 2009 10:52:43 -0300 Message-Id: <1244814763.18813.26.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.2 FreeBSD GNOME Team Port Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: New openoffice 3.2 devel package 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: Fri, 12 Jun 2009 13:52:47 -0000 Hello,, I post a package (pkg_add ....) of the openoffice 3.2 devel m50, for the FreeBSD AMD64. it is distributed in torrent at: http://dist.k1.com.br/pt_BR-openoffice-3.2-m50-FreeBSD.torrent This one have the patch for the dictionaries and extensions that now, works. this is for the language: EN and PT_BR. Sergio From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:53:30 2009 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 447E710656D9 for ; Fri, 12 Jun 2009 13:53:30 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id 18AAF8FC1A for ; Fri, 12 Jun 2009 13:53:29 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from vanquish.ws.pitbpa0.priv.collaborativefusion.com (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTPSA id E7F9CEBC0A; Fri, 12 Jun 2009 09:35:14 -0400 (EDT) Date: Fri, 12 Jun 2009 09:35:14 -0400 From: Bill Moran To: Nick@Pettefar.com Message-Id: <20090612093514.663e8e09.wmoran@potentialtech.com> In-Reply-To: References: X-Mailer: Sylpheed 2.6.0 (GTK+ 2.14.7; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: questions@FreeBSD.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:53:30 -0000 In response to Nick@Pettefar.com: > In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html > It says: "If the X server has been configured and a Default Desktop > chosen, it can be started by typing startx at the command line." but > nowhere in the manual or the installation program is there any > information or options on X server configuration or choosing a Default > Desktop! Help! You weren't able to find this page?: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html Or this one?: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html Nowhere, indeed. -- Bill Moran http://www.potentialtech.com http://people.collaborativefusion.com/~wmoran/ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 13:55:56 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D77FF106567C for ; Fri, 12 Jun 2009 13:55:56 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: from mail-pz0-f197.google.com (mail-pz0-f197.google.com [209.85.222.197]) by mx1.freebsd.org (Postfix) with ESMTP id AD8F68FC15 for ; Fri, 12 Jun 2009 13:55:56 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: by pzk35 with SMTP id 35so1345016pzk.3 for ; Fri, 12 Jun 2009 06:55:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=aYIXADbiZ7qPdy3CIl4+EuY4Am9/p01m8MvAwXjGNC0=; b=Dkt6SowJgq2jImkdxGCsc1Wf/Axj7PsjeUMMM8nC0m6f4WjK1UzZ9yUa/un9jQK2Bh QNKZUHrcEvpw68ng6bpU1u7rpEc8YXsuXdZmTIt/QDRRQ5mq+9liqJSDlG5JTfraBnLJ lq2M19DcezLb+ITEUmDGJfBNfp5djKh69M1Ls= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=mepr6Z3k2KCRtauwuLxCjZqFAxpOEu62o4M8u2Ia1Yvj5qOhuGgtETNo0R75sNsaAe BuTF1giI0izv/EpZC95YrD5TUZ+7KyLUs92k+UyNQUAKHNYRj8Il54i5wXzvCoP4pd9V zaNyEJ6CoyCuI8VxJAFDSYveKfk+4xb59Gmkk= MIME-Version: 1.0 Received: by 10.142.114.15 with SMTP id m15mr1306485wfc.58.1244813729242; Fri, 12 Jun 2009 06:35:29 -0700 (PDT) In-Reply-To: References: Date: Fri, 12 Jun 2009 08:35:29 -0500 Message-ID: From: Neal Hogan To: Nick@pettefar.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 13:55:57 -0000 On Fri, Jun 12, 2009 at 8:09 AM, wrote: > In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html > It says: "If the X server has been configured and a Default Desktop chose= n, > it can be started by typing startx at the command line." but nowhere in t= he > manual or the installation program is there any information or options on= X > server configuration or choosing a Default Desktop! =A0Help! http://www.freebsd.org/doc/en/books/handbook/x11.html [+] > > Nick > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.o= rg" > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:02:40 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22029106564A for ; Fri, 12 Jun 2009 14:02:40 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id CC8258FC08 for ; Fri, 12 Jun 2009 14:02:39 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.3/8.14.3) with ESMTP id n5CE2drh034269; Fri, 12 Jun 2009 08:02:39 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.3/8.14.3/Submit) with ESMTP id n5CE2cuv034266; Fri, 12 Jun 2009 08:02:38 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Fri, 12 Jun 2009 08:02:38 -0600 (MDT) From: Warren Block To: Glen Barber In-Reply-To: <4ad871310906120644w218610ccxa6864a5f1b430dd2@mail.gmail.com> Message-ID: References: <4ad871310906120644w218610ccxa6864a5f1b430dd2@mail.gmail.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-902635197-1826521758-1244815085=:34104" Content-ID: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.2 (wonkity.com [127.0.0.1]); Fri, 12 Jun 2009 08:02:39 -0600 (MDT) Cc: Nick@pettefar.com, questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:02:40 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---902635197-1826521758-1244815085=:34104 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Fri, 12 Jun 2009, Glen Barber wrote: > On Fri, Jun 12, 2009 at 9:09 AM, wrote: >> In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html >> It says: "If the X server has been configured and a Default Desktop chosen, >> it can be started by typing startx at the command line." but nowhere in the >> manual or the installation program is there any information or options on X >> server configuration or choosing a Default Desktop!  Help! >> > > You can set a default desktop by creating $HOME/.xinitrc containing: > /usr/local/bin/your_desktop_environment Unless you're starting X with one of the methods that ignores .xinitrc and looks at .xsession instead, like xdm. -Warren Block * Rapid City, South Dakota USA ---902635197-1826521758-1244815085=:34104-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:04:53 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92710106570C for ; Fri, 12 Jun 2009 14:04:53 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f217.google.com (mail-bw0-f217.google.com [209.85.218.217]) by mx1.freebsd.org (Postfix) with ESMTP id 094EC8FC35 for ; Fri, 12 Jun 2009 14:04:52 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz17 with SMTP id 17so309852bwz.43 for ; Fri, 12 Jun 2009 07:04:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=DdE5SeJQOg+x3kHby36YxrhexoxC17kYVA8WQ3f1yuE=; b=J8KlCZaB8uNbLA6lJAFlH6pF/HlCte3Uq9mP7/bDU03yu0zUX7QHIoOqyjQmOgwRYl sw0M0Ahd4Ex0koeU6Cm9r8+TwofBUZUFpnuuAscMzo3DV6Rl9mWEf2t+jcQzJ4hD6EN+ nbNxroTYtNEI337OF9y3+aRe7ghNpZ56W5yQ4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=mKv4pCg/EHkkl0SLcPNtcMo2raNrH7XS+Gi2F6Qf543S0qP2awsIvWwU2jKounLlh1 o7/S81vUR5bL9FA5L+nXcZcGLtht4GKbwAxTu6aLjyAKBK1n+Mp79tm6ekhUaISJIfag hQ0dM+lZVqUJVpk9hJ1ZdXHNfXtzqvN6O8vV0= MIME-Version: 1.0 Received: by 10.204.52.197 with SMTP id j5mr3630710bkg.157.1244815490400; Fri, 12 Jun 2009 07:04:50 -0700 (PDT) In-Reply-To: <20090612093514.663e8e09.wmoran@potentialtech.com> References: <20090612093514.663e8e09.wmoran@potentialtech.com> Date: Fri, 12 Jun 2009 10:04:50 -0400 Message-ID: <4ad871310906120704g521ed9ffl73234dba6c82ba73@mail.gmail.com> From: Glen Barber To: Bill Moran Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Nick@pettefar.com, questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:04:54 -0000 On Fri, Jun 12, 2009 at 9:35 AM, Bill Moran wrote= : > In response to Nick@Pettefar.com: > >> In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html >> It says: "If the X server has been configured and a Default Desktop >> chosen, it can be started by typing startx at the command line." but >> nowhere in the manual or the installation program is there any >> information or options on X server configuration or choosing a Default >> Desktop! =A0Help! > > You weren't able to find this page?: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html > Or this one?: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html > > Nowhere, indeed. > I missing the .xinitrc in the GNOME setup as well... Now I just feel like an idiot as usual. --=20 Glen Barber From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:08:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03AB6106566C for ; Fri, 12 Jun 2009 14:08:50 +0000 (UTC) (envelope-from AHamiltonWright@MtA.ca) Received: from mailserv.mta.ca (mailserv.mta.ca [138.73.1.1]) by mx1.freebsd.org (Postfix) with ESMTP id C86398FC14 for ; Fri, 12 Jun 2009 14:08:49 +0000 (UTC) (envelope-from AHamiltonWright@MtA.ca) Received: from [138.73.29.51] (helo=qemg.org) by mailserv.mta.ca with esmtp (Exim 4.61) (envelope-from ) id 1MF6xL-0004ix-MV; Fri, 12 Jun 2009 10:38:08 -0300 Date: Fri, 12 Jun 2009 10:43:03 -0300 (ADT) From: Andrew Hamilton-Wright Sender: andrew@qemg.org To: Bernt Hansson In-Reply-To: <4A31E0F5.3080207@bah.homeip.net> Message-ID: References: <4A3105B2.8070405@bah.homeip.net> <4A310668.7040502@bah.homeip.net> <4A31D105.5080306@a1poweruser.com> <4A31E0F5.3080207@bah.homeip.net> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: "freebsd-questions@freebsd.org" , Fbsd1 Subject: Re: USB flash disc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:08:50 -0000 Bernt Hansson wrote: > I've got an usb flash disc kingston datatraveler DT150 64GB. > That I put pcbsd on to try, and now I can't seem to get it of the stick. [ deletia ] > Errors when trying fdisk: > > fdisk -BI /dev/da0 > ******* Working on device /dev/da0 ******* > fdisk: invalid fdisk partition table found > fdisk: Geom not found: "da0" > fdisk: Failed to write sector zero > > umass0: BBB reset failed, IOERROR > umass0: BBB bulk-in clear stall failed, IOERROR > umass0: BBB bulk-out clear stall failed, IOERROR I'm assuming you have checked any "readonly" status that may be set on this device (in software or hardware), however the above exactly matches the reports I got from a USB desktop drive right before the device completely packed it in. If there are vendor diagnostics to debug data transfer to the device I would verify that it is actually transferring data as your next step. A. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:13:47 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68514106566C for ; Fri, 12 Jun 2009 14:13:47 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id C52DA8FC0A for ; Fri, 12 Jun 2009 14:13:45 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4468804.home.otenet.gr [94.71.112.52]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5CDfJBU031792; Fri, 12 Jun 2009 16:41:19 +0300 Message-ID: <4A325AFF.5010700@otenet.gr> Date: Fri, 12 Jun 2009 16:41:19 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Nick@Pettefar.com References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:13:47 -0000 Nick@Pettefar.com wrote: > In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html > It says: "If the X server has been configured and a Default Desktop > chosen, it can be started by typing startx at the command line." but > nowhere in the manual or the installation program is there any > information or options on X server configuration or choosing a Default > Desktop! Help! > > Nick You've found the Handbook, so keep on reading! The information you need is on Chapter 5. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:20:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C84351065672 for ; Fri, 12 Jun 2009 14:20:56 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 95BD58FC13 for ; Fri, 12 Jun 2009 14:20:56 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id BDF067E837; Fri, 12 Jun 2009 06:20:55 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Fri, 12 Jun 2009 06:20:54 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20090612144049.c74ec6f9.freebsd@edvax.de> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906120620.54775.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Carmel Subject: Re: XFCE4 and screen resolution X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:20:57 -0000 On Friday 12 June 2009 05:42:52 Carmel wrote: > On Fri, 12 Jun 2009 14:40:49 +0200 > > Polytropon wrote: > >On Fri, 12 Jun 2009 08:27:54 -0400, Carmel > > > >wrote: > >> I tried a trick I found while Googling to place 'xrandr - 1024x768 -r > >> 85' in the '.xinitrc' file; however, that did not work either. > > > >Maybe your .xinitrc isn't executed? In mine, I have > > > > xrandr --fb 1400x1050 > > xrandr --size 1400x1050 > > > >to override non-functioning X autodetect and non-working xorg.conf > >settings. > > > >> Obviously I am doing something wrong here. Should I post this on the > >> XFCE forum or does someone here have a solution. > > > >Do you have the same problems with other WM / DE? > > Evidently, it is not being executed by startxfce4. If I run the command > once XFCE4 is started, it works. If you're using a display manager to startup the desktop rather then 'startx' after console login, you need .xsession, not .xinitrc. However, you say you execute startxfce4. When/where do you execute it? This program is meant to be the last command in one of the above mentioned files. -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:22:52 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76BC9106564A for ; Fri, 12 Jun 2009 14:22:52 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 357D08FC24 for ; Fri, 12 Jun 2009 14:22:52 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id E5E0C16C044A; Fri, 12 Jun 2009 16:22:50 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CEMjf8002542; Fri, 12 Jun 2009 16:22:45 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 16:22:44 +0200 From: Polytropon To: freebsd-questions@freebsd.org Message-Id: <20090612162244.8269750e.freebsd@edvax.de> In-Reply-To: References: <20090612144049.c74ec6f9.freebsd@edvax.de> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Carmel Subject: Re: XFCE4 and screen resolution X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 14:22:52 -0000 On Fri, 12 Jun 2009 09:42:52 -0400, Carmel wrote: > Evidently, it is not being executed by startxfce4. If I run the command > once XFCE4 is started, it works. Of course. ..-) What is startxfce4? Do you call it from text mode? Or is it a command in .xinitrc or .xsession? Because my primary dialog shell is csh, I have these: .xsession: #!/bin/csh source ~/.cshrc exec ~/.xinitrc It incorporates the settings from .cshrc and then continues as .xinitrc. #!/bin/sh [ -f ~/.xmodmaprc ] && xmodmap ~/.xmodmaprc xrandr --fb 1400x1050 xrandr --size 1400x1050 exec startxfce4 (The last line is assumed; I have "start wmaker" there.) Make sure both files are +x. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:24:49 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51B4510656A9 for ; Fri, 12 Jun 2009 14:24:49 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 0F6408FC18 for ; Fri, 12 Jun 2009 14:24:49 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id EABC916C0410; Fri, 12 Jun 2009 16:24:47 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5CEOktE002546; Fri, 12 Jun 2009 16:24:46 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Fri, 12 Jun 2009 16:24:46 +0200 From: Polytropon To: Warren Block Message-Id: <20090612162446.2e4b4838.freebsd@edvax.de> In-Reply-To: References: <4ad871310906120644w218610ccxa6864a5f1b430dd2@mail.gmail.com> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Nick@pettefar.com, questions@freebsd.org, Glen Barber Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 14:24:49 -0000 On Fri, 12 Jun 2009 08:02:38 -0600 (MDT), Warren Block wrote: > Unless you're starting X with one of the methods that ignores .xinitrc > and looks at .xsession instead, like xdm. Exactly this is why I "invented" the .xinitrc + .xsession double strike. :-) It works perfectly with xdm, and even without xdm, if you run "startx" from text mode. -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:37:37 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80ABF1065672 for ; Fri, 12 Jun 2009 14:37:37 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 38A398FC14 for ; Fri, 12 Jun 2009 14:37:37 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 42F677E83F; Fri, 12 Jun 2009 06:37:36 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org, Pieter Donche Date: Fri, 12 Jun 2009 06:37:35 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <200906111127.57696.mel.flynn+fbsd.questions@mailing.thruhere.net> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906120637.35374.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Subject: Re: py25-tkinter-2.5.4_3 / 2.6.2_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, 12 Jun 2009 14:37:37 -0000 On Thursday 11 June 2009 21:33:14 Pieter Donche wrote: > On Thu, 11 Jun 2009, Mel Flynn wrote: > > On Wednesday 10 June 2009 23:21:58 Pieter Donche wrote: > >> portupgrade advertizes since 3 days: > >> ... > >> py25-tkinter-2.5.4_3 < needs updating (index has > >> 2.6.2_3) > >> > >> using portupgrade -a > >> upgrades all other ports that need upgrading, but never py25-tkinter > >> > >> what's wrong here? > > > > I presume you didn't build the index yourself. Setting > > PYTHON_DEFAULT_VERSION=python2.6 in /etc/make.conf will likely solve your > > problem. > > -- > > Mel > > Should I then first install python26-2.6.2 from the ports? > > Shouldn't the portupgrade have somewhere asked to install a higher > version of python (as it does for e.g. perl etc..) ?? > > I haven't met such an upgrade, my python is > pkg_info | grep python > python25-2.5.4_1 An interpreted object-oriented programming language Sorry, I had to sleep. It is weird py25-tkinter had that version number reported by portupgrade if you had python25 installed. I tested it on my box: $ grep PYTHON_DEFAULT_VERSION /etc/make.conf PYTHON_DEFAULT_VERSION=python2.6 $ make -C /usr/ports/x11-toolkits/py-tkinter/ -V PKGNAME py26-tkinter-2.6.1_3 $ sudo sed -i.bak -e 's/python2.6/python2.5/' /etc/make.conf $ make -C /usr/ports/x11-toolkits/py-tkinter/ -V PKGNAME py25-tkinter-2.5.4_3 You probably could have gotten rid of it, by doing a portsdb -uU (or upgrading to portmaster :P). Either way, having upgraded to python2.6 is not a bad thing, since it is now the default version in ports. Over time the pain of mailman's cron spam and forced upgrade will fade ;) -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:39:46 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E11E3106566B for ; Fri, 12 Jun 2009 14:39:46 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9F38FC1B for ; Fri, 12 Jun 2009 14:39:45 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from kw.homeip.net (c80-217-74-54.bredband.comhem.se [80.217.74.54]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id n5CEdg30056310; Fri, 12 Jun 2009 16:39:42 +0200 (CEST) (envelope-from bernt@bah.homeip.net) Message-ID: <4A326897.9030008@bah.homeip.net> Date: Fri, 12 Jun 2009 16:39:19 +0200 From: Bernt Hansson User-Agent: slrn/1.0.8 (FreeBSD) MIME-Version: 1.0 To: Polytropon References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> In-Reply-To: <20090612125419.e418347b.freebsd@edvax.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 14:39:47 -0000 Polytropon said the following on 2009-06-12 12:54: > On Fri, 12 Jun 2009 04:45:59 +0200, Bernt Hansson wrote: >> Mel Flynn said the following on 2009-06-12 01:23: >>>> FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 >>>> root@fqdn:/usr/obj/usr/src/sys/GENERIC >>> ^^^^^^^ >>> Did you edit GENERIC >> Yes. Added sound and snd_hda > > Polite note: This is NOT the way to create a custom kernel. The > handbook mentions that it's advised to create a copy of GENERIC > and work with that. That's what i've done. >>> or did you forget to set KERNCONF during build/installkernel? >> No. cd /usr/src >> make buildkernel KERNCONF=GENERIC >> make installkernel KERNCONF=GENERIC >> reboot >> >> is what I did. No snd_hda > > It looks understandable (allthough not mentioned in the handbook). > Just to be sure, try the recommended approach. If you're not using > KERNCONF, GENERIC will be selected automatically. > > # cd /usr/src/sys/i386/conf > # cp GENERIC MYKERNEL > (or use any other descriptive name instead of MYKERNEL). > edit MYKERNEL and add > device sound > device snd_hda That's what i added. > # cd /usr/src > # make buildkernel KERNCONF=MYKERNEL > # make installkernel KERNCONF=MYKERNEL > # reboot > > Check /etc/make.conf and /etc/src.conf for any strange values > that may be a reason for our strange observations. > > > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:50:19 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AC901065670 for ; Fri, 12 Jun 2009 14:50:19 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 14CB78FC21 for ; Fri, 12 Jun 2009 14:50:18 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.lan.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id A0BC77E837; Fri, 12 Jun 2009 06:50:17 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Fri, 12 Jun 2009 06:50:16 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20090612125419.e418347b.freebsd@edvax.de> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906120650.16738.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Wojciech Puchar , Polytropon Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 14:50:19 -0000 On Friday 12 June 2009 04:43:46 Wojciech Puchar wrote: > > # cd /usr/src/sys/i386/conf > > # cp GENERIC MYKERNEL > > (or use any other descriptive name instead of MYKERNEL). > > edit MYKERNEL and add > > device sound > > device snd_hda > > # cd /usr/src > > # make buildkernel KERNCONF=MYKERNEL > > # make installkernel KERNCONF=MYKERNEL > > # reboot > > why not: > > > edit MYKERNEL > config MYKERNEL > cd ../compile/MYKERNEL make obj > make depend > make > make install > > ? Because it is more typing? One can actually put KERNCONF in /etc/src.conf. In fact, one can put multiple kernel files in KERNCONF and the first one in the list will be the one installed, all will be built. This is how I share kernels over nfs to multiple machines from one build machine by mounting /usr/src and /usr/obj on the target machines and just running make installkernel. The target machines have their kernelname set in their own /etc/src.conf. -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 14:51:59 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A650106566C for ; Fri, 12 Jun 2009 14:51:59 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from feeder.usenet4all.se (1-1-1-38a.far.sth.bostream.se [82.182.32.53]) by mx1.freebsd.org (Postfix) with ESMTP id BF4018FC25 for ; Fri, 12 Jun 2009 14:51:58 +0000 (UTC) (envelope-from bernt@bah.homeip.net) Received: from kw.homeip.net (c80-217-74-54.bredband.comhem.se [80.217.74.54]) by feeder.usenet4all.se (8.13.1/8.13.1) with ESMTP id n5CEpp27056515; Fri, 12 Jun 2009 16:51:52 +0200 (CEST) (envelope-from bernt@bah.homeip.net) Message-ID: <4A326B70.8040205@bah.homeip.net> Date: Fri, 12 Jun 2009 16:51:28 +0200 From: Bernt Hansson User-Agent: slrn/1.0.8 (FreeBSD) MIME-Version: 1.0 To: Andrew Hamilton-Wright References: <4A3105B2.8070405@bah.homeip.net> <4A310668.7040502@bah.homeip.net> <4A31D105.5080306@a1poweruser.com> <4A31E0F5.3080207@bah.homeip.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@freebsd.org" , Fbsd1 Subject: Re: USB flash disc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 14:51:59 -0000 Andrew Hamilton-Wright said the following on 2009-06-12 15:43: > Bernt Hansson wrote: >> I've got an usb flash disc kingston datatraveler DT150 64GB. >> That I put pcbsd on to try, and now I can't seem to get it of the stick. > > [ deletia ] > >> Errors when trying fdisk: >> >> fdisk -BI /dev/da0 >> ******* Working on device /dev/da0 ******* >> fdisk: invalid fdisk partition table found >> fdisk: Geom not found: "da0" >> fdisk: Failed to write sector zero >> >> umass0: BBB reset failed, IOERROR >> umass0: BBB bulk-in clear stall failed, IOERROR >> umass0: BBB bulk-out clear stall failed, IOERROR > > I'm assuming you have checked any "readonly" status that may be > set on this device (in software or hardware), How do I check that status? In the MBR or elsewere? What to look for? > however the above > exactly matches the reports I got from a USB desktop drive > right before the device completely packed it in. That's my feeling too. So I'll have to wait and see. > If there are vendor diagnostics to debug data transfer to the device > I would verify that it is actually transferring data as your next > step. It does transfer the PCBSD files i.e I can copy them to the HDD. > A. > > > From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 15:11:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80BA91065670 for ; Fri, 12 Jun 2009 15:11:32 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: from web56504.mail.re3.yahoo.com (web56504.mail.re3.yahoo.com [66.196.97.33]) by mx1.freebsd.org (Postfix) with SMTP id 1171D8FC1D for ; Fri, 12 Jun 2009 15:11:31 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: (qmail 46864 invoked by uid 60001); 12 Jun 2009 14:44:51 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244817890; bh=vMYuDRmHqxrfX1gAlXHvJgELKwnuNFUHp90vRQzqJsA=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=U2wQg/CEbM3sypLucn2mmHg74gsz5uUsEKiWVpy801rS7ob8sW2qkHfSlJEGStKYyGP381QUNVsN9xxhsjL8FZ0i4LwD1PrmEWD+YtziuZ5q6/sla6UJmNN2MbhIJku3qWCdP73bqyEh5GSFWkkbm4g7pNCUwYX4fY/YU6TJVME= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=ZgejooV9S99G59ah6BgqOPYOPYGJgbYoplMyZJq81fFNHXBy65C3eWkRg5yPia2y/l0L6KUDHfsGtYWjds+zWt6HDohjP+50sZPo7DL7Ofm82/v/8h9h1AZjAcqzpSMDUO8CLaCC/XnNOP80io8bM83DUO7W0nZM21tyh2ukYiE=; Message-ID: <997055.46346.qm@web56504.mail.re3.yahoo.com> X-YMail-OSG: Yym_DIwVM1muKtoS7q1XmRb5OQJA1M.vl_jbqt_dN919tW_rfhS2Qnw0X2.rKKf4lvm5iltdCT9trWRdr8z6h.0Y9.fNVOWZqinHNbAgI7_BFf5ZbjSQu6pSzuMNvTHvNxPNPO.V9nn6mONHqTCRPaGVn8j7sNNl9BbclYJ3JrRz8HH2zDjF6icNOGF5TfESToLd.2FW.sJwun33D.XlQf_Cq0jZJMP9G9ZjvF3V5HV6NoEn_3NBuBWiF1t.DND7bXCW.LxS4ERcAK9bPrl4jq9dxPksKbCGcsliQvw69Zs0VuPluXhBezMpDUwOdE6MN_R0 Received: from [174.18.66.227] by web56504.mail.re3.yahoo.com via HTTP; Fri, 12 Jun 2009 07:44:50 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Fri, 12 Jun 2009 07:44:50 -0700 (PDT) From: Neil Short To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 15:11:32 -0000 I'm taking a crack at the port win4bsd. The port informs me that I need to add options SCHED_4BSD to my kernel. When I do and attempt buildkernel I get errors in the build. Any quick answers? I'm going to re-run it and try to get more details on the errors. Just thought there might be some pat answer out there. -N ====== Wherever the corpse is, there the vultures will gather. Matthew 24:28 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 15:21:49 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07BE01065672 for ; Fri, 12 Jun 2009 15:21:49 +0000 (UTC) (envelope-from lazlar@lazlarlyricon.com) Received: from iph1.telenor.se (iph1.telenor.se [195.54.127.132]) by mx1.freebsd.org (Postfix) with ESMTP id 7F1B18FC25 for ; Fri, 12 Jun 2009 15:21:48 +0000 (UTC) (envelope-from lazlar@lazlarlyricon.com) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AjICAPcHMkrDNmV6mWdsb2JhbACBT5Z0AQEBAQEICwoHE7kMhAsF X-IronPort-AV: E=Sophos;i="4.42,210,1243807200"; d="vcf'?scan'208";a="18298833" Received: from ironport2.bredband.com ([195.54.101.122]) by iph1.telenor.se with ESMTP; 12 Jun 2009 16:52:06 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvynADIIMkpV44BwPGdsb2JhbACBT5ZqAQEBATe5E4QLBQ X-IronPort-AV: E=Sophos;i="4.42,210,1243807200"; d="vcf'?scan'208";a="501790632" Received: from c-7080e355.09-42-6e6b7010.cust.bredbandsbolaget.se (HELO lazlar.kicks-ass.net) ([85.227.128.112]) by ironport2.bredband.com with ESMTP; 12 Jun 2009 16:52:04 +0200 Message-ID: <4A326B94.2030608@lazlarlyricon.com> Date: Fri, 12 Jun 2009 16:52:04 +0200 From: Rolf G Nielsen User-Agent: Thunderbird 2.0.0.21 (X11/20090405) MIME-Version: 1.0 To: Bernt Hansson References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> <4A326897.9030008@bah.homeip.net> In-Reply-To: <4A326897.9030008@bah.homeip.net> Content-Type: multipart/mixed; boundary="------------000404010302020102080507" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Fri, 12 Jun 2009 15:21:49 -0000 This is a multi-part message in MIME format. --------------000404010302020102080507 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Bernt Hansson wrote: >=20 >=20 > Polytropon said the following on 2009-06-12 12:54: >> On Fri, 12 Jun 2009 04:45:59 +0200, Bernt Hansson=20 >> wrote: >>> Mel Flynn said the following on 2009-06-12 01:23: >>>>> FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 >>>>> root@fqdn:/usr/obj/usr/src/sys/GENERIC >>>> ^^^^^^^ >>>> Did you edit GENERIC >>> Yes. Added sound and snd_hda >> >> Polite note: This is NOT the way to create a custom kernel. The >> handbook mentions that it's advised to create a copy of GENERIC >> and work with that. >=20 > That's what i've done. >=20 >=20 >>>> or did you forget to set KERNCONF during build/installkernel? >>> No. cd /usr/src >>> make buildkernel KERNCONF=3DGENERIC >>> make installkernel KERNCONF=3DGENERIC >>> reboot >>> >>> is what I did. No snd_hda If you copied GENERIC to another file and edited that file, then=20 compiled and installed GENERIC, you're obviously not going to get the=20 added drivers. You'll need to replace GENERIC with the name of the file=20 you edited in the KERNCONF variable. >> >> It looks understandable (allthough not mentioned in the handbook). >> Just to be sure, try the recommended approach. If you're not using >> KERNCONF, GENERIC will be selected automatically. >> >> # cd /usr/src/sys/i386/conf >> # cp GENERIC MYKERNEL >> (or use any other descriptive name instead of MYKERNEL). >> edit MYKERNEL and add >> device sound >> device snd_hda >=20 > That's what i added. >=20 >> # cd /usr/src >> # make buildkernel KERNCONF=3DMYKERNEL >> # make installkernel KERNCONF=3DMYKERNEL >> # reboot >> >> Check /etc/make.conf and /etc/src.conf for any strange values >> that may be a reason for our strange observations. >> >> >> > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to=20 > "freebsd-questions-unsubscribe@freebsd.org" >=20 >=20 >=20 --=20 V=C3=A4nligen / Sincerly, Rolf Nielsen P.S. Om du svarar p=C3=A5 detta mail, placera svaret nedanf=C3=B6r den tidigar= e texten,=20 annars kommer ditt svar automatiskt att kasseras, och d=C3=A4rf=C3=B6r in= te bli l=C3=A4st. Svaret kommer ocks=C3=A5 att kasseras automatiskt, och allts=C3=A5 inte b= li l=C3=A4st,=20 om det inneh=C3=A5ller HTML; skicka alltid e-post som oformaterad text. If you reply to this mail, please put the reply beneath the older text.=20 Otherwise your reply will be automatically discarded, thus it will not=20 be read. Your reply will also be discarded if it contains HTML; always send=20 e-mail as plain text. --------------000404010302020102080507-- From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 15:21:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 36F26106564A for ; Fri, 12 Jun 2009 15:21:50 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id F2DB28FC1E for ; Fri, 12 Jun 2009 15:21:49 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id 2A0517E83F; Fri, 12 Jun 2009 07:21:49 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Fri, 12 Jun 2009 07:21:47 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-CURRENT; KDE/4.2.4; i386; ; ) References: <997055.46346.qm@web56504.mail.re3.yahoo.com> In-Reply-To: <997055.46346.qm@web56504.mail.re3.yahoo.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200906120721.48166.mel.flynn+fbsd.questions@mailing.thruhere.net> Cc: Neil Short Subject: Re: `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 15:21:50 -0000 On Friday 12 June 2009 06:44:50 Neil Short wrote: > I'm taking a crack at the port win4bsd. The port informs me that I need to > add options SCHED_4BSD > to my kernel. It's an either/or thing. Remove SCHED_ULE. -- Mel From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 15:27:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B39E8106568C for ; Fri, 12 Jun 2009 15:27:58 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: from web56504.mail.re3.yahoo.com (web56504.mail.re3.yahoo.com [66.196.97.33]) by mx1.freebsd.org (Postfix) with SMTP id 4702D8FC1F for ; Fri, 12 Jun 2009 15:27:57 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: (qmail 69445 invoked by uid 60001); 12 Jun 2009 15:27:57 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244820477; bh=caJBqhKRuE6As59M52XTmIBC8nDcAm/wr9xxjylHcDk=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=LA2a0iqjGYN5jnPqN8eA/cE0GR6Y3QiWd+z5fAUuvCEIUglzDphXdhRmWRWSpYD9VnotO1NIafKC5PO7Kza/pYnTBL7k9Y7HHmb3SyoQrUERhrEgP6+hVEGOSwieTqMZ4UJZ8W6h8VybkXOm+ZDv5QhinnqYDiu4Ev+3j6CoIUI= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=uy5sUGCzHOd1W2x/R2xysC75wF0zxfmy0b0TkfFzwYQ3O7P8WzGCBTmwsqxgtm55kOGXkI3/N/RqgD2sb8Fb3QElJ/i+yh50Oz4F5vWTA294PllLcKpgirSeMBZpmmF10WDQ4KOMacggZ3P8LJawWSoBYOvCS8eQVuExn3Uijl0=; Message-ID: <566515.68595.qm@web56504.mail.re3.yahoo.com> X-YMail-OSG: jUG1fdEVM1lRSpp0WaeTtKDtgCk5zlXUnuXDDyeBOamWknd0WTAmI8gC3YqsEzk6dkfjXyH8CXxTaU8yrAjYgEK7feX2bk95mxk1_CO.ajrtTOZDXiN75KhrFzCdbOUGxwRIE5WwYBPFmTcbpclvRqVUkqqRIFGx.TRzcj5rIhUNv8rR_nD5lR3s4hqtzx7QrkcLfL_Ioh0ORuNpA56OPDi25.Z3XSa4HyIfc0DSijx7gsGuGZsX_cV20ZFJag63QQ0Pq2sz.fHUd7i2xx_XsAXp2nLO.wBD_sB_frjs Received: from [174.18.66.227] by web56504.mail.re3.yahoo.com via HTTP; Fri, 12 Jun 2009 08:27:57 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Fri, 12 Jun 2009 08:27:57 -0700 (PDT) From: Neil Short To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: ld: Warning: size of symbol `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 15:27:59 -0000 Here's more detail with context on my attempt to include options SCHED_4BSD in my kernel. Any ideas? .... MAKE=make sh /usr/src/sys/conf/newvers.sh CARMEN cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc -I. -I/usr/src/sys -I/usr/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror vers.c linking kernel sched_ule.o(.text+0x670): In function `schedinit': : multiple definition of `schedinit' sched_4bsd.o(.text+0x1690): first defined here ld: Warning: size of symbol `schedinit' changed from 84 in sched_4bsd.o to 50 in sched_ule.o sched_ule.o(.text+0x6b0): In function `sched_rr_interval': : multiple definition of `sched_rr_interval' sched_4bsd.o(.text+0xc0): first defined here ld: Warning: size of symbol `sched_rr_interval' changed from 48 in sched_4bsd.o to 37 in sched_ule.o sched_ule.o(.text+0x790): In function `sched_user_prio': : multiple definition of `sched_user_prio' sched_4bsd.o(.text+0x110): first defined here ld: Warning: size of symbol `sched_user_prio' changed from 41 in sched_4bsd.o to 37 in sched_ule.o sched_ule.o(.text+0x910): In function `sched_lend_user_prio': : multiple definition of `sched_lend_user_prio' sched_4bsd.o(.text+0x1e0): first defined here sched_ule.o(.text+0x930): In function `sched_unlend_user_prio': : multiple definition of `sched_unlend_user_prio' sched_4bsd.o(.text+0x200): first defined here sched_ule.o(.text+0x970): In function `sched_sleep': : multiple definition of `sched_sleep' sched_4bsd.o(.text+0x240): first defined here ld: Warning: size of symbol `sched_sleep' changed from 35 in sched_4bsd.o to 22 in sched_ule.o sched_ule.o(.text+0x990): In function `sched_class': : multiple definition of `sched_class' sched_4bsd.o(.text+0xf0): first defined here ld: Warning: size of symbol `sched_class' changed from 19 in sched_4bsd.o to 150 in sched_ule.o sched_ule.o(.text+0xa30): In function `sched_unbind': : multiple definition of `sched_unbind' sched_4bsd.o(.text+0x270): first defined here ld: Warning: size of symbol `sched_unbind' changed from 17 in sched_4bsd.o to 44 in sched_ule.o sched_ule.o(.text+0xa60): In function `sched_is_bound': : multiple definition of `sched_is_bound' sched_4bsd.o(.text+0x290): first defined here ld: Warning: size of symbol `sched_is_bound' changed from 18 in sched_4bsd.o to 23 in sched_ule.o sched_ule.o(.text+0xa80): In function `sched_load': : multiple definition of `sched_load' sched_4bsd.o(.text+0x2b0): first defined here ld: Warning: size of symbol `sched_load' changed from 10 in sched_4bsd.o to 43 in sched_ule.o sched_ule.o(.text+0xab0): In function `sched_sizeof_proc': : multiple definition of `sched_sizeof_proc' sched_4bsd.o(.text+0x2c0): first defined here sched_ule.o(.text+0xac0): In function `sched_sizeof_thread': : multiple definition of `sched_sizeof_thread' sched_4bsd.o(.text+0x2d0): first defined here sched_ule.o(.text+0xad0): In function `sched_fork_exit': : multiple definition of `sched_fork_exit' sched_4bsd.o(.text+0x310): first defined here ld: Warning: size of symbol `sched_fork_exit' changed from 31 in sched_4bsd.o to 47 in sched_ule.o sched_ule.o(.text+0xb00): In function `runq_add': : multiple definition of `runq_add' sched_4bsd.o(.text+0x330): first defined here sched_ule.o(.text+0xb90): In function `runq_add_pri': : multiple definition of `runq_add_pri' sched_4bsd.o(.text+0x3c0): first defined here sched_ule.o(.text+0xdd0): In function `runq_check': : multiple definition of `runq_check' sched_4bsd.o(.text+0x450): first defined here sched_ule.o(.text+0xdf0): In function `runq_choose': : multiple definition of `runq_choose' sched_4bsd.o(.text+0x4b0): first defined here sched_ule.o(.data+0x0): multiple definition of `runq_fuzz' sched_4bsd.o(.data+0x0): first defined here sched_ule.o(.text+0xe90): In function `runq_choose_from': : multiple definition of `runq_choose_from' sched_4bsd.o(.text+0x550): first defined here sched_ule.o(.text+0xf20): In function `sched_newproc': : multiple definition of `sched_newproc' sched_4bsd.o(.text+0x5e0): first defined here sched_ule.o(.text+0x14c0): In function `sched_exit_thread': : multiple definition of `sched_exit_thread' sched_4bsd.o(.text+0x670): first defined here ld: Warning: size of symbol `sched_exit_thread' changed from 310 in sched_4bsd.o to 157 in sched_ule.o sched_ule.o(.text+0x1560): In function `sched_exit': : multiple definition of `sched_exit' sched_4bsd.o(.text+0x7b0): first defined here sched_ule.o(.text+0x1580): In function `sched_newthread': : multiple definition of `sched_newthread' sched_4bsd.o(.text+0x7d0): first defined here sched_ule.o(.text+0x15c0): In function `runq_init': : multiple definition of `runq_init' sched_4bsd.o(.text+0x810): first defined here sched_ule.o(.text+0x1670): In function `runq_remove_idx': : multiple definition of `runq_remove_idx' sched_4bsd.o(.text+0x8d0): first defined here sched_ule.o(.text+0x1730): In function `runq_remove': : multiple definition of `runq_remove' sched_4bsd.o(.text+0x990): first defined here sched_ule.o(.text+0x1760): In function `sched_choose': : multiple definition of `sched_choose' sched_4bsd.o(.text+0x9c0): first defined here ld: Warning: size of symbol `sched_choose' changed from 187 in sched_4bsd.o to 332 in sched_ule.o sched_ule.o(.text+0x18b0): In function `choosethread': : multiple definition of `choosethread' sched_4bsd.o(.text+0xa80): first defined here sched_ule.o(.text+0x18f0): In function `sched_bind': : multiple definition of `sched_bind' sched_4bsd.o(.text+0xc30): first defined here ld: Warning: size of symbol `sched_bind' changed from 77 in sched_4bsd.o to 108 in sched_ule.o sched_ule.o(.text+0x19e0): In function `sched_add': : multiple definition of `sched_add' sched_4bsd.o(.text+0xc80): first defined here ld: Warning: size of symbol `sched_add' changed from 1063 in sched_4bsd.o to 540 in sched_ule.o sched_ule.o(.text+0x1c00): In function `sched_wakeup': : multiple definition of `sched_wakeup' sched_4bsd.o(.text+0x10b0): first defined here ld: Warning: size of symbol `sched_wakeup' changed from 87 in sched_4bsd.o to 115 in sched_ule.o sched_ule.o(.text+0x1c80): In function `sched_fork_thread': : multiple definition of `sched_fork_thread' sched_4bsd.o(.text+0x1620): first defined here ld: Warning: size of symbol `sched_fork_thread' changed from 95 in sched_4bsd.o to 163 in sched_ule.o sched_ule.o(.text+0x1d30): In function `sched_fork': : multiple definition of `sched_fork' sched_4bsd.o(.text+0x1680): first defined here ld: Warning: size of symbol `sched_fork' changed from 9 in sched_4bsd.o to 169 in sched_ule.o sched_ule.o(.text+0x1de0): In function `critical_enter': : multiple definition of `critical_enter' sched_4bsd.o(.text+0x16f0): first defined here sched_ule.o(.text+0x1e00): In function `sched_runnable': : multiple definition of `sched_runnable' sched_4bsd.o(.text+0x470): first defined here ld: Warning: size of symbol `sched_runnable' changed from 58 in sched_4bsd.o to 67 in sched_ule.o sched_ule.o(.text+0x1e50): In function `sched_tick': : multiple definition of `sched_tick' sched_4bsd.o(.text+0x300): first defined here ld: Warning: size of symbol `sched_tick' changed from 5 in sched_4bsd.o to 73 in sched_ule.o sched_ule.o(.text+0x1ea0): In function `maybe_preempt': : multiple definition of `maybe_preempt' sched_4bsd.o(.text+0xb30): first defined here sched_ule.o(.text+0x1fa0): In function `sched_userret': : multiple definition of `sched_userret' sched_4bsd.o(.text+0x1a50): first defined here sched_ule.o(.text+0x2030): In function `critical_exit': : multiple definition of `critical_exit' sched_4bsd.o(.text+0x1910): first defined here sched_ule.o(.text+0x20f0): In function `sched_relinquish': : multiple definition of `sched_relinquish' sched_4bsd.o(.text+0x19d0): first defined here sched_ule.o(.text+0x2170): In function `sched_throw': : multiple definition of `sched_throw' sched_4bsd.o(.text+0x1bc0): first defined here ld: Warning: size of symbol `sched_throw' changed from 204 in sched_4bsd.o to 261 in sched_ule.o sched_ule.o(.text+0x2280): In function `sched_pctcpu': : multiple definition of `sched_pctcpu' sched_4bsd.o(.text+0x2e0): first defined here ld: Warning: size of symbol `sched_pctcpu' changed from 17 in sched_4bsd.o to 196 in sched_ule.o sched_ule.o(.text+0x2350): In function `sched_switch': : multiple definition of `sched_switch' sched_4bsd.o(.text+0x1c90): first defined here ld: Warning: size of symbol `sched_switch' changed from 488 in sched_4bsd.o to 1230 in sched_ule.o sched_ule.o(.text+0x2820): In function `sched_rem': : multiple definition of `sched_rem' sched_4bsd.o(.text+0xac0): first defined here ld: Warning: size of symbol `sched_rem' changed from 104 in sched_4bsd.o to 214 in sched_ule.o sched_ule.o(.text+0x2900): In function `sched_affinity': : multiple definition of `sched_affinity' sched_4bsd.o(.text+0x1710): first defined here ld: Warning: size of symbol `sched_affinity' changed from 355 in sched_4bsd.o to 184 in sched_ule.o sched_ule.o(.text+0x2a50): In function `sched_prio': : multiple definition of `sched_prio' sched_4bsd.o(.text+0x1190): first defined here sched_ule.o(.text+0x2ad0): In function `sched_nice': : multiple definition of `sched_nice' sched_4bsd.o(.text+0x1880): first defined here ld: Warning: size of symbol `sched_nice' changed from 140 in sched_4bsd.o to 152 in sched_ule.o sched_ule.o(.text+0x2b70): In function `sched_lend_prio': : multiple definition of `sched_lend_prio' sched_4bsd.o(.text+0x1170): first defined here ld: Warning: size of symbol `sched_lend_prio' changed from 17 in sched_4bsd.o to 20 in sched_ule.o sched_ule.o(.text+0x2b90): In function `sched_unlend_prio': : multiple definition of `sched_unlend_prio' sched_4bsd.o(.text+0x1210): first defined here ld: Warning: size of symbol `sched_unlend_prio' changed from 72 in sched_4bsd.o to 68 in sched_ule.o sched_ule.o(.text+0x2ce0): In function `sched_idletd': : multiple definition of `sched_idletd' sched_4bsd.o(.text+0x1ae0): first defined here ld: Warning: size of symbol `sched_idletd' changed from 221 in sched_4bsd.o to 681 in sched_ule.o sched_ule.o(.text+0x3380): In function `sched_clock': : multiple definition of `sched_clock' sched_4bsd.o(.text+0x12a0): first defined here ld: Warning: size of symbol `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o *** Error code 1 Stop in /usr/obj/usr/src/sys/CARMEN. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. carmen# ====== Wherever the corpse is, there the vultures will gather. Matthew 24:28 From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 16:48:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F66F1065672 for ; Fri, 12 Jun 2009 16:48:15 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id E87F48FC12 for ; Fri, 12 Jun 2009 16:48:14 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by an-out-0708.google.com with SMTP id c3so1268591ana.13 for ; Fri, 12 Jun 2009 09:48:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=gG8U8mfTTwqRSEuWRDpJx+/W8JctGRRyL91GMOsrQcM=; b=Ld27grZPceKDjWV6iEhlyxYsP/M53nk74mAxEexdJLS7wdLu4Exfz6JMnraCtVfJFI A5WqMmaZCoRxEs/XwKpImAPPnL9hKzFkYlBq/LIQ3j6FuQNu7WFSkbWIBw65BBC6tgV9 kSBHbwxPMGzwKKfuRzdtU2X4n7ePlqGloopg8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=cCLP9/khE6kNsRQV0zyaBc4Eo6fSptTsExlBObaFhaZFPXss7GdfMJEb+rDzvt0Yei UYMFjoUTYYs+hBLsElcm9YOys3gnaVZWEO3T7EcK7WzyBV+M5uIMlIgxrl4td+/rPife Rh1iGsYIDdpqVAn+MVpGkY6/+hnubNZMxvC9k= MIME-Version: 1.0 Received: by 10.100.6.16 with SMTP id 16mr5143410anf.52.1244825294258; Fri, 12 Jun 2009 09:48:14 -0700 (PDT) Date: Fri, 12 Jun 2009 09:48:14 -0700 Message-ID: <539c60b90906120948p539a099bn37b7dca5ac5531ed@mail.gmail.com> From: Steve Franks To: FreeBSD Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Stanislav Sedov Subject: another cross-gcc question ("can't compute suffix of object files") X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 16:48:15 -0000 Sorry to be such a pest, I'm trying to go from being a good hardware programmer to a good OS programmer, but there's alot to pick up to be FreeBSD proficient... Can't seem to do a vanilla cross-gcc on my home system, which works fine on my work machine, both of them are recent 7.2 installs... I don't even know what other info would be needed to track this down. My machine is pretty much useless without an arm compiler - that's what I do for work. Best, Steve [steve@terra /usr/ports/devel/cross-gcc]$ sudo make MULTILIB_OPTIONS="mno-thumb-interwork/mthumb-interwork" MULTILIB_DIRNAMES="normal interwork" TGTARCH=arm TGTABI=elf WITH_FLOAT_TYPE=soft install ... gmake[2]: Leaving directory `/usr/ports/devel/cross-gcc/work/build/gcc' Checking multilib configuration for libgcc... mkdir arm-elf mkdir arm-elf/libgcc Configuring in arm-elf/libgcc checking for --enable-version-specific-runtime-libs... no checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking for gawk... gawk checking build system type... i386-portbld-freebsd7.2 checking host system type... arm-unknown-elf checking for arm-elf-ar... /usr/local/arm-elf/bin/ar checking for arm-elf-lipo... arm-elf-lipo checking for arm-elf-nm... /usr/ports/devel/cross-gcc/work/build/./gcc/nm checking for arm-elf-ranlib... /usr/local/arm-elf/bin/ranlib checking for arm-elf-strip... /usr/local/arm-elf/bin/strip checking whether ln -s works... yes checking for arm-elf-gcc... /usr/ports/devel/cross-gcc/work/build/./gcc/xgcc -B/usr/ports/devel/cross-gcc/work/build/./gcc/ -nostdinc -B/usr/ports/devel/cross-gcc/work/build/arm-elf/newlib/ -isystem /usr/ports/devel/cross-gcc/work/build/arm-elf/newlib/targ-include -isystem /usr/ports/devel/cross-gcc/work/gcc-4.3.2/newlib/libc/include -B/usr/ports/devel/cross-gcc/work/build/arm-elf/libgloss/arm -L/usr/ports/devel/cross-gcc/work/build/arm-elf/libgloss/libnosys -L/usr/ports/devel/cross-gcc/work/gcc-4.3.2/libgloss/arm -B/usr/local/arm-elf/bin/ -B/usr/local/arm-elf/lib/ -isystem /usr/ports/devel/cross-gcc/work/build/./gcc -isystem /usr/local/arm-elf/include -isystem /usr/local/arm-elf/sys-include checking for suffix of object files... configure: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. gmake[1]: *** [configure-target-libgcc] Error 1 gmake[1]: Leaving directory `/usr/ports/devel/cross-gcc/work/build' gmake: *** [all] Error 2 *** Error code 1 Stop in /usr/ports/devel/cross-gcc. *** Error code 1 Stop in /usr/ports/devel/cross-gcc. [steve@terra /usr/ports/devel/cross-gcc]$ which gcc /usr/bin/gcc [steve@terra /usr/ports/devel/cross-gcc]$ gcc --version gcc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. [steve@terra /usr/ports/devel/cross-gcc]$ From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 17:00:51 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F5021065672 for ; Fri, 12 Jun 2009 17:00:51 +0000 (UTC) (envelope-from onemda@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id 3253A8FC14 for ; Fri, 12 Jun 2009 17:00:50 +0000 (UTC) (envelope-from onemda@gmail.com) Received: by fxm20 with SMTP id 20so2138669fxm.43 for ; Fri, 12 Jun 2009 10:00:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=2FReT8CPk3mh3UNOVnilY1H9LZEqYikQXeb6Cs64acA=; b=nSrr88T7VvLQBsBpiShLzYvPEaLP3WosX54QCHmmFypjL3agz8owzN7r2NwMP8svoC Ju83PxsLUqAvmjwXRgUarnEWBoXnQC3nBAgNQSlODQbrnVWeV5CklWPl/N4GvsV+GCG2 hAIs6nl7ouAY0nVO+D6HifqSHgoeZ9ebU7qx8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Zb4JuNKEbOVfMnPN2ZkGxqcp1wHyzdgBNh4YSZDmI5eTZSSNzK9QSpRhJC+irH27VL WGRvOU/DmWR04midD3PWIw4T7ul80oG/IGnOtAifkuhVwjsoX+pyputdiVogq8U7ppfN fYYWt2eHpHiI3OehDx9tOZsDGHiglXGUupgY0= MIME-Version: 1.0 Received: by 10.204.101.13 with SMTP id a13mr3808998bko.89.1244826050026; Fri, 12 Jun 2009 10:00:50 -0700 (PDT) In-Reply-To: <566515.68595.qm@web56504.mail.re3.yahoo.com> References: <566515.68595.qm@web56504.mail.re3.yahoo.com> Date: Fri, 12 Jun 2009 19:00:49 +0200 Message-ID: <3a142e750906121000m6da3995cm1d646e0bb73285cc@mail.gmail.com> From: "Paul B. Mahol" To: Neil Short Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: ld: Warning: size of symbol `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 17:00:51 -0000 On 6/12/09, Neil Short wrote: > > Here's more detail with context on my attempt to include > > options SCHED_4BSD > > in my kernel. Any ideas? You can't have two schedulers at same time in same kernel. -- Paul From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 17:13:06 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7ECBE1065676 for ; Fri, 12 Jun 2009 17:13:06 +0000 (UTC) (envelope-from pettefar@gmail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 0C9938FC17 for ; Fri, 12 Jun 2009 17:13:05 +0000 (UTC) (envelope-from pettefar@gmail.com) Received: by ewy8 with SMTP id 8so2623241ewy.43 for ; Fri, 12 Jun 2009 10:13:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=q3yaG5Low+31Tkxs7YmOpqrrUeVh8d56OD27WyNcTSQ=; b=baQbHDu4/dh0Wpeu5Qtthc+0YgPNiHw6yevyScgBTIWLtlfp62Xm314RbHeSSQmC9E ODJ+7IKkw9QpqGLqBpDyHOGOKUGh/z3qj1IaqcL+Xj2cc91fAIPJZgJgpdw4w59TxOwQ 4KNNQ2LqIBg6yVTU0F0zSEoX5fjq6jnakA/ik= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=bLmAY8CZTBUqbULb3oDYqOwTqWkoGGovdrhY2Q61O8KqKa4cNkB7gYrI2wx9QETMuS hyoetaNaX9dzomV76gBJchuLi9jfWZlb9SCUuk1Qe+5/1kLhWGinQ75tL+QsnHjb3r3M 6Ee9k+/yIujF14wGs2Cl0myISb0BV9E6DhEfs= Received: by 10.210.119.5 with SMTP id r5mr2291156ebc.89.1244826785000; Fri, 12 Jun 2009 10:13:05 -0700 (PDT) Received: from ?10.10.19.139? (host-213-189-162-182.brutele.be [213.189.162.182]) by mx.google.com with ESMTPS id 5sm159421eyf.18.2009.06.12.10.13.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 12 Jun 2009 10:13:03 -0700 (PDT) Sender: Nick Pettefar Message-Id: From: Nick@Pettefar.com To: questions@FreeBSD.org In-Reply-To: <20090612093514.663e8e09.wmoran@potentialtech.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Fri, 12 Jun 2009 19:12:36 +0200 References: <20090612093514.663e8e09.wmoran@potentialtech.com> X-Mailer: Apple Mail (2.935.3) Cc: Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 17:13:06 -0000 Nowhere up to that point in the Installation chapter and process (I didn't need to have said) did it mention X. What is the point of having a step-by-step installation manual which then concludes with "If the X server has been configured and a Default Desktop chosen, it can be started by typing startx at the command line." when up to that point it hasn't mentioned X!? Mentioning it three chapters later is not really very helpful to people struggling to get the thing installed step-by-step! Step-by-step guides are difficult to write, especially be people that know a lot about the subject beforehand as details tend to get glossed over. When it doesn't work (as has happened to me) and you have to Ctrl-Alt- Del then you are left feeling lost and confused - a bit like Linux ten years ago. (OpenSuse installed and worked graphically perfect). Shouldn't there be an X configuration stage in the installation process? Nick On 12 Jun 2009, at 15:35, Bill Moran wrote: > In response to Nick@Pettefar.com: > >> In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html >> It says: "If the X server has been configured and a Default Desktop >> chosen, it can be started by typing startx at the command line." but >> nowhere in the manual or the installation program is there any >> information or options on X server configuration or choosing a >> Default >> Desktop! Help! > > You weren't able to find this page?: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html > Or this one?: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x- > config.html > > Nowhere, indeed. > > -- > Bill Moran > http://www.potentialtech.com > http://people.collaborativefusion.com/~wmoran/ bustard# startx xauth: creating new authority file /root/.serverauth.968 X.Org X Server 1.6.0 Release Date: 2009-2-25 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.2-PRERELEASE i386 Current Operating System: FreeBSD bustard.pettefar.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu :/usr/obj/usr/src/sys/GENERIC i386 Build Date: 22 April 2009 02:40:51PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jun 12 17:45:02 2009 (==) Using default built-in configuration (30 lines) (EE) Failed to load module "fbdev" (module does not exist, 0) xclock: not found From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 18:10:22 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB95B106564A for ; Fri, 12 Jun 2009 18:10:22 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [83.235.67.31]) by mx1.freebsd.org (Postfix) with ESMTP id 516558FC25 for ; Fri, 12 Jun 2009 18:10:22 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4468804.home.otenet.gr [94.71.112.52]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n5CIAKWt014085; Fri, 12 Jun 2009 21:10:20 +0300 Message-ID: <4A329A0C.5050103@otenet.gr> Date: Fri, 12 Jun 2009 21:10:20 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.21 (X11/20090414) MIME-Version: 1.0 To: Nick@Pettefar.com References: <20090612093514.663e8e09.wmoran@potentialtech.com> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 18:10:23 -0000 Nick@Pettefar.com wrote: > Nowhere up to that point in the Installation chapter and process (I > didn't need to have said) did it mention X. > > What is the point of having a step-by-step installation manual which > then concludes with "If the X server has been configured and a Default > Desktop chosen, it can be started by typing startx at the command > line." when up to that point it hasn't mentioned X!? Mentioning it > three chapters later is not really very helpful to people struggling > to get the thing installed step-by-step! The Handbook is not really intended to be a "step by step" guide, although some chapters serve this purpose in particular areas. The problem (and sometimes, the strength) of step-by-step how-to guides is that they provide specific instructions for specific setups. For example, if you were to write a "Guide to a FreeBSD Desktop" then obviously this info would appear immediately after the basic install. But bear in mind X is an optional component in FreeBSD, and there are plenty of installations (servers) that don't need it and don't have it. FreeBSD becomes what you want of it, it does not dictate a particular usage. When you install a popular linux distro (like Ubuntu or OpenSuse) you already have a fixed idea of what you will have after a standard install. This is much less so in FreeBSD but you have the power to customize it to your heart's content. This power comes at a price however: you will not be able to be immediately productive with your new system, until you master more than the basics. You have to be more patient, keep on studying and understanding how it works. This knowledge means your system will never break (because you will know how it works, and you will know how to fix it) and its also useful in other systems. (When you learn how X works you can solve GUI problems in Ubuntu too). Please keep up your effort, and be sure FreeBSD will reward you in the end. And we do take documentation very seriously, so please send comments. You are right it is sometimes easy to overlook things that a beginner may stumble upon. > > Step-by-step guides are difficult to write, especially be people that > know a lot about the subject beforehand as details tend to get glossed > over. > > When it doesn't work (as has happened to me) and you have to > Ctrl-Alt-Del then you are left feeling lost and confused - a bit like > Linux ten years ago. (OpenSuse installed and worked graphically > perfect). > > Shouldn't there be an X configuration stage in the installation process? > It would probably be nice to have at least a link to Chapter 5 here. I would suggest to replace this line: "If the X server has been configured and a Default Desktop chosen, it can be started by typing startx at the command line." with something like: "If a graphical desktop is desired, the Xorg server and a desktop environment / widow manager will have to be installed and configured. Please see section " I could do it now, but I believe Glen would like to give it a try ;) From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 18:26:27 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA1F21065710 for ; Fri, 12 Jun 2009 18:26:27 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: from web56501.mail.re3.yahoo.com (web56501.mail.re3.yahoo.com [66.196.97.30]) by mx1.freebsd.org (Postfix) with SMTP id 5EA108FC0A for ; Fri, 12 Jun 2009 18:26:27 +0000 (UTC) (envelope-from neshort@yahoo.com) Received: (qmail 49053 invoked by uid 60001); 12 Jun 2009 18:26:26 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s1024; t=1244831186; bh=ZZYYMJAxbhG4YQ/B4Yu/olo7e561BYUl0X/AS3SlANQ=; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=RVoIDwf8KuOADlaH2ImMdpfYQV3LYjRgrF8iHj3+Dvfjz3VRC/8wMNfdCtMXWGxChIWTGod1GVhm2cTq02S6KB2Fort+T6OSiFj8Pc8+GxyIuh0zhWZ4AB708XQCgviujVv05fq0Bn9e0WoDRqp8lojXoj1ku2SgxjfuQtmiQ8Y= DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=PIzKP/wnRj9Ietgm/I1k6y8NNkX+NMGUE+7M3zrBCrJl7uaIYm+mL3WrZTsTcu+KOkHoQOBa2a2+X7sD8AOqm1Jg/hcuZJvpAX2QiRjcexUm6KHTesDkkTQUXuUXzVYdjSQMJZcYIw7zKueMmjus/TQyxXopSuzUhpbYJkYFQqY=; Message-ID: <808502.49035.qm@web56501.mail.re3.yahoo.com> X-YMail-OSG: 6PW_l9QVM1mhxU.9sbxXHDw2rqAGuhjD6SdQVezjnNUd8IUb1JYY58V9JDgulA6yUNL5IqkPXZ2zegkxheV1khtZpSMpV6cCvshpw_C.lvuE2T_h0nBqAhBoIlz5S099EQfqkoasCGwI9iwxpS6Ik9nxNIFePXRFanwUimDxjJPV4LM65GKbmI6wRuOBzmPH.u6Yb0Gl5JD7VKXpOnpV8SPHD69ldIFbWJ6YAM4eCJ.uSOgyEYPK295uwXSsZqeIhZxb1jQHTZxShTBoFnGMW3S_6tOsBpuwhWKgUbuopv1O6mvpH0Z6vlLVvWHskIEDcrZZ..KjV59T8NuxxzxwoOjIshXN Received: from [174.18.66.227] by web56501.mail.re3.yahoo.com via HTTP; Fri, 12 Jun 2009 11:26:26 PDT X-Mailer: YahooMailClassic/5.4.12 YahooMailWebService/0.7.289.15 Date: Fri, 12 Jun 2009 11:26:26 -0700 (PDT) From: Neil Short To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 18:26:28 -0000 --- On Fri, 6/12/09, Mel Flynn wrote: > From: Mel Flynn > Subject: Re: `sched_clock' changed from 144 in sched_4bsd.o to 258 in sched_ule.o > To: freebsd-questions@freebsd.org > Cc: "Neil Short" > Date: Friday, June 12, 2009, 9:21 AM > On Friday 12 June 2009 06:44:50 Neil > Short wrote: > > I'm taking a crack at the port win4bsd. The port > informs me that I need to > > add options SCHED_4BSD > > to my kernel. > > It's an either/or thing. Remove SCHED_ULE. > -- > Mel > I was starting to suspect as much after having found the related man pages. Do you know if sched_4bsd is required for the port win4bsd? It's definitely required for the port install; but I wonder if I can change it back afterwards. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 18:53:58 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D20A9106564A for ; Fri, 12 Jun 2009 18:53:58 +0000 (UTC) (envelope-from prvs=407f7083d=pschmehl_lists@tx.rr.com) Received: from ip-relay-001.utdallas.edu (ip-relay-001.utdallas.edu [129.110.20.111]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4DE8FC0A for ; Fri, 12 Jun 2009 18:53:58 +0000 (UTC) (envelope-from prvs=407f7083d=pschmehl_lists@tx.rr.com) X-Group: RELAYLIST X-IronPort-AV: E=Sophos;i="4.42,210,1243832400"; d="scan'208";a="13571764" Received: from smtp3.utdallas.edu ([129.110.20.110]) by ip-relay-001.utdallas.edu with ESMTP; 12 Jun 2009 13:25:07 -0500 Received: from utd65257.utdallas.edu (utd65257.utdallas.edu [129.110.3.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTPSA id 71B404E94F for ; Fri, 12 Jun 2009 13:25:07 -0500 (CDT) Date: Fri, 12 Jun 2009 18:25:07 +0000 From: Paul Schmehl To: questions@freebsd.org Message-ID: <8599C07C9A94CEAAF3B924C4@utd65257.utdallas.edu> In-Reply-To: <4ad871310906120704g521ed9ffl73234dba6c82ba73@mail.gmail.com> References: <20090612093514.663e8e09.wmoran@potentialtech.com> <4ad871310906120704g521ed9ffl73234dba6c82ba73@mail.gmail.com> X-Mailer: Mulberry/4.0.6 (Linux/x86) X-Munged-Reply-To: Figure it out MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 18:53:59 -0000 --On Friday, June 12, 2009 09:04:50 -0500 Glen Barber = wrote: > > On Fri, Jun 12, 2009 at 9:35 AM, Bill Moran wrote: >> In response to Nick@Pettefar.com: >> >>> In www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html >>> It says: "If the X server has been configured and a Default Desktop >>> chosen, it can be started by typing startx at the command line." but >>> nowhere in the manual or the installation program is there any >>> information or options on X server configuration or choosing a Default >>> Desktop! =C2=A0Help! >> >> You weren't able to find this page?: >> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html >> Or this one?: >> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-config.html >> >> Nowhere, indeed. >> > > I missing the .xinitrc in the GNOME setup as well... Now I just feel > like an idiot as usual. > FreeBSD is Unix, right? That means you can do things any way you want.=20 Presently I login as root on a tty and type "kdm" to start up the GUI. I've=20 done it about five other ways as well. Is there a "right" way to do things in Unix????? --=20 Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* Check the headers before clicking on Reply. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 19:01:09 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6B921065674 for ; Fri, 12 Jun 2009 19:01:09 +0000 (UTC) (envelope-from prvs=407f7083d=pschmehl_lists@tx.rr.com) Received: from ip-relay-001.utdallas.edu (ip-relay-001.utdallas.edu [129.110.20.111]) by mx1.freebsd.org (Postfix) with ESMTP id A44BF8FC26 for ; Fri, 12 Jun 2009 19:01:09 +0000 (UTC) (envelope-from prvs=407f7083d=pschmehl_lists@tx.rr.com) X-Group: RELAYLIST X-IronPort-AV: E=Sophos;i="4.42,211,1243832400"; d="scan'208";a="13573153" Received: from smtp3.utdallas.edu ([129.110.20.110]) by ip-relay-001.utdallas.edu with ESMTP; 12 Jun 2009 14:01:08 -0500 Received: from utd65257.utdallas.edu (utd65257.utdallas.edu [129.110.3.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTPSA id B79FD4EF37; Fri, 12 Jun 2009 14:01:08 -0500 (CDT) Date: Fri, 12 Jun 2009 19:01:08 +0000 From: Paul Schmehl To: Nick@Pettefar.com, questions@FreeBSD.org Message-ID: <2B5D4F0CDC46B10416117B13@utd65257.utdallas.edu> In-Reply-To: References: <20090612093514.663e8e09.wmoran@potentialtech.com> X-Mailer: Mulberry/4.0.6 (Linux/x86) X-Munged-Reply-To: Figure it out MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Paul Schmehl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 19:01:10 -0000 --On Friday, June 12, 2009 12:12:36 -0500 Nick@Pettefar.com wrote: > > Nowhere up to that point in the Installation chapter and process (I > didn't need to have said) did it mention X. > > What is the point of having a step-by-step installation manual which > then concludes with "If the X server has been configured and a Default > Desktop chosen, it can be started by typing startx at the command > line." when up to that point it hasn't mentioned X!? Mentioning it > three chapters later is not really very helpful to people struggling > to get the thing installed step-by-step! > > Step-by-step guides are difficult to write, especially be people that > know a lot about the subject beforehand as details tend to get glossed > over. > > When it doesn't work (as has happened to me) and you have to Ctrl-Alt- > Del then you are left feeling lost and confused - a bit like Linux ten > years ago. (OpenSuse installed and worked graphically perfect). > > Shouldn't there be an X configuration stage in the installation process? > That's probably not a bad idea, so long as it's optional. (I don't want X on my servers.) However, another point that I think is worthwhile is that some verbiage should be added to that section to point to Section 5, which explains how to setup Xorg. So perhaps change this: "If the X server has been configured and a Default Desktop chosen, it can be started by typing startx at the command line." To this: ""If the X server has been configured and a Default Desktop chosen, it can be started by typing startx at the command line. NOTE: If you have not yet installed and configured Xorg (it is not the default), refer to chapter 5 of the Handbook for instructions." Please don't top post. It's confusing as hell. -- Paul Schmehl, Senior Infosec Analyst As if it wasn't already obvious, my opinions are my own and not those of my employer. ******************************************* Check the headers before clicking on Reply. From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 19:08:54 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D15C2106564A for ; Fri, 12 Jun 2009 19:08:54 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (beta.hcst.com [192.52.183.241]) by mx1.freebsd.org (Postfix) with ESMTP id 787078FC1B for ; Fri, 12 Jun 2009 19:08:54 +0000 (UTC) (envelope-from vogelke@hcst.com) Received: from beta.hcst.com (localhost [127.0.0.1]) by beta.hcst.com (8.13.8/8.13.8/Debian-3) with ESMTP id n5CJ8rjk000709 for ; Fri, 12 Jun 2009 15:08:53 -0400 Received: (from vogelke@localhost) by beta.hcst.com (8.13.8/8.13.8/Submit) id n5CJ8rco000708; Fri, 12 Jun 2009 15:08:53 -0400 Received: by kev.msw.wpafb.af.mil (Postfix, from userid 32768) id A4E43BEDF; Fri, 12 Jun 2009 15:07:45 -0400 (EDT) To: freebsd-questions@freebsd.org Organization: Oasis Systems Inc. X-Disclaimer: I don't speak for the USAF or Oasis. X-GPG-ID: 1024D/711752A0 2006-06-27 Karl Vogel X-GPG-Fingerprint: 56EB 6DBF 4224 C953 F417 CC99 4C7C 7D46 7117 52A0 Message-Id: <20090612190745.A4E43BEDF@kev.msw.wpafb.af.mil> Date: Fri, 12 Jun 2009 15:07:45 -0400 (EDT) From: vogelke+unix@pobox.com (Karl Vogel) Subject: Scripts to monitor host availability X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vogelke+unix@pobox.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 19:08:55 -0000 If you want to keep an eye on some hosts without doing a full Nagios install: http://www.hcst.net/~vogelke/src/ishostup/ -- Karl Vogel I don't speak for the USAF or my company If you can't be kind, at least have the decency to be vague. --unknown From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 19:20:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 63144106564A for ; Fri, 12 Jun 2009 19:20:32 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-fx0-f220.google.com (mail-fx0-f220.google.com [209.85.220.220]) by mx1.freebsd.org (Postfix) with ESMTP id D0A848FC0A for ; Fri, 12 Jun 2009 19:20:31 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by fxm20 with SMTP id 20so2204911fxm.43 for ; Fri, 12 Jun 2009 12:20:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=JrN51w9HAcmU/9bFOZQbT+tMn4ACHpkPSDhYGL+JW6w=; b=PrkaDPfRhsa1nBPj7D00N2rjV7zMkdVta13IwI2cY2+ezkZVtKVX80lP80onSn1qRs meq5fHQToK+tHpZRiSI7AnZSPo6AUmsKYoqDsgGcnSow/7eKuL3Czde5lPKfLvXj4I+g 7Si9WYbg94gYVpu6GDVm03qnl/gjJQAoPmOnY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=lye5dAXJYB+0s9gw3haiM1SrWTfUIak3N+HeTjJNH4pnRc4AFHg2MxPMne5acYuj0i K+MMe5fxUCRzA0iygJ0XbndB1xrq/Nvtcp4M88CzMDRq2cQQ/aEkP3bLz89DwjIZwpMb KhkMyKpkN9J6VRSWLYDkYseyFbKqppYbF0YEs= MIME-Version: 1.0 Received: by 10.204.77.102 with SMTP id f38mr3902984bkk.62.1244834430357; Fri, 12 Jun 2009 12:20:30 -0700 (PDT) In-Reply-To: <20090612190745.A4E43BEDF@kev.msw.wpafb.af.mil> References: <20090612190745.A4E43BEDF@kev.msw.wpafb.af.mil> Date: Fri, 12 Jun 2009 15:20:30 -0400 Message-ID: <4ad871310906121220h1ea80984p50cc9917f6716f4c@mail.gmail.com> From: Glen Barber To: vogelke+unix@pobox.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Scripts to monitor host availability X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 19:20:32 -0000 Karl, On Fri, Jun 12, 2009 at 3:07 PM, Karl Vogel wrote: > If you want to keep an eye on some hosts without doing a full Nagios install: > http://www.hcst.net/~vogelke/src/ishostup/ > Very cool. I'll take a look at it later, as I am going to be setting up a Nagios solution for a colleague. Thanks! -- Glen Barber From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 19:47:38 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5EFC106566C for ; Fri, 12 Jun 2009 19:47:38 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id A774E8FC14 for ; Fri, 12 Jun 2009 19:47:38 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 2F7E0508A2 for ; Fri, 12 Jun 2009 21:47:37 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 12F425088F for ; Fri, 12 Jun 2009 21:47:37 +0200 (CEST) Message-ID: <4A32B0DB.7010004@webrz.net> Date: Fri, 12 Jun 2009 21:47:39 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 19:47:39 -0000 Can someone tell me why I have to recompile all related programs when I upgrade to a newer version of Perl? How easy it would be that all these 'to be recompiled' programs only were linked to just Perl instead of Perl.x.x.x. Or is that a complete wrong way of approach? Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 19:49:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4704E106566B for ; Fri, 12 Jun 2009 19:49:42 +0000 (UTC) (envelope-from sdavtaker@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.25]) by mx1.freebsd.org (Postfix) with ESMTP id 067128FC0A for ; Fri, 12 Jun 2009 19:49:41 +0000 (UTC) (envelope-from sdavtaker@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so1288412qwe.7 for ; Fri, 12 Jun 2009 12:49:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=mlJMGublAxVlfet8oZQjmu12EgDCe5/n60vJXq0IQlQ=; b=l/ISkj2gSZezJggstgdqBtwnvqvc2KzpsPDA2aNKJolfi847R9ENfU6FPryeaAp1H0 XN8xQ+toOyUqiVPEPSvrl1AXE7yulx4jK+IZV9KljFPjw0eqb6s52UwWfF/bSaI0Idet xcNABv2WfrwlEhSerk1zOyRdr3L2jAgje2JSg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=jqBcg6Fwi/ekzsx9rdbMEXvlHguebaGMyQPa2CLaN1PSU9P5fmZ0+U0NcVhaHXB4SG Iq5+XUTB1xLXPuTUDszRjK8qYEpwhFh312EvFX1d44km+CHpDBw0wEyMh5AJzkWBFs5T tcTkIvVdtORXCSgawV91bI3nBVMUEo24hh9FI= MIME-Version: 1.0 Received: by 10.220.77.17 with SMTP id e17mr3790055vck.3.1244834869169; Fri, 12 Jun 2009 12:27:49 -0700 (PDT) Date: Fri, 12 Jun 2009 16:27:49 -0300 Message-ID: From: =?UTF-8?Q?Sd=C3=A4vtaker?= To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Is Zyd driver broken? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 12 Jun 2009 19:49:42 -0000 Im having problems with a usb wifi card. Once every 1 hour i need to unplug it and replug :-( The card is: port 5 addr 2: high speed, power 500 mA, config 1, USB2.0 WLAN(0x1211), ZyDAS(0x0ace), rev 48.10 Connected to: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), nVidia(0x0000), rev 1.00 The dmesg when connection brokes says: zyd0: on uhub1 zyd0: HMAC ZD1211, FW 46.05, RF AL2230, PA 0, address 00:11:e2:07:1c:a0 zyd0: WARNING: using obsoleted IFF_NEEDSGIANT flag zyd0: Ethernet address: 00:11:e2:07:1c:a0 zyd0: link state changed to UP zyd0: zyd_read sleep timeout zyd0: device timeout zyd0: could not transmit buffer: TIMEOUT Then, i unplug it: zyd0: at uhub1 port 5 (addr 2) disconnected zyd0: link state changed to DOWN zyd0: zyd_read sleep timeout zyd0: could not send command (error=IOERROR) zyd0: could not send command (error=IOERROR) zyd0: could not send command (error=IOERROR) zyd0: zyd_read sleep timeout zyd0: could not send command (error=IOERROR) zyd0: could not send command (error=IOERROR) zyd0: could not send command (error=IOERROR) zyd0: detached Then i plug it and starts working again: zyd0: on uhub1 zyd0: HMAC ZD1211, FW 46.05, RF AL2230, PA 0, address 00:11:e2:07:1c:a0 zyd0: WARNING: using obsoleted IFF_NEEDSGIANT flag zyd0: Ethernet address: 00:11:e2:07:1c:a0 zyd0: link state changed to UP The setup is: FreeBSD 7.2-RELEASE-p1 #0: Tue Jun 9 21:30:43 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC And I start the netif form rc.conf: ifconfig_zyd0="WPA DHCP" Any help sill be really appreciated. Sdav From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 20:09:08 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49379106564A for ; Fri, 12 Jun 2009 20:09:08 +0000 (UTC) (envelope-from bcook@poughkeepsieschools.org) Received: from a.outbound.bsdwebsolutions.com (a.outbound.bsdwebsolutions.com [64.72.68.2]) by mx1.freebsd.org (Postfix) with ESMTP id 16D9B8FC0A for ; Fri, 12 Jun 2009 20:09:07 +0000 (UTC) (envelope-from bcook@poughkeepsieschools.org) Received: from mail.bsdwebsolutions.com ([64.72.68.15]) by a.outbound.bsdwebsolutions.com with esmtps (TLSv1:AES256-SHA:256) (BSD Web Solutions, Inc.) (envelope-from ) id 1MFCcO-000AcB-Sk for freebsd-questions@freebsd.org; Fri, 12 Jun 2009 15:40:52 -0400 Received: from [64.72.66.117] (port=51562 helo=mail.poughkeepsieschools.org) by mail.bsdwebsolutions.com with esmtps (TLSv1:AES256-SHA:256) (BSD WebSolutions, Inc.) (envelope-from ) id 1MFCcO-000979-NO for freebsd-questions@freebsd.org ; Fri, 12 Jun 2009 15:40:52 -0400 Received: from [10.20.0.10] (port=65276 helo=mbookpro.tcentral.lan) by mail.poughkeepsieschools.org with esmtpsa (TLSv1:AES256-SHA:256) (BSD WebSolutions, Inc.) (envelope-from ) id 1MFCcO-000G88-HV for freebsd-questions@freebsd.org (authenticated as bcook@poughkeepsieschools.org); Fri, 12 Jun 2009 15:40:52 -0400 X-BSD-Virus-Check: ClamAV 0.94.2/9461 on mail.poughkeepsieschools.org; Fri, 12 Jun 2009 15:40:52 -0400 Message-ID: <4A32AF44.6040700@poughkeepsieschools.org> Date: Fri, 12 Jun 2009 15:40:52 -0400 From: "B. Cook" User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 64.72.66.117 Subject: cups 1.3.10 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: Fri, 12 Jun 2009 20:09:08 -0000 installed cups 1.3.9 on a machine a while back and successfully sharing a dozen or so jetdirects via samba. as part of regular updates I updated to 1.3.10 (no visible problems) until I tried to access the web interface. https://servername:631 I [12/Jun/2009:15:35:03 -0400] Listening to 0.0.0.0:631 on fd 1... I [12/Jun/2009:15:35:03 -0400] Listening to /var/run/cups.sock on fd 3... I [12/Jun/2009:15:35:03 -0400] Resuming new connection processing... E [12/Jun/2009:15:35:10 -0400] encrypt_client: Unable to encrypt connection from 192.168.10.200! E [12/Jun/2009:15:35:10 -0400] encrypt_client: error:14094418:SSL routines:SSL3_READ_BYTES:tlsv1 alert unknown ca W [12/Jun/2009:15:35:17 -0400] Request from "192.168.10.200" using invalid Host: field "servername:631" W [12/Jun/2009:15:35:17 -0400] Request from "192.168.10.200" using invalid Host: field "servername:631" What does this mean? From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 21:09:58 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B952B106564A for ; Fri, 12 Jun 2009 21:09:58 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id 636838FC08 for ; Fri, 12 Jun 2009 21:09:58 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (mailhost3.waddell.com [10.1.10.28]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n5CL9HIJ023341; Fri, 12 Jun 2009 16:09:32 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 4817992080; Fri, 12 Jun 2009 16:09:17 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost3.waddell.com (Postfix) with ESMTP id 3C26A92060; Fri, 12 Jun 2009 16:09:17 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 16:09:16 -0500 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: Fri, 12 Jun 2009 16:09:16 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF5F@WADPEXV0.waddell.com> In-Reply-To: <4A32B0DB.7010004@webrz.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Program update(s) thread-index: AcnrluLjRjd6vr06T7aZ7Ko9krT29gACwpIQ References: <4A32B0DB.7010004@webrz.net> From: "Gary Gatten" To: "Jos Chrispijn" , "FreeBSD Questions" X-OriginalArrivalTime: 12 Jun 2009 21:09:16.0904 (UTC) FILETIME=[0BA01680:01C9EBA2] Cc: Subject: RE: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 21:09:59 -0000 LOL - If you get a good answer to this that would be great! Talk about a giant PITA, I feel your pain!!! -----Original Message----- From: owner-freebsd-questions@freebsd.org [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Jos Chrispijn Sent: Friday, June 12, 2009 2:48 PM To: FreeBSD Questions Subject: Program update(s) Can someone tell me why I have to recompile all related programs when I=20 upgrade to a newer version of Perl? How easy it would be that all these=20 'to be recompiled' programs only were linked to just Perl instead of=20 Perl.x.x.x. Or is that a complete wrong way of approach? Jos Chrispijn _______________________________________________ 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 email is intended to be reviewed by only the intended recipient and may contain information that is privileged and/or confidential. If you are not the intended recipient, you are hereby notified that any review, use, dissemination, disclosure or copying of this email and its attachments, if any, is strictly prohibited. If you have received this email in error, please immediately notify the sender by return email and delete this email from your system."
From owner-freebsd-questions@FreeBSD.ORG Fri Jun 12 23:10:26 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E907F1065678 for ; Fri, 12 Jun 2009 23:10:26 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell.rawbw.com (shell.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id BD8648FC0C for ; Fri, 12 Jun 2009 23:10:26 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from eagle.syrec.org (c-67-188-87-228.hsd1.ca.comcast.net [67.188.87.228]) (authenticated bits=0) by shell.rawbw.com (8.13.6/8.13.6) with ESMTP id n5CNAPL6062504 for ; Fri, 12 Jun 2009 16:10:25 -0700 (PDT) Message-ID: <4A32E060.5090201@rawbw.com> Date: Fri, 12 Jun 2009 16:10:24 -0700 From: Yuri User-Agent: Thunderbird 2.0.0.21 (X11/20090419) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: top shows that multithreaded program uses 19623.14% CPU X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: yuri@rawbw.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jun 2009 23:10:27 -0000 I ran then program with 1500 threads and in top it looked the this: PID USERNAME THR PRI NICE SIZE RES STATE C TIME CPU COMMAND 20382 yuri 1500 99 0 641M 462M umtxn 0 0:00 19623.14% quicksort Where can I read how CPU column is calculated? Some time ago I saw another weird fenomenon when CPU column: 5% CPU load for the pocess that just cycles in CPU. Yuri 7.2-STABLE, i7-920 (4 CPUs) From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 00:25:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DBEF0106564A for ; Sat, 13 Jun 2009 00:25:16 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 6858B8FC18 for ; Sat, 13 Jun 2009 00:25:16 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by ewy8 with SMTP id 8so2871424ewy.43 for ; Fri, 12 Jun 2009 17:25:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=FQDHyHNDO1kdgnQStllc/r1EoZZ/7fyjsxl749pyRZE=; b=fvW4W2Hg9juC8UgMwvBtRkq1YoGnpZd124AP2vf5TPaj4I6HrB4ns1K5udhpdPUrZ2 F3TILVIjXpQARGQdaXLEXCXCJ8mTJmXhMIPfjQG7/xx+nWaVxi39HGkdQrJp1Opk0Eml IjczhPlYQAExw2ciPQ6S3TJAnlL60kvbBbjZ0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=YXiHc6O7CABTtACY1GOH87l0BYi4g3IYPQtGMCotr2vQwrSbnQCTGul30Jn0/AtA3+ 8oVOZidkQhnU/Kh808uxxCF1oNOKomHE2/+ExAKGJsq0E1VGhZdyQiUp3IuAkVY+Z7P5 fiY8/LaDGQzldv+GppwukpbbQPIp1QSd4hTo4= Received: by 10.210.39.8 with SMTP id m8mr4994160ebm.95.1244852714754; Fri, 12 Jun 2009 17:25:14 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id 28sm582298eye.16.2009.06.12.17.25.13 (version=SSLv3 cipher=RC4-MD5); Fri, 12 Jun 2009 17:25:14 -0700 (PDT) Date: Sat, 13 Jun 2009 01:25:11 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090613012511.383b20bb@gumby.homeunix.com> In-Reply-To: <4A32B0DB.7010004@webrz.net> References: <4A32B0DB.7010004@webrz.net> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 00:25:17 -0000 On Fri, 12 Jun 2009 21:47:39 +0200 Jos Chrispijn wrote: > Can someone tell me why I have to recompile all related programs when > I upgrade to a newer version of Perl? For the most part you don't, you can just run perl-after-upgrade. If you are referring to the switch from lang/perl5.8 to lang/perl5.10, then that's exceptional and optional. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 01:48:33 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2A9C106566B for ; Sat, 13 Jun 2009 01:48:33 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from poseidon.ceid.upatras.gr (poseidon.ceid.upatras.gr [150.140.141.169]) by mx1.freebsd.org (Postfix) with ESMTP id 088988FC13 for ; Sat, 13 Jun 2009 01:48:32 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from mail.ceid.upatras.gr (unknown [10.1.0.143]) by poseidon.ceid.upatras.gr (Postfix) with ESMTP id 2EA51EB59CF; Sat, 13 Jun 2009 04:48:31 +0300 (EEST) Received: from localhost (europa.ceid.upatras.gr [127.0.0.1]) by mail.ceid.upatras.gr (Postfix) with ESMTP id DD1974C8003; Sat, 13 Jun 2009 04:48:31 +0300 (EEST) X-Virus-Scanned: amavisd-new at ceid.upatras.gr Received: from mail.ceid.upatras.gr ([127.0.0.1]) by localhost (europa.ceid.upatras.gr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Uxp4LVGyLJtm; Sat, 13 Jun 2009 04:48:31 +0300 (EEST) Received: from kobe.laptop (adsl16-200.kln.forthnet.gr [77.49.143.200]) by mail.ceid.upatras.gr (Postfix) with ESMTP id 87BA94C8001; Sat, 13 Jun 2009 04:48:31 +0300 (EEST) Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n5D1mU9X075955; Sat, 13 Jun 2009 04:48:30 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n5D1mU4C075954; Sat, 13 Jun 2009 04:48:30 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: "Gary Gatten" References: <70C0964126D66F458E688618E1CD008A0793EF4E@WADPEXV0.waddell.com> Date: Sat, 13 Jun 2009 04:48:29 +0300 In-Reply-To: <70C0964126D66F458E688618E1CD008A0793EF4E@WADPEXV0.waddell.com> (Gary Gatten's message of "Thu, 11 Jun 2009 17:09:43 -0500") Message-ID: <87hbyk6h02.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.94 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: reference for beginner on configure/make/compile/linking/etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 01:48:33 -0000 On Thu, 11 Jun 2009 17:09:43 -0500, "Gary Gatten" wrote: > As you may recall from a recent post I've been trying to get nTop > compiled and working on Solaris 10 x86. After 40 - 60 hours (I loose > track) I *THINK* it's actually working for the most part. > > Before certain people get pi$$ed off about this not being a Solaris > list - chill for a sec! > > I'm just looking for some materials that can help me understand the > whole configure/make/compile/linking/etc. stuff. Someone that knew > this stuff could've probably resolved my issues in a few hours. It > seems COMPLETELY overly complex to me - maybe cause the developer > tries to make it as portable as possible, but with every *nix like > things putting files wherever they want, different cc's / ld's, etc. - > I can see where it can get hairy. > > Anyway, TIA for your input. Hopefully this experience and the > references you can point me to will help the next time I try to get > something onto FreeBSD! Hi Gary, The whole exercise seems overly complex, because as Mel Flynn has already written is *is*. A nice illustration of all the bits and pieces you have to integrate when using the `GNU build system' is the one at Wikipedia: http://en.wikipedia.org/wiki/GNU_build_system#Tools_included_in_the_GNU_build_system Merely looking at the various parts of the picture makes the mind boggle, but it may help you get a good idea of what the various steps of building software with the GNU build tools entails. Documentation for the various parts of the GNU build system is available online at the web page of each component. Useful starting points are: - The GNU autoconf homepage http://www.gnu.org/software/autoconf/ - The GNU autoconf manual http://www.gnu.org/software/autoconf/manual/index.html - The GNU automake homepage http://www.gnu.org/software/automake/ - The GNU automake manual http://www.gnu.org/software/automake/manual/index.html - The GNU libtool homepage http://www.gnu.org/software/libtool/ - The GNU libtool manual http://www.gnu.org/software/libtool/manual/ Note that the online copies of the manuals refers to particular versions of these tools. Since the various parts of the GNU build system are notorious for introducing new features and for often breaking backwards compatibility, it is a good idea to read the manual version matching the _exact_ version of these tools you have installed. The manuals are installed in Info format as part of the installation process of these tools, so you can commonly read the local version of the manual by typing: % info '(autoconf)' % info '(automake)' % info '(libtool)' One last thing that is useful to know is that the manuals are not always written in the form of educational material for new users. They are a little like a tutorial and a lot like reference guides. So it may take multiple iterations to understand all the concepts described in one of the manuals, and it usually takes multiple attempts at writing a new project ``from scratch'' before you gain enough experience in their use to know where to look in the manual for more help. This is a catch-22 situation, because the manual already contains a LOT of useful information, but you don't know that it is there, or even that it is going to be useful, until you have already read it a few times. After having worked with autotools-based projects for a few years, here are a few suggestions I have: * Read the manuals at least twice, from cover to cover. Don't worry if some things seem to be written in an ancient alien language. They don't make sense the first time through, but they tend to make more sense in the next iterations through the manuals. Make sure that you read the manuals at *least* twice. The first time some things will not make sense. The second time, you will have a general overview in your mind, and more details will fit with the rest of the puzzle. Every time you re-read the manuals you are likely to find more useful details. The manuals contain a HUGE amount of information, but it takes multiple passes to understand and fully appreciate all of it. * Read the code of projects using the GNU build tools... Look at what other projects are doing with the GNU build tools. By reading lots and lots of code, you will be able to see how others have solved their program's "portability" problems; you will see what they did to customize, extend and adapt the GNU build tools; you will learn new tricks and hacks, see how others write code that runs on multiple operating systems, platforms, machine types, etc. * ... but not all the code out there is `good'. Understand that the complexity of a full-blown build system is big, and as a result many of the projects you looked at misuse or flat out _abuse_ the GNU build tools in horrendous ways. That's ok, as long as you don't blindly copy their (bogus) style. * Write a few small tools of your own that use the GNU build tools. There is *no* *way* to experience some of the gotchas other than falling yourself in the same traps, and discovering for yourself how to solve the related problems with GNU build tools. * Understand that there are inherent limitations or even bugs in the GNU build tools. These limitations make some things either very difficult or impossible to do with the tools (i.e. it is nearly impossible to use automake with custom rules that descend into all ${SUBDIRS} and invoke a specific, locally customized target). * Explore alternatives. As Mel Flynn has written, there are quite a few other toolchains for constructing a build system. CMake[1] seems to be a popular alternative (the KDE projects uses CMake with a certain level of success). SCons[2], Apache Ant[3], and Apache Maven[4] are similar tools. [1] http://www.cmake.org/ [2] http://www.scons.org/ [3] http://ant.apache.org/ [4] http://maven.apache.org/ If all the above sounds like an awful lot of work, you are right! Build automation is a large field. There are a few decades of active development and a bewildering array of tools actively in use today. There are even more tools that were useful years ago, and have either been replaced by others, morphed into more modern toolsets, or just died out. It's an amusing field though, with a lot of challenging and *very* interesting things to keep you busy, and entertained for a long time :-) From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 03:02:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77A6E1065672 for ; Sat, 13 Jun 2009 03:02:41 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost0.waddell.com (mailhost0.waddell.com [12.154.38.61]) by mx1.freebsd.org (Postfix) with ESMTP id 125908FC14 for ; Sat, 13 Jun 2009 03:02:40 +0000 (UTC) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (mailhost3.waddell.com [10.1.10.28]) by mailhost0.waddell.com (8.13.8/8.13.8) with ESMTP id n5D322xQ029855; Fri, 12 Jun 2009 22:02:13 -0500 (CDT) (envelope-from Ggatten@waddell.com) Received: from mailhost3.waddell.com (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 7C65997A09; Fri, 12 Jun 2009 22:01:57 -0500 (CDT) Received: from wadpexf0.waddell.com (wadpexf0.waddell.com [192.168.204.24]) by mailhost3.waddell.com (Postfix) with ESMTP id 61B97979FA; Fri, 12 Jun 2009 22:01:57 -0500 (CDT) Received: from WADPEXV0.waddell.com ([192.168.204.25]) by wadpexf0.waddell.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 12 Jun 2009 22:01:56 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Fri, 12 Jun 2009 22:01:55 -0500 Message-ID: <70C0964126D66F458E688618E1CD008A0793EF7A@WADPEXV0.waddell.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: reference for beginner on configure/make/compile/linking/etc. thread-index: AcnrySqjXifEqh7PSyOJQoFDBQeScwACiTva From: "Gary Gatten" To: X-OriginalArrivalTime: 13 Jun 2009 03:01:56.0841 (UTC) FILETIME=[4FEE3D90:01C9EBD3] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: reference for beginner on configure/make/compile/linking/etc. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 03:02:41 -0000 RVhDRUxMRU5UIGFuc3dlciEhISEgV2hlbiBJIGhhdmUgYSBjb3VwbGUgaHVuZHJlZCBob3VycyBv ZiBmcmVlIHRpbWUgSSdtIGdvbm5hIFJFQUxMWSBkaWcgaW50byB0aGlzIHN0dWZmIQ0KDQotLS0t LSBPcmlnaW5hbCBNZXNzYWdlIC0tLS0tDQpGcm9tOiBHaW9yZ29zIEtlcmFtaWRhcyA8a2VyYW1p ZGFAY2VpZC51cGF0cmFzLmdyPg0KVG86IEdhcnkgR2F0dGVuDQpDYzogZnJlZWJzZC1xdWVzdGlv bnNAZnJlZWJzZC5vcmcgPGZyZWVic2QtcXVlc3Rpb25zQGZyZWVic2Qub3JnPg0KU2VudDogRnJp IEp1biAxMiAyMDo0ODoyOSAyMDA5DQpTdWJqZWN0OiBSZTogcmVmZXJlbmNlIGZvciBiZWdpbm5l ciBvbiBjb25maWd1cmUvbWFrZS9jb21waWxlL2xpbmtpbmcvZXRjLg0KDQpPbiBUaHUsIDExIEp1 biAyMDA5IDE3OjA5OjQzIC0wNTAwLCAiR2FyeSBHYXR0ZW4iIDxHZ2F0dGVuQHdhZGRlbGwuY29t PiB3cm90ZToNCj4gQXMgeW91IG1heSByZWNhbGwgZnJvbSBhIHJlY2VudCBwb3N0IEkndmUgYmVl biB0cnlpbmcgdG8gZ2V0IG5Ub3ANCj4gY29tcGlsZWQgYW5kIHdvcmtpbmcgb24gU29sYXJpcyAx MCB4ODYuICBBZnRlciA0MCAtIDYwIGhvdXJzIChJIGxvb3NlDQo+IHRyYWNrKSBJICpUSElOSyog aXQncyBhY3R1YWxseSB3b3JraW5nIGZvciB0aGUgbW9zdCBwYXJ0Lg0KPg0KPiBCZWZvcmUgY2Vy dGFpbiBwZW9wbGUgZ2V0IHBpJCRlZCBvZmYgYWJvdXQgdGhpcyBub3QgYmVpbmcgYSBTb2xhcmlz DQo+IGxpc3QgLSBjaGlsbCBmb3IgYSBzZWMhDQo+DQo+IEknbSBqdXN0IGxvb2tpbmcgZm9yIHNv bWUgbWF0ZXJpYWxzIHRoYXQgY2FuIGhlbHAgbWUgdW5kZXJzdGFuZCB0aGUNCj4gd2hvbGUgY29u ZmlndXJlL21ha2UvY29tcGlsZS9saW5raW5nL2V0Yy4gc3R1ZmYuICBTb21lb25lIHRoYXQga25l dw0KPiB0aGlzIHN0dWZmIGNvdWxkJ3ZlIHByb2JhYmx5IHJlc29sdmVkIG15IGlzc3VlcyBpbiBh IGZldyBob3Vycy4gIEl0DQo+IHNlZW1zIENPTVBMRVRFTFkgb3Zlcmx5IGNvbXBsZXggdG8gbWUg LSBtYXliZSBjYXVzZSB0aGUgZGV2ZWxvcGVyDQo+IHRyaWVzIHRvIG1ha2UgaXQgYXMgcG9ydGFi bGUgYXMgcG9zc2libGUsIGJ1dCB3aXRoIGV2ZXJ5ICpuaXggbGlrZQ0KPiB0aGluZ3MgcHV0dGlu ZyBmaWxlcyB3aGVyZXZlciB0aGV5IHdhbnQsIGRpZmZlcmVudCBjYydzIC8gbGQncywgZXRjLiAt DQo+IEkgY2FuIHNlZSB3aGVyZSBpdCBjYW4gZ2V0IGhhaXJ5Lg0KPg0KPiBBbnl3YXksIFRJQSBm b3IgeW91ciBpbnB1dC4gIEhvcGVmdWxseSB0aGlzIGV4cGVyaWVuY2UgYW5kIHRoZQ0KPiByZWZl cmVuY2VzIHlvdSBjYW4gcG9pbnQgbWUgdG8gd2lsbCBoZWxwIHRoZSBuZXh0IHRpbWUgSSB0cnkg dG8gZ2V0DQo+IHNvbWV0aGluZyBvbnRvIEZyZWVCU0QhDQoNCkhpIEdhcnksDQoNClRoZSB3aG9s ZSBleGVyY2lzZSBzZWVtcyBvdmVybHkgY29tcGxleCwgYmVjYXVzZSBhcyBNZWwgRmx5bm4gaGFz DQphbHJlYWR5IHdyaXR0ZW4gaXMgKmlzKi4NCg0KQSBuaWNlIGlsbHVzdHJhdGlvbiBvZiBhbGwg dGhlIGJpdHMgYW5kIHBpZWNlcyB5b3UgaGF2ZSB0byBpbnRlZ3JhdGUNCndoZW4gdXNpbmcgdGhl IGBHTlUgYnVpbGQgc3lzdGVtJyBpcyB0aGUgb25lIGF0IFdpa2lwZWRpYToNCg0KICBodHRwOi8v ZW4ud2lraXBlZGlhLm9yZy93aWtpL0dOVV9idWlsZF9zeXN0ZW0jVG9vbHNfaW5jbHVkZWRfaW5f dGhlX0dOVV9idWlsZF9zeXN0ZW0NCg0KTWVyZWx5IGxvb2tpbmcgYXQgdGhlIHZhcmlvdXMgcGFy dHMgb2YgdGhlIHBpY3R1cmUgbWFrZXMgdGhlIG1pbmQNCmJvZ2dsZSwgYnV0IGl0IG1heSBoZWxw IHlvdSBnZXQgYSBnb29kIGlkZWEgb2Ygd2hhdCB0aGUgdmFyaW91cyBzdGVwcyBvZg0KYnVpbGRp bmcgc29mdHdhcmUgd2l0aCB0aGUgR05VIGJ1aWxkIHRvb2xzIGVudGFpbHMuDQoNCkRvY3VtZW50 YXRpb24gZm9yIHRoZSB2YXJpb3VzIHBhcnRzIG9mIHRoZSBHTlUgYnVpbGQgc3lzdGVtIGlzIGF2 YWlsYWJsZQ0Kb25saW5lIGF0IHRoZSB3ZWIgcGFnZSBvZiBlYWNoIGNvbXBvbmVudC4gIFVzZWZ1 bCBzdGFydGluZyBwb2ludHMgYXJlOg0KDQogIC0gVGhlIEdOVSBhdXRvY29uZiBob21lcGFnZQ0K ICAgIGh0dHA6Ly93d3cuZ251Lm9yZy9zb2Z0d2FyZS9hdXRvY29uZi8NCg0KICAtIFRoZSBHTlUg YXV0b2NvbmYgbWFudWFsDQogICAgaHR0cDovL3d3dy5nbnUub3JnL3NvZnR3YXJlL2F1dG9jb25m L21hbnVhbC9pbmRleC5odG1sDQoNCiAgLSBUaGUgR05VIGF1dG9tYWtlIGhvbWVwYWdlDQogICAg aHR0cDovL3d3dy5nbnUub3JnL3NvZnR3YXJlL2F1dG9tYWtlLw0KDQogIC0gVGhlIEdOVSBhdXRv bWFrZSBtYW51YWwNCiAgICBodHRwOi8vd3d3LmdudS5vcmcvc29mdHdhcmUvYXV0b21ha2UvbWFu dWFsL2luZGV4Lmh0bWwNCg0KICAtIFRoZSBHTlUgbGlidG9vbCBob21lcGFnZQ0KICAgIGh0dHA6 Ly93d3cuZ251Lm9yZy9zb2Z0d2FyZS9saWJ0b29sLw0KDQogIC0gVGhlIEdOVSBsaWJ0b29sIG1h bnVhbA0KICAgIGh0dHA6Ly93d3cuZ251Lm9yZy9zb2Z0d2FyZS9saWJ0b29sL21hbnVhbC8NCg0K Tm90ZSB0aGF0IHRoZSBvbmxpbmUgY29waWVzIG9mIHRoZSBtYW51YWxzIHJlZmVycyB0byBwYXJ0 aWN1bGFyIHZlcnNpb25zDQpvZiB0aGVzZSB0b29scy4gIFNpbmNlIHRoZSB2YXJpb3VzIHBhcnRz IG9mIHRoZSBHTlUgYnVpbGQgc3lzdGVtIGFyZQ0Kbm90b3Jpb3VzIGZvciBpbnRyb2R1Y2luZyBu ZXcgZmVhdHVyZXMgYW5kIGZvciBvZnRlbiBicmVha2luZyBiYWNrd2FyZHMNCmNvbXBhdGliaWxp dHksIGl0IGlzIGEgZ29vZCBpZGVhIHRvIHJlYWQgdGhlIG1hbnVhbCB2ZXJzaW9uIG1hdGNoaW5n IHRoZQ0KX2V4YWN0XyB2ZXJzaW9uIG9mIHRoZXNlIHRvb2xzIHlvdSBoYXZlIGluc3RhbGxlZC4N Cg0KVGhlIG1hbnVhbHMgYXJlIGluc3RhbGxlZCBpbiBJbmZvIGZvcm1hdCBhcyBwYXJ0IG9mIHRo ZSBpbnN0YWxsYXRpb24NCnByb2Nlc3Mgb2YgdGhlc2UgdG9vbHMsIHNvIHlvdSBjYW4gY29tbW9u bHkgcmVhZCB0aGUgbG9jYWwgdmVyc2lvbiBvZg0KdGhlIG1hbnVhbCBieSB0eXBpbmc6DQoNCiAg JSBpbmZvICcoYXV0b2NvbmYpJw0KICAlIGluZm8gJyhhdXRvbWFrZSknDQogICUgaW5mbyAnKGxp YnRvb2wpJw0KDQpPbmUgbGFzdCB0aGluZyB0aGF0IGlzIHVzZWZ1bCB0byBrbm93IGlzIHRoYXQg dGhlIG1hbnVhbHMgYXJlIG5vdCBhbHdheXMNCndyaXR0ZW4gaW4gdGhlIGZvcm0gb2YgZWR1Y2F0 aW9uYWwgbWF0ZXJpYWwgZm9yIG5ldyB1c2Vycy4gIFRoZXkgYXJlIGENCmxpdHRsZSBsaWtlIGEg dHV0b3JpYWwgYW5kIGEgbG90IGxpa2UgcmVmZXJlbmNlIGd1aWRlcy4gIFNvIGl0IG1heSB0YWtl DQptdWx0aXBsZSBpdGVyYXRpb25zIHRvIHVuZGVyc3RhbmQgYWxsIHRoZSBjb25jZXB0cyBkZXNj cmliZWQgaW4gb25lIG9mDQp0aGUgbWFudWFscywgYW5kIGl0IHVzdWFsbHkgdGFrZXMgbXVsdGlw bGUgYXR0ZW1wdHMgYXQgd3JpdGluZyBhIG5ldw0KcHJvamVjdCBgYGZyb20gc2NyYXRjaCcnIGJl Zm9yZSB5b3UgZ2FpbiBlbm91Z2ggZXhwZXJpZW5jZSBpbiB0aGVpciB1c2UNCnRvIGtub3cgd2hl cmUgdG8gbG9vayBpbiB0aGUgbWFudWFsIGZvciBtb3JlIGhlbHAuDQoNClRoaXMgaXMgYSBjYXRj aC0yMiBzaXR1YXRpb24sIGJlY2F1c2UgdGhlIG1hbnVhbCBhbHJlYWR5IGNvbnRhaW5zIGEgTE9U DQpvZiB1c2VmdWwgaW5mb3JtYXRpb24sIGJ1dCB5b3UgZG9uJ3Qga25vdyB0aGF0IGl0IGlzIHRo ZXJlLCBvciBldmVuIHRoYXQNCml0IGlzIGdvaW5nIHRvIGJlIHVzZWZ1bCwgdW50aWwgeW91IGhh dmUgYWxyZWFkeSByZWFkIGl0IGEgZmV3IHRpbWVzLg0KDQpBZnRlciBoYXZpbmcgd29ya2VkIHdp dGggYXV0b3Rvb2xzLWJhc2VkIHByb2plY3RzIGZvciBhIGZldyB5ZWFycywgaGVyZQ0KYXJlIGEg ZmV3IHN1Z2dlc3Rpb25zIEkgaGF2ZToNCg0KICAqIFJlYWQgdGhlIG1hbnVhbHMgYXQgbGVhc3Qg dHdpY2UsIGZyb20gY292ZXIgdG8gY292ZXIuDQoNCiAgICBEb24ndCB3b3JyeSBpZiBzb21lIHRo aW5ncyBzZWVtIHRvIGJlIHdyaXR0ZW4gaW4gYW4gYW5jaWVudCBhbGllbg0KICAgIGxhbmd1YWdl LiAgVGhleSBkb24ndCBtYWtlIHNlbnNlIHRoZSBmaXJzdCB0aW1lIHRocm91Z2gsIGJ1dCB0aGV5 DQogICAgdGVuZCB0byBtYWtlIG1vcmUgc2Vuc2UgaW4gdGhlIG5leHQgaXRlcmF0aW9ucyB0aHJv dWdoIHRoZSBtYW51YWxzLg0KDQogICAgTWFrZSBzdXJlIHRoYXQgeW91IHJlYWQgdGhlIG1hbnVh bHMgYXQgKmxlYXN0KiB0d2ljZS4gIFRoZSBmaXJzdA0KICAgIHRpbWUgc29tZSB0aGluZ3Mgd2ls bCBub3QgbWFrZSBzZW5zZS4gIFRoZSBzZWNvbmQgdGltZSwgeW91IHdpbGwNCiAgICBoYXZlIGEg Z2VuZXJhbCBvdmVydmlldyBpbiB5b3VyIG1pbmQsIGFuZCBtb3JlIGRldGFpbHMgd2lsbCBmaXQg d2l0aA0KICAgIHRoZSByZXN0IG9mIHRoZSBwdXp6bGUuICBFdmVyeSB0aW1lIHlvdSByZS1yZWFk IHRoZSBtYW51YWxzIHlvdSBhcmUNCiAgICBsaWtlbHkgdG8gZmluZCBtb3JlIHVzZWZ1bCBkZXRh aWxzLiAgVGhlIG1hbnVhbHMgY29udGFpbiBhIEhVR0UNCiAgICBhbW91bnQgb2YgaW5mb3JtYXRp b24sIGJ1dCBpdCB0YWtlcyBtdWx0aXBsZSBwYXNzZXMgdG8gdW5kZXJzdGFuZA0KICAgIGFuZCBm dWxseSBhcHByZWNpYXRlIGFsbCBvZiBpdC4NCg0KICAqIFJlYWQgdGhlIGNvZGUgb2YgcHJvamVj dHMgdXNpbmcgdGhlIEdOVSBidWlsZCB0b29scy4uLg0KDQogICAgTG9vayBhdCB3aGF0IG90aGVy IHByb2plY3RzIGFyZSBkb2luZyB3aXRoIHRoZSBHTlUgYnVpbGQgdG9vbHMuICBCeQ0KICAgIHJl YWRpbmcgbG90cyBhbmQgbG90cyBvZiBjb2RlLCB5b3Ugd2lsbCBiZSBhYmxlIHRvIHNlZSBob3cg b3RoZXJzDQogICAgaGF2ZSBzb2x2ZWQgdGhlaXIgcHJvZ3JhbSdzICJwb3J0YWJpbGl0eSIgcHJv YmxlbXM7IHlvdSB3aWxsIHNlZQ0KICAgIHdoYXQgdGhleSBkaWQgdG8gY3VzdG9taXplLCBleHRl bmQgYW5kIGFkYXB0IHRoZSBHTlUgYnVpbGQgdG9vbHM7DQogICAgeW91IHdpbGwgbGVhcm4gbmV3 IHRyaWNrcyBhbmQgaGFja3MsIHNlZSBob3cgb3RoZXJzIHdyaXRlIGNvZGUgdGhhdA0KICAgIHJ1 bnMgb24gbXVsdGlwbGUgb3BlcmF0aW5nIHN5c3RlbXMsIHBsYXRmb3JtcywgbWFjaGluZSB0eXBl cywgZXRjLg0KDQogICogLi4uIGJ1dCBub3QgYWxsIHRoZSBjb2RlIG91dCB0aGVyZSBpcyBgZ29v ZCcuDQoNCiAgICBVbmRlcnN0YW5kIHRoYXQgdGhlIGNvbXBsZXhpdHkgb2YgYSBmdWxsLWJsb3du IGJ1aWxkIHN5c3RlbSBpcyBiaWcsDQogICAgYW5kIGFzIGEgcmVzdWx0IG1hbnkgb2YgdGhlIHBy b2plY3RzIHlvdSBsb29rZWQgYXQgbWlzdXNlIG9yIGZsYXQNCiAgICBvdXQgX2FidXNlXyB0aGUg R05VIGJ1aWxkIHRvb2xzIGluIGhvcnJlbmRvdXMgd2F5cy4gIFRoYXQncyBvaywgYXMNCiAgICBs b25nIGFzIHlvdSBkb24ndCBibGluZGx5IGNvcHkgdGhlaXIgKGJvZ3VzKSBzdHlsZS4NCg0KICAq IFdyaXRlIGEgZmV3IHNtYWxsIHRvb2xzIG9mIHlvdXIgb3duIHRoYXQgdXNlIHRoZSBHTlUgYnVp bGQgdG9vbHMuDQoNCiAgICBUaGVyZSBpcyAqbm8qICp3YXkqIHRvIGV4cGVyaWVuY2Ugc29tZSBv ZiB0aGUgZ290Y2hhcyBvdGhlciB0aGFuDQogICAgZmFsbGluZyB5b3Vyc2VsZiBpbiB0aGUgc2Ft ZSB0cmFwcywgYW5kIGRpc2NvdmVyaW5nIGZvciB5b3Vyc2VsZiBob3cNCiAgICB0byBzb2x2ZSB0 aGUgcmVsYXRlZCBwcm9ibGVtcyB3aXRoIEdOVSBidWlsZCB0b29scy4NCg0KICAqIFVuZGVyc3Rh bmQgdGhhdCB0aGVyZSBhcmUgaW5oZXJlbnQgbGltaXRhdGlvbnMgb3IgZXZlbiBidWdzIGluIHRo ZQ0KICAgIEdOVSBidWlsZCB0b29scy4NCg0KICAgIFRoZXNlIGxpbWl0YXRpb25zIG1ha2Ugc29t ZSB0aGluZ3MgZWl0aGVyIHZlcnkgZGlmZmljdWx0IG9yDQogICAgaW1wb3NzaWJsZSB0byBkbyB3 aXRoIHRoZSB0b29scyAoaS5lLiBpdCBpcyBuZWFybHkgaW1wb3NzaWJsZSB0byB1c2UNCiAgICBh dXRvbWFrZSB3aXRoIGN1c3RvbSBydWxlcyB0aGF0IGRlc2NlbmQgaW50byBhbGwgJHtTVUJESVJT fSBhbmQNCiAgICBpbnZva2UgYSBzcGVjaWZpYywgbG9jYWxseSBjdXN0b21pemVkIHRhcmdldCku DQoNCiAgKiBFeHBsb3JlIGFsdGVybmF0aXZlcy4NCg0KICAgIEFzIE1lbCBGbHlubiBoYXMgd3Jp dHRlbiwgdGhlcmUgYXJlIHF1aXRlIGEgZmV3IG90aGVyIHRvb2xjaGFpbnMgZm9yDQogICAgY29u c3RydWN0aW5nIGEgYnVpbGQgc3lzdGVtLiAgQ01ha2VbMV0gc2VlbXMgdG8gYmUgYSBwb3B1bGFy DQogICAgYWx0ZXJuYXRpdmUgKHRoZSBLREUgcHJvamVjdHMgdXNlcyBDTWFrZSB3aXRoIGEgY2Vy dGFpbiBsZXZlbCBvZg0KICAgIHN1Y2Nlc3MpLiAgU0NvbnNbMl0sIEFwYWNoZSBBbnRbM10sIGFu ZCBBcGFjaGUgTWF2ZW5bNF0gYXJlIHNpbWlsYXINCiAgICB0b29scy4NCg0KICAgICAgICBbMV0g aHR0cDovL3d3dy5jbWFrZS5vcmcvDQogICAgICAgIFsyXSBodHRwOi8vd3d3LnNjb25zLm9yZy8N CiAgICAgICAgWzNdIGh0dHA6Ly9hbnQuYXBhY2hlLm9yZy8NCiAgICAgICAgWzRdIGh0dHA6Ly9t YXZlbi5hcGFjaGUub3JnLw0KDQpJZiBhbGwgdGhlIGFib3ZlIHNvdW5kcyBsaWtlIGFuIGF3ZnVs IGxvdCBvZiB3b3JrLCB5b3UgYXJlIHJpZ2h0IQ0KDQpCdWlsZCBhdXRvbWF0aW9uIGlzIGEgbGFy Z2UgZmllbGQuICBUaGVyZSBhcmUgYSBmZXcgZGVjYWRlcyBvZiBhY3RpdmUNCmRldmVsb3BtZW50 IGFuZCBhIGJld2lsZGVyaW5nIGFycmF5IG9mIHRvb2xzIGFjdGl2ZWx5IGluIHVzZSB0b2RheS4N ClRoZXJlIGFyZSBldmVuIG1vcmUgdG9vbHMgdGhhdCB3ZXJlIHVzZWZ1bCB5ZWFycyBhZ28sIGFu ZCBoYXZlIGVpdGhlcg0KYmVlbiByZXBsYWNlZCBieSBvdGhlcnMsIG1vcnBoZWQgaW50byBtb3Jl IG1vZGVybiB0b29sc2V0cywgb3IganVzdCBkaWVkDQpvdXQuICBJdCdzIGFuIGFtdXNpbmcgZmll bGQgdGhvdWdoLCB3aXRoIGEgbG90IG9mIGNoYWxsZW5naW5nIGFuZCAqdmVyeSoNCmludGVyZXN0 aW5nIHRoaW5ncyB0byBrZWVwIHlvdSBidXN5LCBhbmQgZW50ZXJ0YWluZWQgZm9yIGEgbG9uZyB0 aW1lIDotKQ0KDQoKCgoKCjxmb250IHNpemU9IjEiPgo8ZGl2IHN0eWxlPSdib3JkZXI6bm9uZTti b3JkZXItYm90dG9tOmRvdWJsZSB3aW5kb3d0ZXh0IDIuMjVwdDtwYWRkaW5nOjBpbiAwaW4gMS4w cHQgMGluJz4KPC9kaXY+CiJUaGlzIGVtYWlsIGlzIGludGVuZGVkIHRvIGJlIHJldmlld2VkIGJ5 IG9ubHkgdGhlIGludGVuZGVkIHJlY2lwaWVudAogYW5kIG1heSBjb250YWluIGluZm9ybWF0aW9u IHRoYXQgaXMgcHJpdmlsZWdlZCBhbmQvb3IgY29uZmlkZW50aWFsLgogSWYgeW91IGFyZSBub3Qg dGhlIGludGVuZGVkIHJlY2lwaWVudCwgeW91IGFyZSBoZXJlYnkgbm90aWZpZWQgdGhhdAogYW55 IHJldmlldywgdXNlLCBkaXNzZW1pbmF0aW9uLCBkaXNjbG9zdXJlIG9yIGNvcHlpbmcgb2YgdGhp cyBlbWFpbAogYW5kIGl0cyBhdHRhY2htZW50cywgaWYgYW55LCBpcyBzdHJpY3RseSBwcm9oaWJp dGVkLiAgSWYgeW91IGhhdmUKIHJlY2VpdmVkIHRoaXMgZW1haWwgaW4gZXJyb3IsIHBsZWFzZSBp bW1lZGlhdGVseSBub3RpZnkgdGhlIHNlbmRlciBieQogcmV0dXJuIGVtYWlsIGFuZCBkZWxldGUg dGhpcyBlbWFpbCBmcm9tIHlvdXIgc3lzdGVtLiIKPC9mb250PgoK From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 04:09:42 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0290D106564A for ; Sat, 13 Jun 2009 04:09:42 +0000 (UTC) (envelope-from fdterp@juno.com) Received: from outbound-mail.dca.untd.com (outbound-mail.dca.untd.com [64.136.47.15]) by mx1.freebsd.org (Postfix) with SMTP id 88D038FC14 for ; Sat, 13 Jun 2009 04:09:41 +0000 (UTC) (envelope-from fdterp@juno.com) X-UOL-TAGLINE: true Received: from Fred (c-71-200-237-22.hsd1.fl.comcast.net [71.200.237.22]) by smtpout06.dca.untd.com with SMTP id AABFDGJBWAESHLP2 for (sender ); Fri, 12 Jun 2009 20:42:44 -0700 (PDT) From: "Fred Terp" To: Date: Fri, 12 Jun 2009 23:42:42 -0400 Message-ID: MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6838 Importance: Normal Thread-Index: Acnr2QGvSivV2FLiR6CEskY/HTeIOQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-ContentStamp: 3:4:1972362593 X-MAIL-INFO: 348d00cdbc9d982898382dddb5f8487895c988 X-UNTD-OriginStamp: 5r6/IqKUUQp0cw5WJewjzbtVLopYM7G9lHZpWFf5rL7Ve7O+bonVvQ== X-UNTD-Peer-Info: 10.171.42.36|smtpout06.dca.untd.com|smtpout06.dca.untd.com|fdterp@juno.com X-Mailman-Approved-At: Sat, 13 Jun 2009 04:46:04 +0000 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 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: Sat, 13 Jun 2009 04:09:42 -0000 This is a dumb Question which I should know the answer to. I can get gdm to recogize my logins but xdm and wdm wont accept my username/password entrys what am I forgetting? Frederick D. Terp 14985 Rivers Edge Court #135 Fort Myers, Florida 33908-7920 Phone: (239) 822-5439 Email: fdterp@juno.com ____________________________________________________________ Free health insurance quotes. Great rates for individuals and families. Click Now. http://thirdpartyoffers.juno.com/TGL2141/fc/BLSrjpTIn7Iad9XDKaGfKAW6jcrGnkqx3IlKfkpWJvLloNKnO52lR8AfTiw/ From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 06:20:41 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5561D1065673 for ; Sat, 13 Jun 2009 06:20:41 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from mail.prgmr.com (mail.prgmr.com [64.62.173.114]) by mx1.freebsd.org (Postfix) with ESMTP id 44E518FC13 for ; Sat, 13 Jun 2009 06:20:41 +0000 (UTC) (envelope-from mdc@prgmr.com) Received: from frylock.local (c-71-202-68-54.hsd1.ca.comcast.net [71.202.68.54]) by mail.prgmr.com (Postfix) with ESMTP id 19FD168B5F for ; Fri, 12 Jun 2009 23:20:41 -0700 (PDT) Message-ID: <4A334538.4000409@prgmr.com> Date: Fri, 12 Jun 2009 23:20:40 -0700 From: Michael David Crawford Organization: Prgmr.com User-Agent: Thunderbird 2.0.0.21 (Macintosh/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: XC86Config mouse settings for VirtualBox? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 06:20:42 -0000 I'm running FreeBSD 5.2 in VirtualBox. The reason for the old version is that that's the version described in The Design and Implementation of the FreeBSD Operating System - I want to browse and tinker with the kernel sources as I read the book. (Which is excellent - I recommend it highly.) The problem I've got is that I cannot get the mouse to work under X11. If I don't enable the mouse daemon in sysinstall, then I can't move the mouse at all in X11. If I do enable the mouse daemon, then in X11 the cursor mostly stays in one corner or another, but flies wildly about the screen if I try to move it. I've spent two or three hours monkeying with this, and have gotten nowhere. Frankly I am astonished that I couldn't find what I needed either at the http://www.virtualbox.org/ website or in google. VirtualBox is nice when it works, but a major problem with it is that it is *very* poorly documented. For example nowhere on the VirtualBox website does it say that it emulates a PS/2 mouse, or that the emulated video is only VESA and not any particular model of video card. Wherever it might come close to clueing me in on these things, it just says to install the VirtualBox Guest Additions - which are not yet available for FreeBSD! I'm able to get the X11 video working OK, using the VESA driver. Just not the mouse. Once I get a working XF86Config, I'll be happy to share it with the world. I'm using VirtualBox 2.2.4 under Fedora 10 on an x86_64 Xeon e5420 box. Thanks! Mike -- Michael David Crawford mdc@prgmr.com prgmr.com - We Don't Assume You Are Stupid. Xen-Powered Virtual Private Servers: http://prgmr.com/xen From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 06:21:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEAE91065687 for ; Sat, 13 Jun 2009 06:21:14 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9C4928FC17 for ; Sat, 13 Jun 2009 06:21:14 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id 7574B5E24E for ; Sat, 13 Jun 2009 08:21:13 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -1.258 X-Spam-Level: X-Spam-Status: No, score=-1.258 tagged_above=-999 required=5 tests=[AWL=-0.147, BAYES_05=-1.11, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id TPsbm8IWcNK5 for ; Sat, 13 Jun 2009 08:21:08 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id D7FCE5E247 for ; Sat, 13 Jun 2009 08:21:08 +0200 (CEST) Message-ID: <4A334554.90501@eskk.nu> Date: Sat, 13 Jun 2009 08:21:08 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 06:21:15 -0000 Hello list! I try not to disturb the list unless I need to using the list archive to find answers. I've never been successful in searching the archives it always returns No matches were found for ........... Now I see that the search index is not rebuild for a long time -------------- Note:The archive search index was last rebuilt at Thursday, 08 Feb 2007 06:16:51 UTC. Any postings after that will not be found by a search. Index rebuild is usally done once every 24 hours for this list. You can use a "View by date" link below to access more recent postings. --------------- How should I search the list ? /Leslie From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 07:09:28 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D412C106564A for ; Sat, 13 Jun 2009 07:09:28 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (brucec-1-pt.tunnel.tserv4.nyc4.ipv6.he.net [IPv6:2001:470:1f06:c09::2]) by mx1.freebsd.org (Postfix) with ESMTP id 92F948FC28 for ; Sat, 13 Jun 2009 07:09:28 +0000 (UTC) (envelope-from bruce@cran.org.uk) Received: from muon.cran.org.uk (localhost [127.0.0.1]) by muon.cran.org.uk (Postfix) with ESMTP id EEC6319010; Sat, 13 Jun 2009 07:09:26 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on muon X-Spam-Level: X-Spam-Status: No, score=-2.6 required=8.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.5 Received: from gluon.draftnet (unknown [IPv6:2a01:348:10f:0:240:f4ff:fe57:9871]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by muon.cran.org.uk (Postfix) with ESMTPSA; Sat, 13 Jun 2009 07:09:26 +0000 (GMT) Date: Sat, 13 Jun 2009 08:09:23 +0100 From: Bruce Cran To: Leslie Jensen Message-ID: <20090613080923.5e1c98f6@gluon.draftnet> In-Reply-To: <4A334554.90501@eskk.nu> References: <4A334554.90501@eskk.nu> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 07:09:29 -0000 On Sat, 13 Jun 2009 08:21:08 +0200 Leslie Jensen wrote: > Hello list! > > I try not to disturb the list unless I need to using the list archive > to find answers. > > I've never been successful in searching the archives it always returns > > No matches were found for ........... > > > Now I see that the search index is not rebuild for a long time > > -------------- > > Note:The archive search index was last rebuilt at Thursday, 08 Feb > 2007 06:16:51 UTC. Any postings after that will not be found by a > search. Index rebuild is usally done once every 24 hours for this > list. You can use a "View by date" link below to access more recent > postings. > > --------------- > > How should I search the list ? The easiest way is probably to use Google - start at http://groups.google.com/group/ml-freebsd-questions?lnk=srg -- Bruce Cran From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 07:21:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A4A01065670 for ; Sat, 13 Jun 2009 07:21:43 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from mx1.bjare.net (mx1.bjare.net [212.31.160.3]) by mx1.freebsd.org (Postfix) with ESMTP id DBB798FC1C for ; Sat, 13 Jun 2009 07:21:42 +0000 (UTC) (envelope-from leslie@eskk.nu) Received: from localhost (localhost [127.0.0.1]) by mx1.bjare.net (Postfix) with ESMTP id 368B35E2B0 for ; Sat, 13 Jun 2009 09:21:42 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mx1.bjare.net X-Spam-Flag: NO X-Spam-Score: -2.007 X-Spam-Level: X-Spam-Status: No, score=-2.007 tagged_above=-999 required=5 tests=[AWL=0.593, BAYES_00=-2.599, SPF_PASS=-0.001] Received: from mx1.bjare.net ([127.0.0.1]) by localhost (mx1.bjare.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id kt325fwVI8xN for ; Sat, 13 Jun 2009 09:21:38 +0200 (CEST) X-BN-MX1: ja X-BN-MailInfo: BjareNet Received: from bljbsd01.no-ip.org (c-195-216-040-164.static.bjare.net [195.216.40.164]) by mx1.bjare.net (Postfix) with ESMTP id C83355E247 for ; Sat, 13 Jun 2009 09:21:38 +0200 (CEST) Message-ID: <4A335382.8080006@eskk.nu> Date: Sat, 13 Jun 2009 09:21:38 +0200 From: Leslie Jensen User-Agent: Thunderbird 2.0.0.21 (X11/20090407) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Any chance to get the SANE epkowa backend to work 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: Sat, 13 Jun 2009 07:21:43 -0000 I got a good deal on a Epson Perfection 4490 PHOTO scanner, but it's not supported by the SANE Epson backend. One needs the epkowa external backend. Any chance to make it work? /Leslie From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 07:36:57 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3D41106566C for ; Sat, 13 Jun 2009 07:36:57 +0000 (UTC) (envelope-from stopeme@gmail.com) Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by mx1.freebsd.org (Postfix) with ESMTP id 6969E8FC0C for ; Sat, 13 Jun 2009 07:36:57 +0000 (UTC) (envelope-from stopeme@gmail.com) Received: by bwz27 with SMTP id 27so47468bwz.43 for ; Sat, 13 Jun 2009 00:36:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=IuSdXUkwNER/lZ/t3VMO9/1NcLveXbGEoz6lpEUqSZ0=; b=d8hdtb186vaEAaKXd9MHqr6cJkVpmvttoE5+dsLeL5mo5MK/oZgKxKZ9yxh0Eg3PBM UluhG64iRVwzOXtE9d8raSNPzj5n/tPZV58OtEF+bJ6iBpqbmaucH+SosiWNS3L+5Hsj Yc4PnV5U9W1uoLatWHdZtTE7jUOlSbqpfpMv8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=D5qGjW18ODRIsSZ2Wtc2L/bI87qepRNivMta/BPNuZMHFOTacjpQK6fB/tkAZMRgJG irw6Phkr7Z6Avwk/Lkrdz28molpPDKoKS0pXRPXbDU+3AWBUH/4eTQTfGGA1l+tmazfJ 1a+TA5vnjvmclz6bjzDyHGvvwblRUyC1rL43w= Received: by 10.204.100.10 with SMTP id w10mr4438515bkn.211.1244877171494; Sat, 13 Jun 2009 00:12:51 -0700 (PDT) Received: from ?192.168.110.20? ([87.120.162.65]) by mx.google.com with ESMTPS id 1sm2403772fks.11.2009.06.13.00.12.50 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 13 Jun 2009 00:12:50 -0700 (PDT) Message-ID: <4A335167.2080802@gmail.com> Date: Sat, 13 Jun 2009 10:12:39 +0300 From: membrana User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4A334554.90501@eskk.nu> In-Reply-To: <4A334554.90501@eskk.nu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Leslie Jensen Subject: Re: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 07:36:58 -0000 Leslie Jensen wrote: > Hello list! > > I try not to disturb the list unless I need to using the list archive > to find answers. > > I've never been successful in searching the archives it always returns > > No matches were found for ........... > > > Now I see that the search index is not rebuild for a long time > > -------------- > > Note:The archive search index was last rebuilt at Thursday, 08 Feb > 2007 06:16:51 UTC. Any postings after that will not be found by a > search. Index rebuild is usally done once every 24 hours for this > list. You can use a "View by date" link below to access more recent > postings. > > --------------- > > How should I search the list ? > > > /Leslie > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" > unix.derkeiler.com mail-archive.com and alikes From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 08:27:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F083106566C for ; Sat, 13 Jun 2009 08:27:44 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 4928E8FC17 for ; Sat, 13 Jun 2009 08:27:44 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MFOaT-0000id-TT for freebsd-questions@freebsd.org; Sat, 13 Jun 2009 08:27:41 +0000 Received: from pool-71-166-145-46.washdc.east.verizon.net ([71.166.145.46]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 13 Jun 2009 08:27:41 +0000 Received: from nightrecon by pool-71-166-145-46.washdc.east.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 13 Jun 2009 08:27:41 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Michael Powell Followup-To: gmane.os.freebsd.questions Date: Sat, 13 Jun 2009 04:29:20 -0400 Lines: 15 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: pool-71-166-145-46.washdc.east.verizon.net Sender: news Subject: Re: (no subject) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: nightrecon@verizon.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 08:27:44 -0000 Fred Terp wrote: > This is a dumb Question which I should know the answer to. I can get gdm > to recogize my logins but xdm and wdm wont accept my username/password > entrys what am I forgetting? > Not sure if this will help, but are you configuring the ttyv8 line in /etc/ttys? http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-xdm.html -Mike From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 09:07:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2293C1065674 for ; Sat, 13 Jun 2009 09:07:56 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from smtp.lamaiziere.net (net.lamaiziere.net [91.121.44.19]) by mx1.freebsd.org (Postfix) with ESMTP id DB4988FC17 for ; Sat, 13 Jun 2009 09:07:55 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from baby-jane.lamaiziere.net (90.10.87-79.rev.gaoland.net [79.87.10.90]) by smtp.lamaiziere.net (Postfix) with ESMTPA id 9346A63317E; Sat, 13 Jun 2009 11:07:54 +0200 (CEST) Received: from baby-jane.lamaiziere.net (localhost [127.0.0.1]) by baby-jane.lamaiziere.net (Postfix) with ESMTP id 4D04EBC6B; Sat, 13 Jun 2009 11:07:55 +0200 (CEST) Date: Sat, 13 Jun 2009 11:07:54 +0200 From: Patrick Lamaiziere To: "B. Cook" Message-ID: <20090613110754.5ddb1e11@baby-jane.lamaiziere.net> In-Reply-To: <4A32AF44.6040700@poughkeepsieschools.org> References: <4A32AF44.6040700@poughkeepsieschools.org> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: cups 1.3.10 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: Sat, 13 Jun 2009 09:07:56 -0000 Le Fri, 12 Jun 2009 15:40:52 -0400, "B. Cook" a =E9crit : Hello, > installed cups 1.3.9 on a machine a while back and successfully > sharing a dozen or so jetdirects via samba. >=20 > as part of regular updates I updated to 1.3.10 (no visible problems)=20 > until I tried to access the web interface. >=20 > https://servername:631 > E [12/Jun/2009:15:35:10 -0400] encrypt_client: error:14094418:SSL=20 > routines:SSL3_READ_BYTES:tlsv1 alert unknown ca >=20 Do have a certificate in /usr/local/etc/cups/ssl ? From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 10:09:15 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 916271065677 for ; Sat, 13 Jun 2009 10:09:15 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id 4F5C68FC12 for ; Sat, 13 Jun 2009 10:09:15 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 7B4D750C6D for ; Sat, 13 Jun 2009 12:09:14 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 5EF8F50C61 for ; Sat, 13 Jun 2009 12:09:14 +0200 (CEST) Message-ID: <4A337ACD.1010703@webrz.net> Date: Sat, 13 Jun 2009 12:09:17 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 CC: freebsd-questions@freebsd.org References: <4A32B0DB.7010004@webrz.net> <20090613012511.383b20bb@gumby.homeunix.com> In-Reply-To: <20090613012511.383b20bb@gumby.homeunix.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Subject: Re: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 10:09:15 -0000 RW wrote: > For the most part you don't, you can just run perl-after-upgrade. > Good suggestion, thanks. > If you are referring to the switch from lang/perl5.8 to lang/perl5.10, > then that's exceptional and optional. > Exceptional oke, but optional? I have to make sure that all related programs are in line with this version; or do you refer to the perl-after-upgrade option? thanks for sharing, Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 10:36:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC8BF1065673 for ; Sat, 13 Jun 2009 10:36:50 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 2A9D98FC13 for ; Sat, 13 Jun 2009 10:36:50 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n5DAZhn4063389; Sat, 13 Jun 2009 12:35:44 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n5DAZh2e063388; Sat, 13 Jun 2009 12:35:43 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Sat, 13 Jun 2009 12:35:42 +0200 From: Ruben de Groot To: Bernt Hansson Message-ID: <20090613103542.GC54653@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Bernt Hansson , Polytropon , freebsd-questions@freebsd.org References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> <4A326897.9030008@bah.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A326897.9030008@bah.homeip.net> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Sat, 13 Jun 2009 12:35:47 +0200 (CEST) Cc: Polytropon , freebsd-questions@freebsd.org Subject: Re: Compiling in sound driver in 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: Sat, 13 Jun 2009 10:36:51 -0000 On Fri, Jun 12, 2009 at 04:39:19PM +0200, Bernt Hansson typed: > > > Polytropon said the following on 2009-06-12 12:54: > >On Fri, 12 Jun 2009 04:45:59 +0200, Bernt Hansson > >wrote: > >>Mel Flynn said the following on 2009-06-12 01:23: > >>>>FreeBSD 7.2-STABLE #0: Thu Jun 11 21:56:24 CEST 2009 > >>>> root@fqdn:/usr/obj/usr/src/sys/GENERIC > >>> ^^^^^^^ > >>>Did you edit GENERIC > >>Yes. Added sound and snd_hda > > > >Polite note: This is NOT the way to create a custom kernel. The > >handbook mentions that it's advised to create a copy of GENERIC > >and work with that. The handbook, IMO, is wrong. The copy of GENERIC will in the course of upgrades deviate from the original one. You won't pick up improvements, like the scheduler change from 4BSD -> ULE What I do is include the GENERIC file and override things with nooption/nodevice directives. Ruben From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 10:39:33 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86AD1106566B for ; Sat, 13 Jun 2009 10:39:33 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 14FD58FC3E for ; Sat, 13 Jun 2009 10:39:32 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n5DAdT4B063413; Sat, 13 Jun 2009 12:39:29 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n5DAdSlw063412; Sat, 13 Jun 2009 12:39:28 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Sat, 13 Jun 2009 12:39:28 +0200 From: Ruben de Groot To: Paul Schmehl Message-ID: <20090613103928.GD54653@ei.bzerk.org> References: <20090612093514.663e8e09.wmoran@potentialtech.com> <4ad871310906120704g521ed9ffl73234dba6c82ba73@mail.gmail.com> <8599C07C9A94CEAAF3B924C4@utd65257.utdallas.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8599C07C9A94CEAAF3B924C4@utd65257.utdallas.edu> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Sat, 13 Jun 2009 12:39:31 +0200 (CEST) Cc: questions@freebsd.org Subject: Re: FreeBSD 7.2 Installation Manual X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 10:39:33 -0000 On Fri, Jun 12, 2009 at 06:25:07PM +0000, Paul Schmehl typed: > > Is there a "right" way to do things in Unix????? Yes there is. But the burden is on the developer/packager. The right way to do things is to leave the choice to the end-user. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 10:59:44 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C826E106566B for ; Sat, 13 Jun 2009 10:59:44 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: from mail-ew0-f212.google.com (mail-ew0-f212.google.com [209.85.219.212]) by mx1.freebsd.org (Postfix) with ESMTP id 5773C8FC26 for ; Sat, 13 Jun 2009 10:59:44 +0000 (UTC) (envelope-from rwmaillists@googlemail.com) Received: by ewy8 with SMTP id 8so3058325ewy.43 for ; Sat, 13 Jun 2009 03:59:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=ZJdJ9JVPzV3KlOcA6RzM23lEYAS9Fqv5SJfNYkKK4z4=; b=irY8iE5choRHY2eIROECw5OjvgAGBe8H60Uvnt5AKAeYURzIkdHS4Oz2KeTD1lW3A2 MU20IUBQ8xeleXDWY+2k3Xs/TAJNLMcK4hz9xPsDLZ4WDdihMcHMjIkajbtbx60aO7Hi Ojk0OWF44IHlkpl96mi3C2rbQhVmmM5/DY5vg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; b=ZpTUhind+q0R+fMq8JEFDini/FnL4VE7W12XpuAa6nNBSDBwlqOctd8Ek2B/Q3GMCi L9VL0wTccvEohIf3WOknnzWEIEYZwAq8fTqFG6znZxRU/nfmwLpzF7fKBjGvjF2uvfC6 RpSlaN6CNFuEPRP4ctbwFyAnKzVbmt0cQimrk= Received: by 10.210.102.9 with SMTP id z9mr5490604ebb.69.1244890783452; Sat, 13 Jun 2009 03:59:43 -0700 (PDT) Received: from gumby.homeunix.com (bb-87-81-140-128.ukonline.co.uk [87.81.140.128]) by mx.google.com with ESMTPS id 10sm1369416eyd.42.2009.06.13.03.59.42 (version=SSLv3 cipher=RC4-MD5); Sat, 13 Jun 2009 03:59:43 -0700 (PDT) Date: Sat, 13 Jun 2009 11:59:40 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20090613115940.31f17349@gumby.homeunix.com> In-Reply-To: <4A337ACD.1010703@webrz.net> References: <4A32B0DB.7010004@webrz.net> <20090613012511.383b20bb@gumby.homeunix.com> <4A337ACD.1010703@webrz.net> X-Mailer: Claws Mail 3.7.1 (GTK+ 2.16.2; i386-portbld-freebsd7.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 10:59:45 -0000 On Sat, 13 Jun 2009 12:09:17 +0200 Jos Chrispijn wrote: > > RW wrote: > > For the most part you don't, you can just run perl-after-upgrade. > > > > Good suggestion, thanks. > > If you are referring to the switch from lang/perl5.8 to > > lang/perl5.10, then that's exceptional and optional. > > > > Exceptional oke, but optional? I have to make sure that all related > programs are in line with this version; It's optional to go from lang/perl5.8 to lang/perl5.10. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 11:13:47 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D46E9106564A for ; Sat, 13 Jun 2009 11:13:47 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (tunnel490.ipv6.xs4all.nl [IPv6:2001:888:10:1ea::2]) by mx1.freebsd.org (Postfix) with ESMTP id 646968FC15 for ; Sat, 13 Jun 2009 11:13:47 +0000 (UTC) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.14.2/8.14.2) with ESMTP id n5DBDgK7063642; Sat, 13 Jun 2009 13:13:43 +0200 (CEST) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.14.2/8.14.2/Submit) id n5DBDgbl063641; Sat, 13 Jun 2009 13:13:42 +0200 (CEST) (envelope-from mail25@bzerk.org) Date: Sat, 13 Jun 2009 13:13:42 +0200 From: Ruben de Groot To: Jos Chrispijn Message-ID: <20090613111342.GE54653@ei.bzerk.org> Mail-Followup-To: Ruben de Groot , Jos Chrispijn , FreeBSD Questions References: <4A32B0DB.7010004@webrz.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A32B0DB.7010004@webrz.net> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on ei.bzerk.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0.1 (ei.bzerk.org [127.0.0.1]); Sat, 13 Jun 2009 13:13:45 +0200 (CEST) Cc: FreeBSD Questions Subject: Re: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 11:13:48 -0000 On Fri, Jun 12, 2009 at 09:47:39PM +0200, Jos Chrispijn typed: > Can someone tell me why I have to recompile all related programs when I > upgrade to a newer version of Perl? How easy it would be that all these > 'to be recompiled' programs only were linked to just Perl instead of > Perl.x.x.x. Or is that a complete wrong way of approach? Can you guarantee that all these programs will work with perl.y.y.y ? From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 11:38:17 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4BBCC1065674 for ; Sat, 13 Jun 2009 11:38:17 +0000 (UTC) (envelope-from cwhiteh@onetel.com) Received: from woodbine.london.02.net (woodbine.london.02.net [87.194.255.145]) by mx1.freebsd.org (Postfix) with ESMTP id DD7C88FC17 for ; Sat, 13 Jun 2009 11:38:16 +0000 (UTC) (envelope-from cwhiteh@onetel.com) Received: from [192.168.1.72] (93.97.24.219) by woodbine.london.02.net (8.5.016.1) id 4A20329600DFF5A7; Sat, 13 Jun 2009 12:38:15 +0100 Message-ID: <4A338FA6.2010000@onetel.com> Date: Sat, 13 Jun 2009 12:38:14 +0100 From: Chris Whitehouse User-Agent: Thunderbird 2.0.0.21 (X11/20090321) MIME-Version: 1.0 To: Leslie Jensen References: <4A334554.90501@eskk.nu> In-Reply-To: <4A334554.90501@eskk.nu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 11:38:17 -0000 Leslie Jensen wrote: > Hello list! > > I try not to disturb the list unless I need to using the list archive to > find answers. > > I've never been successful in searching the archives it always returns > > No matches were found for ........... > > > Now I see that the search index is not rebuild for a long time > > -------------- > > Note:The archive search index was last rebuilt at Thursday, 08 Feb 2007 > 06:16:51 UTC. Any postings after that will not be found by a search. > Index rebuild is usally done once every 24 hours for this list. You can > use a "View by date" link below to access more recent postings. > > --------------- > > How should I search the list ? Try http://www.freebsd.org/search/search.html#mailinglists (and search for "archive search working") Chris > > > /Leslie > > _______________________________________________ > 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 13 11:41:00 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4B19106564A for ; Sat, 13 Jun 2009 11:41:00 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.170]) by mx1.freebsd.org (Postfix) with ESMTP id AA1B38FC15 for ; Sat, 13 Jun 2009 11:41:00 +0000 (UTC) (envelope-from nealhogan@gmail.com) Received: by wf-out-1314.google.com with SMTP id 24so970544wfg.7 for ; Sat, 13 Jun 2009 04:41:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=UJo3u/G47aCgDtWF8d1WALTTJcCLRJzN7J10YaGTcgs=; b=aRhwb8kE9QA7RGNvQ6wFkfE/4TX4f8cW+C7y8fPsFLgNAmTyHRXFyCeEmlSfkybFNV 0txlDVYAxFsVEbePSZagATeP2rA+/h6QrIgf8yFmMBA6kH/9wgIAHMw+JrNwopcv+dSM 5loCBRIGfZ/bbmuX98iRL1y3y1bHDtCEvWRbs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=cVMF9+qvBr/ZZxt9u7WWAPpXqlbybI3Q8Gt2R8HGysq4Q9V/ag3gBZUgwWThgT/pa5 qeM/dXacsam+rv//1OI9c1wZ+4LQ+/PQgRHywFJDZnHOhmBNHm4YDF2gkdT6lIp2lSwS NF1ZN3y07j2/g3syBQJT5hRILR7tW0mKK+FAI= MIME-Version: 1.0 Received: by 10.142.204.11 with SMTP id b11mr1927420wfg.115.1244893260275; Sat, 13 Jun 2009 04:41:00 -0700 (PDT) In-Reply-To: <4A334554.90501@eskk.nu> References: <4A334554.90501@eskk.nu> Date: Sat, 13 Jun 2009 06:41:00 -0500 Message-ID: From: Neal Hogan To: Leslie Jensen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 11:41:01 -0000 On Sat, Jun 13, 2009 at 1:21 AM, Leslie Jensen wrote: > Hello list! > > I try not to disturb the list unless I need to using the list archive to > find answers. > > I've never been successful in searching the archives it always returns > > No matches were found for ........... > > > Now I see that the search index is not rebuild for a long time > > -------------- > > Note:The archive search index was last rebuilt at Thursday, 08 Feb 2007 > 06:16:51 UTC. Any postings after that will not be found by a search. Index > rebuild is usally done once every 24 hours for this list. You can use a > "View by date" link below to access more recent postings. > > --------------- > > How should I search the list ? http://marc.info/?w=2 > > > /Leslie > > _______________________________________________ > 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 13 12:15:56 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 127971065672 for ; Sat, 13 Jun 2009 12:15:56 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (webrz.xs4all.nl [82.95.248.216]) by mx1.freebsd.org (Postfix) with ESMTP id C4BCA8FC1F for ; Sat, 13 Jun 2009 12:15:55 +0000 (UTC) (envelope-from jos@webrz.net) Received: from webrz.xs4all.nl (localhost [127.0.0.1]) by webrz.xs4all.nl (Postfix) with ESMTP id 7BEF450C6D; Sat, 13 Jun 2009 14:15:54 +0200 (CEST) Received: from [10.10.10.71] (unknown [10.10.10.71]) by webrz.xs4all.nl (Postfix) with ESMTP id 3059950C61; Sat, 13 Jun 2009 14:15:54 +0200 (CEST) Message-ID: <4A33987D.7050004@webrz.net> Date: Sat, 13 Jun 2009 14:15:57 +0200 From: Jos Chrispijn User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: Ruben de Groot , Jos Chrispijn , FreeBSD Questions References: <4A32B0DB.7010004@webrz.net> <20090613111342.GE54653@ei.bzerk.org> In-Reply-To: <20090613111342.GE54653@ei.bzerk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV using ClamSMTP @triton.webrz.net Cc: Subject: Re: Program update(s) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 12:15:56 -0000 Ruben de Groot wrote: > On Fri, Jun 12, 2009 at 09:47:39PM +0200, Jos Chrispijn typed: > > Can you guarantee that all these programs will work with perl.y.y.y ? > That is another thread and a question that someone should ask him/herself prior to the installation itself :-) Jos Chrispijn From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 12:43:32 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEBBF106566C for ; Sat, 13 Jun 2009 12:43:32 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4ED8FC14 for ; Sat, 13 Jun 2009 12:43:32 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 13 Jun 2009 08:43:31 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.10.5-GA) with ESMTP id PYV29623; Sat, 13 Jun 2009 08:43:31 -0400 (EDT) Received: from 209-6-22-188.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.22.188]) by smtp01.lnh.mail.rcn.net with ESMTP; 13 Jun 2009 08:43:31 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18995.40690.737966.844374@jerusalem.litteratus.org> Date: Sat, 13 Jun 2009 08:43:30 -0400 To: Leslie Jensen In-Reply-To: <4A334554.90501@eskk.nu> References: <4A334554.90501@eskk.nu> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Cc: freebsd-questions@freebsd.org Subject: The freebsd-questions Archives X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 12:43:33 -0000 Leslie Jensen writes: > I try not to disturb the list unless I need to using the list archive to > find answers. > > I've never been successful in searching the archives it always returns > > No matches were found for ........... > > > Now I see that the search index is not rebuild for a long time > > -------------- > > Note:The archive search index was last rebuilt at Thursday, 08 > Feb 2007 06:16:51 UTC. Any postings after that will not be found > by a search. Index rebuild is usally done once every 24 hours > for this list. You can use a "View by date" link below to access > more recent postings. If this is true - if this represents a failure to rebuild the index, instead of a failure to accurately record when the index was rebuilt - well, actually it's a problem in both cases just a much bigger one in the former. Please test to make sure (for example, are these messages indexed within 48 hours?) and if true file a PR. You may be on to something. Messages I sent to ports@ on Tuesday have not appeared on the index. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 14:00:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B2231065670 for ; Sat, 13 Jun 2009 14:00:43 +0000 (UTC) (envelope-from rebotados@exemys.com) Received: from server2.hostmailing.com (server2.hostmailing.com [200.110.145.42]) by mx1.freebsd.org (Postfix) with ESMTP id D166F8FC39 for ; Sat, 13 Jun 2009 14:00:42 +0000 (UTC) (envelope-from rebotados@exemys.com) Received: from web.hostmailing.com ([200.110.145.34] helo=www.hostmailing.com) by server2.hostmailing.com with esmtpa (Exim 4.68) (envelope-from ) id 1MFT3u-0001a3-Q2 for freebsd-questions@freebsd.org; Sat, 13 Jun 2009 10:14:22 -0300 Date: Sat, 13 Jun 2009 10:59:29 -0300 To: freebsd-questions@freebsd.org From: Exemys Message-ID: <7cbe75cb8010ba8a72c087c673bb9ddc@www.hostmailing.com> X-Priority: 3 X-Mailer: wh4535 [version 3.1] 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: I/O Serial Tunnel over Ethernet - Cellular - WiFi X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: exemys@exemys.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 14:00:44 -0000 This is a message in multipart MIME format. Your mail client should not be displaying this. Consider upgrading your mail client to view this message correctly. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 14:03:45 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 789E11065697 for ; Sat, 13 Jun 2009 14:03:45 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 0611A8FC1F for ; Sat, 13 Jun 2009 14:03:44 +0000 (UTC) (envelope-from freebsd@edvax.de) Received: from r55.edvax.de (port-92-195-65-8.dynamic.qsc.de [92.195.65.8]) by mx02.qsc.de (Postfix) with ESMTP id 8553616C016B; Sat, 13 Jun 2009 16:03:43 +0200 (CEST) Received: from r55.edvax.de (localhost [127.0.0.1]) by r55.edvax.de (8.14.2/8.14.2) with SMTP id n5DE3bIP001489; Sat, 13 Jun 2009 16:03:37 +0200 (CEST) (envelope-from freebsd@edvax.de) Date: Sat, 13 Jun 2009 16:03:37 +0200 From: Polytropon To: Ruben de Groot Message-Id: <20090613160337.74193046.freebsd@edvax.de> In-Reply-To: <20090613103542.GC54653@ei.bzerk.org> References: <200906111150.00121.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31676C.6020709@bah.homeip.net> <200906111523.55313.mel.flynn+fbsd.questions@mailing.thruhere.net> <4A31C167.9040400@bah.homeip.net> <20090612125419.e418347b.freebsd@edvax.de> <4A326897.9030008@bah.homeip.net> <20090613103542.GC54653@ei.bzerk.org> Organization: EDVAX X-Mailer: Sylpheed 2.4.7 (GTK+ 2.12.1; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Polytropon , freebsd-questions@freebsd.org, Bernt Hansson Subject: Re: Compiling in sound driver in kernel X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Polytropon List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Jun 2009 14:03:46 -0000 On Sat, 13 Jun 2009 12:35:42 +0200, Ruben de Groot wrote: > The handbook, IMO, is wrong. > The copy of GENERIC will in the course of upgrades deviate from the original one. > You won't pick up improvements, like the scheduler change from 4BSD -> ULE I don't think the handbook is wrong, but you mentioned a different, but still completely valid solution: > What I do is include the GENERIC file and override things with nooption/nodevice > directives. Never tried this, but surely will. The last time I compiled a kernel, I made a copy of GENERIC, edited the copy to only include what is really present on the system, and used KERNCONF with this file. So I "composed" a new file on the example of GENERIC. Of course I know that it's not possible to use a kernel config from 4.10 to build a kernel on 7.2, so caution is intended. :-) The benefit of "my" solution is that you are not depending on another file, or have to read it through in order to form the intended nodevice and nooption statements. Anyway, you have to review the file with each system update, to find out if something important changed (e. g. the default scheduler, as you mentioned). -- Polytropon >From Magdeburg, Germany Happy FreeBSD user since 4.0 Andra moi ennepe, Mousa, ... From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 17:11:13 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA16D1065673 for ; Sat, 13 Jun 2009 17:11:13 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out1.uni-muenster.de (ZIVM-OUT1.UNI-MUENSTER.DE [128.176.192.8]) by mx1.freebsd.org (Postfix) with ESMTP id 5018E8FC19 for ; Sat, 13 Jun 2009 17:11:13 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) X-IronPort-AV: E=Sophos;i="4.42,215,1243807200"; d="scan'208";a="274428675" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER05.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay1.uni-muenster.de with ESMTP; 13 Jun 2009 19:11:12 +0200 Received: by ZIVMAILUSER05.UNI-MUENSTER.DE (Postfix, from userid 149459) id 31DD41B07E4; Sat, 13 Jun 2009 19:11:12 +0200 (CEST) Date: Sat, 13 Jun 2009 19:11:11 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Google groups X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 17:11:14 -0000 hi there, i've been using the mailman interface for a long time now to read the various freebsd mailinglists. recently i found out about Google groups which are great and a lot better than the mailman interface imo. (no broken search, etc.) however a lot of mailinglists seem to be missing on google. what's the reason for that and is there a way to tell the guys at google to also list groups like freebsd.usb or freebsd.svn-src-head e.g.? cheers. From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 17:18:16 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F40B21065674 for ; Sat, 13 Jun 2009 17:18:15 +0000 (UTC) (envelope-from tfcheng@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id AFAF88FC15 for ; Sat, 13 Jun 2009 17:18:15 +0000 (UTC) (envelope-from tfcheng@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so1560230ywe.13 for ; Sat, 13 Jun 2009 10:18:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=uVwwzpOD9gCHQg3fwrWYyfYz2ysKc8wU/owC2LBEsSQ=; b=uKDmFGu4tIeVNcz4Wn0fnfeTpjGvaY6mj8KE1+4epDwA0npDMxgtVdzRXN1it+C/H8 58pB9mGFxOZjsF4lc2odA5ubngVvNrDlxBDik+hC2I67xOKoCaJdQIb00hsDnc4yyMB9 /YpGHNNENw2OFlyfGQdIqbq0n2zgmhdTAO9qY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=j8VLBBOyRZRr6AFOlUPFFvQVJcHuee2/618CUrNwlyg1ROKzxi06YDvtqimXzFGp1S OjQ903sbw6XN1AsBQhjAyCs8IpOjf6DdpaLvg9agZYlr047ULLaFSPiNDDfqeNDMfO37 FaKKiXCpRL76iJevfQOX8e5WBQgmZ0fnEk16k= MIME-Version: 1.0 Received: by 10.90.116.6 with SMTP id o6mr4381094agc.34.1244913495150; Sat, 13 Jun 2009 10:18:15 -0700 (PDT) Date: Sat, 13 Jun 2009 13:18:15 -0400 Message-ID: From: Tsu-Fan Cheng To: FreeBSD Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: some suggestions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 17:18:16 -0000 Hi, Recently some errors occurred while I upgrade ports, turned out it was a null entry of dependence in the ports' +CONTENTS, a line of @pkgdep but no corresponding DEPORIGIN. I am not sure which port management caused this trouble, though I used portmaster most of the time, but sometimes I used portupgrade if specified in /usr/ports/UPDATING. I just wonder if some corrections can be made to the port management apps, or to modify pkg install/deinstall app to ignore null entry of dependence. Regards, TFC From owner-freebsd-questions@FreeBSD.ORG Sat Jun 13 23:10:14 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59C661065672 for ; Sat, 13 Jun 2009 23:10:14 +0000 (UTC) (envelope-from dan@nyi.unixathome.org) Received: from nyi.unixathome.org (nyi.unixathome.org [64.147.113.42]) by mx1.freebsd.org (Postfix) with ESMTP id 32F108FC13 for ; Sat, 13 Jun 2009 23:10:13 +0000 (UTC) (envelope-from dan@nyi.unixathome.org) Received: from localhost (localhost [127.0.0.1]) by nyi.unixathome.org (Postfix) with ESMTP id 9BCEF50AE1 for ; Sun, 14 Jun 2009 00:10:12 +0100 (BST) X-Virus-Scanned: amavisd-new at unixathome.org Received: from nyi.unixathome.org ([127.0.0.1]) by localhost (nyi.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jCLb-JUbocrK for ; Sun, 14 Jun 2009 00:10:05 +0100 (BST) Received: by nyi.unixathome.org (Postfix, from userid 1001) id BABA250AD7; Sun, 14 Jun 2009 00:10:04 +0100 (BST) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20090613231004.BABA250AD7@nyi.unixathome.org> Date: Sun, 14 Jun 2009 00:10:04 +0100 (BST) Subject: The FreeBSD Diary: 2009-06-13 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 13 Jun 2009 23:10:14 -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 . RECENT ARTICLES: 2-Dec : Obscuring smtp auth headers If you consider your smtp-auth location to be private, this is what you want. http://freebsddiary.org/smtp-headers-rewrite-auth.php?2 29-Nov : OpenVPN - creating a routed VPN If you have multiple VPN clients, this is a practical solution. http://freebsddiary.org/openvpn-routed.php?2 27-Nov : Creating your own Certificate Authority How to create a CA and generate your own SSL certificates http://freebsddiary.org/openvpn-easy-rsa.php?2 27-Nov : OpenVPN - getting it running Using OpenVPN to create a secure pathway between home and office http://freebsddiary.org/openvpn.php?2 5-Oct : Removing dead mailing lists from Mailman Mailing lists can outlive their usefulness http://freebsddiary.org/mailman-removing-dead-lists.php?2 30-Aug : gmirror - recovering from a failed HDD an HDD failed. gmirror to the rescue. http://freebsddiary.org/gmirror-failure.php?2 6-Jul : ezjail - A jail administration framework This makes jails easier http://freebsddiary.org/ezjail.php?2 24-Jun : Adding gmirror to an existing installation Adding RAID-1 to an existing FreeBSD 7 installation http://freebsddiary.org/gmirror.php?2 20-Mar : ThinkPad x61s Unpacking the box, installing PC-BSD http://freebsddiary.org/thinkpad-x61s.php?2 17-Mar : Using two monitors with X.org The GeForce 8600 GT with two monitors http://freebsddiary.org/xorg-two-screens.php?2 -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference