From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 00:00:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 46ACA16A46C for ; Sun, 1 Jul 2007 00:00:53 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id CEC3713C487 for ; Sun, 1 Jul 2007 00:00:52 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 254B3DFB1D; Sun, 1 Jul 2007 02:00:56 +0200 (CEST) Message-ID: <4686EF2A.6000408@cordula.ws> Date: Sun, 01 Jul 2007 02:02:50 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Modulok References: <128191.89983.qm@web57414.mail.re1.yahoo.com> <64c038660706301605o7cdcd24fvb03af4167d5ca49@mail.gmail.com> In-Reply-To: <64c038660706301605o7cdcd24fvb03af4167d5ca49@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, chloe K Subject: Re: MTU question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 00:00:53 -0000 Modulok wrote: > On 6/30/07, chloe K wrote: >> Hi all >> >> ls our network provider insists to set the mtu to 1600? but I can >> only set >> the freebsd as 1500. >> >> ls there any network issue? >> >> thank you > > A value of 1600 is not standard compliant. A value of 1500 is the > largest MTU for standard ethernet, as stated in RFC 894 - "A Standard > for the Transmission of IP Datagrams over Ethernet Networks", and RFC > 1191 - "Path MTU discovery." Perhaps your provider is confused? > > RFC 894: > "...the maximum length of an IP datagram sent over an Ethernet is 1500 > octets." That's correct, but... perhaps they're not using Ethernet? Some layer 2 technologies also support larger frames, e.g. 4k. However, any router can (and generally will) fragment an IP packet into many IP packets so that they fit into smaller MTUs (provided the don't fragment bit is not set). Those packets will then be routed independently of each other, and usually reassembled at the end point by the TCP stack of the receiving machine. > As far as overriding this to a higher value, you may be restricted in > doing so by your hardware, as stated in the ifconfig(8) manpage, > "...Not all interfaces support setting the MTU, and some interfaces > have range restrictions." > > -Modulok- There are also some other reasons to avoid jumbograms and stick to Ethernet's 1500 MTU (or less, as specified by the ISP, often if they tunnel their traffic to their upstream provider). -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 00:13:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 19C1D16A468 for ; Sun, 1 Jul 2007 00:13:05 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8459C13C455 for ; Sun, 1 Jul 2007 00:13:04 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id CD465DFB31 for ; Sun, 1 Jul 2007 02:13:08 +0200 (CEST) Message-ID: <4686F206.3090601@cordula.ws> Date: Sun, 01 Jul 2007 02:15:02 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> <4686E37A.3080806@u.washington.edu> In-Reply-To: <4686E37A.3080806@u.washington.edu> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 00:13:05 -0000 Garrett Cooper wrote: > Jonathan Horne wrote: >> On Saturday 30 June 2007 16:46:36 Dave wrote: >> >>> Hello, >>> I've got a 6.2 box with a dvd writer in it. I want to back up >>> some dvds >>> to iso files so i can recreate the dvds at a later time should it be >>> needed. I can use dvdbackup to backup in to a directory structure, >>> but i'd >>> rather not mount, create the directory, and iso, i'd rather make the >>> iso >>> directly from the dvd. Any pointers on this? >>> Thanks. >>> Dave. >>> >> >> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024 >> >> this is how i make my .iso files of data disks. >> >> cheers, >> > > Both previous answers assume that you're not trying to backup > copyrighted CDs. In that case you need to deCSS them first, but you're > on your own with that. Which is technically trivially done with: /usr/ports/sysutils/vobcopy if: /usr/ports/multimedia/libdvdread is compiled with: /usr/ports/multimedia/libdvdcss/ support... ... assuming it is legal where you live, or you own the copyright of some CSS-scrambled content, of course. ;-) But it won't give you an ISO yet; though backing that stuff up with growisofs is easy enough. > -Garrett -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 00:23:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C46D916A400 for ; Sun, 1 Jul 2007 00:23:23 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (c220-239-20-82.belrs4.nsw.optusnet.com.au [220.239.20.82]) by mx1.freebsd.org (Postfix) with ESMTP id 2722B13C46A for ; Sun, 1 Jul 2007 00:23:22 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from turion.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by turion.vk2pj.dyndns.org (8.14.1/8.14.1) with ESMTP id l5UNpR4d021006; Sun, 1 Jul 2007 09:51:27 +1000 (EST) (envelope-from peter@turion.vk2pj.dyndns.org) Received: (from peter@localhost) by turion.vk2pj.dyndns.org (8.14.1/8.14.1/Submit) id l5UNpRJW021005; Sun, 1 Jul 2007 09:51:27 +1000 (EST) (envelope-from peter) Date: Sun, 1 Jul 2007 09:51:27 +1000 From: Peter Jeremy To: Nguyen Tam Chinh Message-ID: <20070630235127.GX15680@turion.vk2pj.dyndns.org> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W5WqUoFLvi1M7tJE" Content-Disposition: inline In-Reply-To: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.15 (2007-04-06) Cc: freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 00:23:23 -0000 --W5WqUoFLvi1M7tJE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2007-Jun-27 14:11:19 +0400, Nguyen Tam Chinh wrote: > We're going to build a server with some 1Tb of over 500 million small > files with size from 0,5k to 4k. I'm wonder if the ufs2 can handle > this kind of system well. Short answer: No. Longer answer: FreeBSD and UFS2 have been tweaked to support large numbers of files in larger filesystems and there are no hard limits that you will exceed by having 500,000,000 files in a >1TB FS. However, you will not be able to fsck the FS on an i386 system and will need a lot of RAM+SWAP on amd64 or SPARC64. fsck will also take a _long_ time (hours) to run. Depending on how the files are organised, you may run into severe performance problems with directory searching. > From newfs(8) the min block size is 4k. This > is not optimal in our case, a 1k or 0,5k block is more effective IMHO. > I'd be happy if anyone can suggest what does fragment (block/8) in the > ufs2 mean and how this parameter works. I suggest you read /usr/share/doc/smm/05.fastfs/paper.ascii.gz Whilst this paper discusses UFS1, the basics remain the same. I have tried using a 4K/0.5K UFS1 filesystem in the past and found the performance was very poor. UFS2 was based on 16K/2K and I would expect it to perform even worse with 4K/0.5K. I would suggest you try 8K/1K. BTW, in sizing your system, you will need to allow for both the last space when the file sizes are rounded up to a multiple of the fragment size, as well as the inode size (256 bytes). If you have 1TB of data, it's likely that you will have another 0.5-1TB of overheads. Overall, I suggest you look at an alternative way to store the data. --=20 Peter Jeremy --W5WqUoFLvi1M7tJE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGhux//opHv/APuIcRAioVAJ974lxdGgcd8B6CrgIH3cRBeCf2ggCfWACA XAADXf/2RIfZTDVJLIqAla0= =mRLY -----END PGP SIGNATURE----- --W5WqUoFLvi1M7tJE-- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 00:24:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B035C16A400 for ; Sun, 1 Jul 2007 00:24:52 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from ms-smtp-05.ohiordc.rr.com (ms-smtp-05.ohiordc.rr.com [65.24.5.139]) by mx1.freebsd.org (Postfix) with ESMTP id 7742613C4BB for ; Sun, 1 Jul 2007 00:24:52 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from satellite (cpe-71-64-129-15.woh.res.rr.com [71.64.129.15]) by ms-smtp-05.ohiordc.rr.com (8.13.6/8.13.6) with SMTP id l610OlNb009541; Sat, 30 Jun 2007 20:24:48 -0400 (EDT) Message-ID: <001b01c7bb76$3bac4870$0200a8c0@satellite> From: "Dave" To: "Jonathan Horne" , References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> Date: Sat, 30 Jun 2007 20:24:47 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 00:24:52 -0000 Hello, Thanks for your reply. I don't know if this will make a difference, and i should have mentioned it in my original posts these are dvd videos and i want to get the complete dvd, everything. Thanks. Dave. ----- Original Message ----- From: "Jonathan Horne" To: Sent: Saturday, June 30, 2007 6:39 PM Subject: Re: backing up dvds > On Saturday 30 June 2007 16:46:36 Dave wrote: >> Hello, >> I've got a 6.2 box with a dvd writer in it. I want to back up some >> dvds >> to iso files so i can recreate the dvds at a later time should it be >> needed. I can use dvdbackup to backup in to a directory structure, but >> i'd >> rather not mount, create the directory, and iso, i'd rather make the iso >> directly from the dvd. Any pointers on this? >> 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" > > dd if=/dev/acd0 of=/path/to/filename.iso bs=1024 > > this is how i make my .iso files of data disks. > > cheers, > -- > Jonathan Horne > http://dfwlpiki.dfwlp.org > freebsd@dfwlp.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 Sun Jul 1 00:38:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7940616A400 for ; Sun, 1 Jul 2007 00:38:40 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 0894C13C489 for ; Sun, 1 Jul 2007 00:38:40 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 78A3CDFB36; Sun, 1 Jul 2007 02:38:44 +0200 (CEST) Message-ID: <4686F806.1080809@cordula.ws> Date: Sun, 01 Jul 2007 02:40:38 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Dave References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> <001b01c7bb76$3bac4870$0200a8c0@satellite> In-Reply-To: <001b01c7bb76$3bac4870$0200a8c0@satellite> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 00:38:40 -0000 Dave wrote: > Hello, > Thanks for your reply. I don't know if this will make a difference, > and i should have mentioned it in my original posts these are dvd > videos and i want to get the complete dvd, everything. If it's legal in your part of the world: 1. Install /usr/ports/multimedia/libdvdcss 2. Install /usr/ports/multimedia/libdvdread 3. Install /usr/ports/sysutils/vobcopy 4. Run vobcopy -m to copy everything to harddisk 5. Backup the directory with growisofs BUT, be advised that menus may break, and that .ifo and .bup files may loose meaning (IIRC they refer to physical sectors on the DVD which are lost when copying (and deCSS-ing) the VOBs to disk. But the video/sound stuff is in the VOB. They're all that really matter. If you really want to recreate a DVD that is viewable with hardware DVD players, you'll need to use a DVD authoring software (like multimedia/dvdauthor) and a lot of reading before. Of course, all this is assuming that where you life, you are legally allowed to make a private backup copy, to use DeCSS to this purpose / or that you are the copyright owner of the content (owning the media is not enough). ;-) > Thanks. > Dave. cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 01:54:46 2007 Return-Path: X-Original-To: questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C618416A400 for ; Sun, 1 Jul 2007 01:54:46 +0000 (UTC) (envelope-from WebMaster@somainternet.net) Received: from ginjol.somainternet.net (linux.datacenter.stalker.es [217.76.145.103]) by mx1.freebsd.org (Postfix) with ESMTP id 9992C13C487 for ; Sun, 1 Jul 2007 01:54:36 +0000 (UTC) (envelope-from WebMaster@somainternet.net) Received: by ginjol.somainternet.net (Postfix, from userid 99) id 0F700154B93; Sun, 1 Jul 2007 03:13:25 +0200 (CEST) To: questions@FreeBSD.ORG From: Lloyds TSB Bank Message-Id: <1307467320.4839@lloydstsb.co.uk> Content-Transfer-Encoding: 8bit Date: Sun, 1 Jul 2007 01:54:36 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re-Update Your Online Banking X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 01:54:46 -0000 Date: Sun, 1 Jul 2007 03:13:25 +0200 (CEST) Dear Lloyds Tsb Customer, 2007 Update Due to concerns, for the safety and integrity of the lloyds tsb account we have issued this warning message. It has come to our attention that your Lloyds tsb account information needs to be updated as part of our continuing commitment to protect your account in this year 2007 and to reduce the instance of fraud on our website. If you could please take 5-10 minutes out of your online experience and update your personal records you will not run into any future problems with the online service. Once you have updated your account records your lloydstsb account service will not be interrupted and will continue as normal. To update your lloyds tsb records click on the following link: [1]http://www.lloydstsb.com/signon?LOB=CONS&screenid=Update_Ac ct Thank You. Accounts Management As outlined in our User Agreement, lloyds tsb will periodically send you information about site changes and enhancements. Visit our Privacy Policy and User Agreement if you have any questions. http://www.lloydstsb.com/help/index.html References 1. http://www.lebendiges-mittelalter.org//mambots/customer.ibc.htm From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 04:09:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7AC6716A41F for ; Sun, 1 Jul 2007 04:09:17 +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 5E2C113C44B for ; Sun, 1 Jul 2007 04:09:15 +0000 (UTC) (envelope-from dan@nyi.unixathome.org) Received: by nyi.unixathome.org (Postfix, from userid 1001) id F26FB508E1; Sun, 1 Jul 2007 00:10:06 -0400 (EDT) From: Dan Langille To: freebsd-questions@freebsd.org Message-Id: <20070701041006.F26FB508E1@nyi.unixathome.org> Date: Sun, 1 Jul 2007 00:10:06 -0400 (EDT) Subject: The FreeBSD Diary: 2007-06-10 - 2007-06-30 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 04:09:17 -0000 The FreeBSD Diary contains a large number of practical examples and how-to guides. This message is posted weekly to freebsd-questions@freebsd.org with the aim of letting people know what's available on the website. Before you post a question here it might be a good idea to first search the mailing list archives and/or The FreeBSD Diary . -- Dan Langille BSDCan - http://www.BSDCan.org/ - BSD Conference From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 04:38:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4E8016A421 for ; Sun, 1 Jul 2007 04:38:45 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from ms-smtp-02.ohiordc.rr.com (ms-smtp-02.ohiordc.rr.com [65.24.5.136]) by mx1.freebsd.org (Postfix) with ESMTP id A0DF813C448 for ; Sun, 1 Jul 2007 04:38:45 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from satellite (cpe-71-64-129-15.woh.res.rr.com [71.64.129.15]) by ms-smtp-02.ohiordc.rr.com (8.13.6/8.13.6) with SMTP id l614chlM008555 for ; Sun, 1 Jul 2007 00:38:44 -0400 (EDT) Message-ID: <000001c7bb99$b4f676b0$0200a8c0@satellite> From: "Dave" To: Date: Sun, 1 Jul 2007 00:38:16 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: dvd configuration error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 04:38:45 -0000 Hello, I've gota 6.2 box with a dvd writer in it. I'm having what i believe is a configuration error on my part, which is driving me crazy. I've got the device installed, it shows up in dmesg as /dev/acd1. I have an fstab entry for it as: /dev/acd1 /cdrom1 cd9660 ro,noauto 0 0 i've tried commenting this line out with the below and it doesn't matter. In loader.conf i have: hw.ata.atapi_dma="1" i can mount a dvdrw with either: mount /cdrom1 or mount /dev/acd1 /cdrom1 and in either case it works fine. I can read dvdrw's with no problem. I'm using dvd+rw-tools 7.0 from ports. I'm trying to blank a dvdrw so i can rewrite to it. I'm using dvd+rw-format /dev/acd1 i've also tried dvd+rw-mediainfo /dev/acd1 and in both cases i'm getting the error: /dev/acd1: unable to open: inappropriate ioctl for device Suggestions appreciated. Thanks. Dave. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 07:30:41 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71DB216A469 for ; Sun, 1 Jul 2007 07:30:41 +0000 (UTC) (envelope-from kometen@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.229]) by mx1.freebsd.org (Postfix) with ESMTP id 328E713C44C for ; Sun, 1 Jul 2007 07:30:41 +0000 (UTC) (envelope-from kometen@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so490492wxd for ; Sun, 01 Jul 2007 00:30:40 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jZhn+2Ur4mB59YBAHkfL5f8HKxOASlxSyStKmSQ5KiX+uSDPYYIGy9iVSrWkpiu1vkPupn41zUvBriLE6802wCCN0XhznFXl5KfjGNSmyWz/Ux0mfTneutL9eIA0NnA5/scqE7C7oq4rUAUwhMrVc08u8DmuY0vcETUQkdndn1Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=UTL/DYtojSkzXyAprwsybg+S8RyWv2yxWlsMI30SBw9J0DpOdOjDm72YgYh3+T0+VP2V5SMHSNRLoUx4xXjLVqUDegaSJ4dPHr6+bNP4ra6u3uomV44eFQQYesT1XWi1Fy71EI/nk0+HlDz36ra0e15Zvfb1lCSoPhicOUca7L8= Received: by 10.70.52.1 with SMTP id z1mr367744wxz.1183275039984; Sun, 01 Jul 2007 00:30:39 -0700 (PDT) Received: by 10.70.72.6 with HTTP; Sun, 1 Jul 2007 00:30:39 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 09:30:39 +0200 From: "Claus Guttesen" To: "Nguyen Tam Chinh" In-Reply-To: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> Cc: freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 07:30:41 -0000 > We're going to build a server with some 1Tb of over 500 million small > files with size from 0,5k to 4k. I'm wonder if the ufs2 can handle > this kind of system well. From newfs(8) the min block size is 4k. This > is not optimal in our case, a 1k or 0,5k block is more effective IMHO. > I'd be happy if anyone can suggest what does fragment (block/8) in the > ufs2 mean and how this parameter works. I know It's better to read the > full ufs2 specification, but hope that someone here can give a hint. > Please advice with optimizations or tricks. > Thank you very much. Try zfs on amd64 unless your app doesn't work well with zfs or your organization doesn't allow current. Current is remarkably stable taking into account zfs is fairly new and ported from solaris and running on current. I'm using it on a 8.2 TB nexsan storage and no crashes during testing and a limited time in production. Some years ago I used FreeBSD (5.2) as nfs-server (using ufs2) on approx. 15 partitions ranging from 400 GB to 2 TB in size. If the server for some reason had crashed the webservers were unable to access the nfs-mounted partitions during the period the server did a snapshot of a partition, in order to perform a background-fsck and thus our website was down. So ufs2 does not scale well. -- regards Claus When lenity and cruelty play for a kingdom, the gentlest gamester is the soonest winner. Shakespeare From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 07:39:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD73F16A468 for ; Sun, 1 Jul 2007 07:39:56 +0000 (UTC) (envelope-from ebonyfly@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8062613C457 for ; Sun, 1 Jul 2007 07:39:56 +0000 (UTC) (envelope-from ebonyfly@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2351068pyb for ; Sun, 01 Jul 2007 00:39:56 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=O9eqdd7lyVWxXkirVGO6dJyrg2g3b945beC9sgXB6WGPxcHqJo4DwounhCSTCjyxiVIGCRZ/5/fx+Arbwon5T3Syf59MA4I55RGwhMwRMrfj/sxmNuUWiJTNNKSMcr3wP3kGXfQ1gdlSjDs+RwzvkQyYPdPiGN+an0W7KLZHN/s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mDFTvy3msNaVk+Kr39eJI7fMjW1zZGQ9qYJvjk6b93IHTk1AnNcZ7t4vSHT6jfBJosUaoNSLw4c8qz+X4PP3kp1eRedaZBIhUcfOA2T0SqBaW+xG7me0CNbNZIfUF0N1OVE/MWMy3rDXXurdn9HUnQAwPTiud8ji4h2oRY6wGcY= Received: by 10.142.255.14 with SMTP id c14mr279704wfi.1183274143791; Sun, 01 Jul 2007 00:15:43 -0700 (PDT) Received: by 10.142.116.11 with HTTP; Sun, 1 Jul 2007 00:15:43 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 03:15:43 -0400 From: "Ebony Fly" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Suexec trouble X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 07:39:56 -0000 Hello, I upgraded from Apache 2.0.53 to 2.2.4 however suexec no longer functions as previously configured. It appears that my new installation did not initially compile suexec, so I did. Now I am faced with the following error when I try to start apached ldc494# ./apache2.sh restart Performing sanity check on apache2 configuration: Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Syntax OK Stopping apache2. Waiting for PIDS: 63180. Starting apache2. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. Warning: SuexecUserGroup directive requires SUEXEC wrapper. I tried reconfiguring suexec to use --with-suexec-bin=PATH, however it does not create a new suexec copy, the timestamp doesn't change on mod_suexec.so. Here are my questions. 1) Where is Apache looking for the wrapper? 2) How do I tell Apache to look somewhere else? 3) How do I recompile just suexec so that it works and fixes the above issue. Thanks in advance. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 10:13:32 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8309116A41F for ; Sun, 1 Jul 2007 10:13:32 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr4.xs4all.nl (smtp-vbr4.xs4all.nl [194.109.24.24]) by mx1.freebsd.org (Postfix) with ESMTP id 209CC13C45A for ; Sun, 1 Jul 2007 10:13:31 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr4.xs4all.nl (8.13.8/8.13.8) with ESMTP id l61ADQvY074642; Sun, 1 Jul 2007 12:13:26 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 1EE28B82A; Sun, 1 Jul 2007 12:13:26 +0200 (CEST) Date: Sun, 1 Jul 2007 12:13:26 +0200 From: Roland Smith To: Jonathan Horne Message-ID: <20070701101326.GB63587@slackbox.xs4all.nl> Mail-Followup-To: Jonathan Horne , freebsd-questions@freebsd.org References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline In-Reply-To: <200706301739.29249.freebsd@dfwlp.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.15 (2007-04-06) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 10:13:32 -0000 --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote: > On Saturday 30 June 2007 16:46:36 Dave wrote: > > Hello, > > I've got a 6.2 box with a dvd writer in it. I want to back up some = dvds > > to iso files so i can recreate the dvds at a later time should it be > > needed. I can use dvdbackup to backup in to a directory structure, but = i'd > > rather not mount, create the directory, and iso, i'd rather make the iso > > directly from the dvd. Any pointers on this? > > Thanks. > > Dave. >=20 > dd if=3D/dev/acd0 of=3D/path/to/filename.iso bs=3D1024 That should be bs=3D2048. AFAIK, data CDs and DVDs have 2k blocks: slackbox:~/tmp$ dd if=3D/dev/cd1 of=3Dfoo.dvd bs=3D1024 dd: /dev/cd1: Invalid argument 0+0 records in 0+0 records out 0 bytes transferred in 0.000146 secs (0 bytes/sec) slackbox:~/tmp$ dd if=3D/dev/cd1 of=3Dfoo.dvd bs=3D2048 ^C10270+0 records in 10270+0 records out 21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec) 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) --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGh35GEnfvsMMhpyURAuJ3AJ9V28sPrwgw8MsY7vyJpZHx8K02AQCeLGAc xowBev08hn0vmhZ9XvzRk54= =vT7C -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 10:47:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 857BB16A400 for ; Sun, 1 Jul 2007 10:47:20 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 2988113C4AD for ; Sun, 1 Jul 2007 10:47:20 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 57EE1DF88B; Sun, 1 Jul 2007 12:47:24 +0200 (CEST) Message-ID: <468786AE.8000502@cordula.ws> Date: Sun, 01 Jul 2007 12:49:18 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Dave References: <000001c7bb99$b4f676b0$0200a8c0@satellite> In-Reply-To: <000001c7bb99$b4f676b0$0200a8c0@satellite> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: dvd configuration error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 10:47:20 -0000 Dave wrote: > I'm trying to blank a dvdrw so i can rewrite to it. I'm using > dvd+rw-format /dev/acd1 i've also tried dvd+rw-mediainfo /dev/acd1 and > in both cases i'm getting the error: > > /dev/acd1: unable to open: inappropriate ioctl for device Try atapicam: # kldload atapicam will create /dev/cd0, /dev/cd1, ..., then use those devices with dvd+rw-* Regards, -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 11:10:30 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E06B16A421 for ; Sun, 1 Jul 2007 11:10:30 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id A7E7E13C487 for ; Sun, 1 Jul 2007 11:10:29 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 29C46DFB6C for ; Sun, 1 Jul 2007 13:10:34 +0200 (CEST) Message-ID: <46878C1C.9040907@cordula.ws> Date: Sun, 01 Jul 2007 13:12:28 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 11:10:30 -0000 I'm using fan-less Soekris (266 MHz) and EPIA (500 MHz) boards with -STABLE. Those boards have been emitting a very high pitched annoying whine, similar to a dog whistle. Not everyone I asked could hear it, but I was, and it was driving me crazy for months. This whine stopped entirely the moment I put kern.hz="100" in /boot/loader.conf and rebooted. Quite relieving! Are there any reasons NOT changing kern.hz from the default 1000 back to 100? With my typical mix of desktop apps (EPIA) and networking / server (Soekris), everything seems to be running just as smoothly with 100 Hz than with 1000 Hz (testing now for two weeks without problems). Even playing videos with mplayer on the EPIA doesn't look different in any way. Is it okay to stay with 100 Hz with this type of low-speed CPU/boards? Or are there some compelling reasons not to? Thanks, -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 11:19:46 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1876B16A421 for ; Sun, 1 Jul 2007 11:19:46 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.77]) by mx1.freebsd.org (Postfix) with ESMTP id 7F7B513C489 for ; Sun, 1 Jul 2007 11:19:45 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atlantis.dyndns.org (athedsl-88034.home.otenet.gr [87.203.97.48]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l61BJgAJ026446 for ; Sun, 1 Jul 2007 14:19:43 +0300 Message-ID: <46878DCD.8060604@otenet.gr> Date: Sun, 01 Jul 2007 14:19:41 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.4 (X11/20070615) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> <20070701101326.GB63587@slackbox.xs4all.nl> In-Reply-To: <20070701101326.GB63587@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: 7bit Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 11:19:46 -0000 Roland Smith wrote: > On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote: > >> On Saturday 30 June 2007 16:46:36 Dave wrote: >> >>> Hello, >>> I've got a 6.2 box with a dvd writer in it. I want to back up some dvds >>> to iso files so i can recreate the dvds at a later time should it be >>> needed. I can use dvdbackup to backup in to a directory structure, but i'd >>> rather not mount, create the directory, and iso, i'd rather make the iso >>> directly from the dvd. Any pointers on this? >>> Thanks. >>> Dave. >>> >> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024 >> > > That should be bs=2048. > > AFAIK, data CDs and DVDs have 2k blocks: > > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=1024 > dd: /dev/cd1: Invalid argument > 0+0 records in > 0+0 records out > 0 bytes transferred in 0.000146 secs (0 bytes/sec) > > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=2048 > ^C10270+0 records in > 10270+0 records out > 21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec) > > Roland > Roland is right, the blocksize is 2048 bytes. In fact the following page is a very nice read: http://www.troubleshooters.com/linux/coasterless.htm The dd command would do a much more accurate image if you also specify the length. The process is described in the page above. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 12:07:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D113B16A400 for ; Sun, 1 Jul 2007 12:07:18 +0000 (UTC) (envelope-from freebsd.ruomad@free.fr) Received: from postfix1-g20.free.fr (postfix1-g20.free.fr [212.27.60.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4C813C4AD for ; Sun, 1 Jul 2007 12:07:18 +0000 (UTC) (envelope-from freebsd.ruomad@free.fr) Received: from smtp2-g19.free.fr (smtp2-g19.free.fr [212.27.42.28]) by postfix1-g20.free.fr (Postfix) with ESMTP id 889EF14E2595 for ; Sun, 1 Jul 2007 13:43:37 +0200 (CEST) Received: from [127.0.0.1] (vln78-1-82-238-160-33.fbx.proxad.net [82.238.160.33]) by smtp2-g19.free.fr (Postfix) with ESMTP id 25E0898C8B for ; Sun, 1 Jul 2007 13:43:35 +0200 (CEST) Message-ID: <468793BF.9010801@free.fr> Date: Sun, 01 Jul 2007 13:45:03 +0200 From: Bruno DAMOUR User-Agent: Thunderbird 2.0.0.0 (Windows/20070326) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: /var/lib disappeared X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 12:07:18 -0000 Hello, I'm begging for help, my /var/lib disappeared. I don't know why, but the most important is to recreate it. What is usually there ? I know i had my postgresql data in there, but anything more ? Please help with whats's in yours... Bruno PS : it must be not that bad because I didn't yet notice anything wrong aside of postgresql PS2 : is there any config change that could have borked my /var/lib ? I'm runnung up-to-date current (< 1W) From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 13:24:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B99816A421 for ; Sun, 1 Jul 2007 13:24:47 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id C920B13C457 for ; Sun, 1 Jul 2007 13:24:46 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so705591uge for ; Sun, 01 Jul 2007 06:24:45 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=sygjsxwEfrZPedyHJXoag5tiXFQC2ngBacWxC5yeot1IFkv2lTMx4VGFxZs+xyVpaDl2r//wuJxloah4MptD5tP+K1ehAegYUMlJVoxiaSm+2FWHEOxFU5GYzuZvthBxO5+FJGMB0lKN355TR+1Byh7Lucqkf0+6b81FZkA6Cr0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=uDPNu6/RAzIkt1oL+71X+hFVDe/6gKV4i8KVbPf8vq/BUVp3vBEZjUjiFdXjOqKhOjaTC7RHhHadeRESYb9z7/rzeSJX3xSmIAvbqRIFcBYKiaXTE7jHFdk1k1acvMTN1yQgY1LU+KkHT16NpQl6glb001db2E2prtPxNE4svpA= Received: by 10.82.183.19 with SMTP id g19mr10705010buf.1183296285209; Sun, 01 Jul 2007 06:24:45 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id y2sm32850973mug.2007.07.01.06.24.43 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 01 Jul 2007 06:24:44 -0700 (PDT) From: Zbigniew Komarnicki To: freebsd-questions@freebsd.org Date: Sun, 1 Jul 2007 15:27:46 +0200 User-Agent: KMail/1.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707011527.47168.cblasius@gmail.com> Subject: Making docs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 13:24:47 -0000 Hello! I want to create documentation in FreeBSD. I read this article: http://www.onlamp.com/pub/a/bsd/2001/02/08/Big_Scary_Daemons.html then I compile and I obtain the following error: ===> books/pmake (install) /bin/rm -f docbook.css /bin/cat /usr/doc/share/misc/docbook.css > docbook.css Index is disabled or no index to generate. /usr/bin/env SP_ENCODING=ISO-8859-1 /usr/local/bin/jade -V html-manifest -ioutput.html -d /usr/doc/share/sgml/default.dsl -ifreebsd.urls.absolute -V %generate-legalnotice-link% -ioutput.html.images -D /usr/doc/en_US.ISO8859-1/books/pmake/.. /../../share/images/books/pmake -D /usr/obj/usr/doc/en_US.ISO8859-1/books/pmake -c /usr/doc/en_US.ISO8859-1/share/sgml/catalog -c /usr/doc/share/sgml/catalog -c /usr/local/share/sgml/docbook/dsssl/modular/catalog -c /usr/local/share/sgml/iso8879/catalog -c /usr/local/share/sgml/jade/catalog -c /usr/local/share/sgml/catalog.ports -t sgml /usr/doc/en_US.ISO8859-1/books/pmake/book.sgml /usr/local/bin/tidy -wrap 90 -m -raw -preserve -f /dev/null -asxml $(/usr/bin/xargs < HTML.manifest) *** Error code 1 (ignored) install -C -o root -g wheel -m 444 $(/usr/bin/xargs < HTML.manifest) /usr/share/doc/en_US.ISO8859-1/books/pmake install -C -o root -g wheel -m 444 docbook.css /usr/share/doc/en_US.ISO8859-1/books/pmake What this error "*** Error code 1 (ignored)" means? I also would like to ask you how to create PDF document, not only HTML? What command I should use to obtain PDF handbook, for example, because I want to print it? Thank you, Zbyszek From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 13:31:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2747F16A468 for ; Sun, 1 Jul 2007 13:31:05 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id 033AA13C45A for ; Sun, 1 Jul 2007 13:31:04 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so1927094waf for ; Sun, 01 Jul 2007 06:31:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Jyl9Mpchimr45hWAFBt4/35fwXcq3Si+Hyr/94jAuxYCzAf9B09sLH4MN9yQUYnh9xuiwSykV2/m1v0aCC5Hg6lpbsH7FrhQ8Q+tEnuo47JT0g4DutWUkyGxS7t6XCyaCpBMuorrCD30cZJqML/sxXEyDDQuXvx6nGb+wkt1tig= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=R63KopNVD60vNwTnLrqlMe8TCtTHLEy3k99+Ui4PYBau6HVyl1oe/EEM/z4qOvvs2af32qxmp+1FfZGeT5+z7MpIcBqRX0v9yQRVd/LUC3rXILO1eXjqxDi3MbxoRmxA9BngA4lnimpZrnInzj55QBB0pKZjPdJcoa2TzQl8u9U= Received: by 10.114.106.1 with SMTP id e1mr4254491wac.1183296664383; Sun, 01 Jul 2007 06:31:04 -0700 (PDT) Received: by 10.114.152.5 with HTTP; Sun, 1 Jul 2007 06:31:04 -0700 (PDT) Message-ID: <85a117790707010631m59beba33uc548674caae0906@mail.gmail.com> Date: Sun, 1 Jul 2007 15:31:04 +0200 From: "Zbigniew Komarnicki" To: freebsd-questions@freebsd.org In-Reply-To: <200707011527.47168.cblasius@gmail.com> MIME-Version: 1.0 References: <200707011527.47168.cblasius@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Making docs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 13:31:05 -0000 > > I will, be forgotten that I install port: textproc/jadetex Thank you, > Zbyszek > From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 13:45:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A810D16A46B for ; Sun, 1 Jul 2007 13:45:34 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from ms-smtp-02.ohiordc.rr.com (ms-smtp-02.ohiordc.rr.com [65.24.5.136]) by mx1.freebsd.org (Postfix) with ESMTP id 72D5413C45E for ; Sun, 1 Jul 2007 13:45:34 +0000 (UTC) (envelope-from dmehler26@woh.rr.com) Received: from satellite (cpe-71-64-129-15.woh.res.rr.com [71.64.129.15]) by ms-smtp-02.ohiordc.rr.com (8.13.6/8.13.6) with SMTP id l61DjSHH009261; Sun, 1 Jul 2007 09:45:28 -0400 (EDT) Message-ID: <000b01c7bbe6$161f2300$0200a8c0@satellite> From: "Dave" To: "cpghost" References: <000001c7bb99$b4f676b0$0200a8c0@satellite> <468786AE.8000502@cordula.ws> Date: Sun, 1 Jul 2007 09:45:27 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Virus-Scanned: Symantec AntiVirus Scan Engine Cc: freebsd-questions@freebsd.org Subject: Re: dvd configuration error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 13:45:34 -0000 Hi, Thanks, atapicam and /dev/cd* devices did it. It fired right up. Thanks. Dave. ----- Original Message ----- From: "cpghost" To: "Dave" Cc: Sent: Sunday, July 01, 2007 6:49 AM Subject: Re: dvd configuration error > Dave wrote: >> I'm trying to blank a dvdrw so i can rewrite to it. I'm using >> dvd+rw-format /dev/acd1 i've also tried dvd+rw-mediainfo /dev/acd1 and >> in both cases i'm getting the error: >> >> /dev/acd1: unable to open: inappropriate ioctl for device > > Try atapicam: > > # kldload atapicam > > will create /dev/cd0, /dev/cd1, ..., > then use those devices with dvd+rw-* > > Regards, > -cpghost. > > -- > Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 13:46:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 006BC16A400 for ; Sun, 1 Jul 2007 13:46:25 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id C92C613C46A for ; Sun, 1 Jul 2007 13:46:25 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id D39E95ED3; Sun, 1 Jul 2007 09:46:24 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vmQpcXY+SV95; Sun, 1 Jul 2007 09:46:21 -0400 (EDT) Received: from [192.168.1.110] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 3F3515C8D; Sun, 1 Jul 2007 09:46:21 -0400 (EDT) Message-ID: <4687B02B.7080106@mac.com> Date: Sun, 01 Jul 2007 09:46:19 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: cpghost References: <46878C1C.9040907@cordula.ws> In-Reply-To: <46878C1C.9040907@cordula.ws> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions Subject: Re: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 13:46:26 -0000 cpghost wrote: > Are there any reasons NOT changing kern.hz from the > default 1000 back to 100? With my typical mix of > desktop apps (EPIA) and networking / server (Soekris), > everything seems to be running just as smoothly with > 100 Hz than with 1000 Hz (testing now for two weeks > without problems). Even playing videos with mplayer > on the EPIA doesn't look different in any way. > > Is it okay to stay with 100 Hz with this type of > low-speed CPU/boards? Or are there some compelling > reasons not to? Actually, many Unix systems ran with HZ=100 until a few years ago, about when Gb ethernet and CPUs became common. A slower machine like the EPIA boxes do quite well with HZ=100/200/250 or so...HZ=1000 is better if you have a fast box running lots of concurrent processes, and/or are proxying or routing network traffic where the difference between 10 ms and 1ms of latency adds up and/or effects other systems. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 14:16:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2391216A400 for ; Sun, 1 Jul 2007 14:16:19 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from gaia.nimnet.asn.au (nimbin.lnk.telstra.net [139.130.45.143]) by mx1.freebsd.org (Postfix) with ESMTP id 9825213C45D for ; Sun, 1 Jul 2007 14:16:17 +0000 (UTC) (envelope-from smithi@nimnet.asn.au) Received: from localhost (smithi@localhost) by gaia.nimnet.asn.au (8.8.8/8.8.8R1.5) with SMTP id AAA28826; Mon, 2 Jul 2007 00:16:05 +1000 (EST) (envelope-from smithi@nimnet.asn.au) Date: Mon, 2 Jul 2007 00:16:04 +1000 (EST) From: Ian Smith To: cpghost In-Reply-To: <20070701120022.DCC6C16A4A5@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-questions@freebsd.org Subject: Re: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 14:16:19 -0000 On Sun, 01 Jul 2007 13:12:28 +0200 cpghost wrote: > I'm using fan-less Soekris (266 MHz) and EPIA (500 MHz) > boards with -STABLE. Those boards have been emitting a > very high pitched annoying whine, similar to a dog > whistle. Not everyone I asked could hear it, but I was, > and it was driving me crazy for months. > > This whine stopped entirely the moment I put > kern.hz="100" in /boot/loader.conf and rebooted. > Quite relieving! Possibly a beat frequency between the 1kHz default slicing and some faster oscillator on board? You could play around with kern.clockrate, sometimes quite small frequency changes make a difference, especially if it's a harmonic. Default HZ jumped from 100 to 1000 probably around the time when more servers were seen running at nearer 3000MHz than 300 :) > Are there any reasons NOT changing kern.hz from the > default 1000 back to 100? With my typical mix of > desktop apps (EPIA) and networking / server (Soekris), > everything seems to be running just as smoothly with > 100 Hz than with 1000 Hz (testing now for two weeks > without problems). Even playing videos with mplayer > on the EPIA doesn't look different in any way. No problem then, and a lighter interrupt load; probably enough to notice in top. If you want to run dummynet or something else? wanting quicker ticking you could try HZ=200 - 500. 200Hz on my Celeron 300 works well. > Is it okay to stay with 100 Hz with this type of > low-speed CPU/boards? Or are there some compelling > reasons not to? If it's happy, smooth and keeping up, it's fine. Cheers, Ian From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 14:35:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8818A16A41F for ; Sun, 1 Jul 2007 14:35:16 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 2097C13C465 for ; Sun, 1 Jul 2007 14:35:15 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so713855uge for ; Sun, 01 Jul 2007 07:35:15 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GTO4Oj/v8Eu6THogzMxOB+kK8NKKqaUgQ8ig2hiewCps3mMMAuYyz8oc0FpmfW3bPSd4dzPz/gRI+MBcPBXroO+2XxjXrrsPj0NlX41QFZTclMrQkoWh2RCXLU7gjD2mUHzjf580kVBXOagOpJUojBFREDccNXuvXELfevylxgo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=W9Vt8iPKSrYguf8DWumFzFhlD/R9R4ftfiZBfahBXTuOz7NV651nKWLfC4BbOnkhfK3NRjPNboMzfmu2iklcCN/w5Vv+kQYu/x6tPGN69Tl8WzrpPnp3unFJSJ5lkPZ6d0fCBOnIySj+KI0wqMxqg5Zory4ribkJcLPxj5mPiYM= Received: by 10.82.134.12 with SMTP id h12mr10831423bud.1183300514575; Sun, 01 Jul 2007 07:35:14 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Sun, 1 Jul 2007 07:35:14 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 09:35:14 -0500 From: "illoai@gmail.com" To: "Bruno DAMOUR" In-Reply-To: <468793BF.9010801@free.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <468793BF.9010801@free.fr> Cc: freebsd-questions@freebsd.org Subject: Re: /var/lib disappeared X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 14:35:16 -0000 On 01/07/07, Bruno DAMOUR wrote: > Hello, > I'm begging for help, my /var/lib disappeared. I don't know why, but the > most important is to recreate it. > What is usually there ? I know i had my postgresql data in there, but > anything more ? > Please help with whats's in yours... > > Bruno > > PS : it must be not that bad because I didn't yet notice anything wrong > aside of postgresql > PS2 : is there any config change that could have borked my /var/lib ? > I'm runnung up-to-date current (< 1W) A couple of empty directories here (I do not have postgresql) and /var/lib/xkb/README.compiled which, after reading it, I strongly doubt is needed for anything to run. Default man 7 hier makes no mention of /var/lib so I would hazard that it is not needed by anything in world. -- -- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 14:35:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B8E616A515 for ; Sun, 1 Jul 2007 14:35:21 +0000 (UTC) (envelope-from walsimou@walsimou.com) Received: from dns.walsimou.com (walscop001.walsimou.com [82.228.201.70]) by mx1.freebsd.org (Postfix) with ESMTP id C2DD713C447 for ; Sun, 1 Jul 2007 14:35:20 +0000 (UTC) (envelope-from walsimou@walsimou.com) Received: from [192.168.1.252] ([192.168.1.252]) by dns.walsimou.com with esmtp; Sun, 01 Jul 2007 16:37:01 +0200 id 0000C274.000000004687BC0E.000014B1 Message-ID: <4687BBC0.7040707@walsimou.com> Date: Sun, 01 Jul 2007 16:35:44 +0200 From: Gaye Abdoulaye User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: mDNSResponder and avahi conflict when updade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 14:35:21 -0000 Hello list, I have a problem when I try to update my "FreeBSD-6.2-STABLE i386 xorg-7.2 kde-3.5.6" with: pkgdb -F portupgrade -aPP It seems that fr-kde-i18n-3.5.6_1 require net/mDNSResponder. But net/mDNSResponder conflicts with avahi+libdns which is required by firefox-2.0.0.4_1. Thanks a lot for any help or suggestion From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 14:39:12 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1BEC16A41F for ; Sun, 1 Jul 2007 14:39:12 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from pollux.dfwlp.com (rrcs-64-183-212-244.sw.biz.rr.com [64.183.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id 8791213C487 for ; Sun, 1 Jul 2007 14:39:12 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by pollux.dfwlp.com (8.13.8/8.13.8) with ESMTP id l61Ed9Me026748 for ; Sun, 1 Jul 2007 09:39:10 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 1 Jul 2007 09:39:09 -0500 User-Agent: KMail/1.9.6 References: <000301c7bb60$264eee30$0200a8c0@satellite> <20070701101326.GB63587@slackbox.xs4all.nl> <46878DCD.8060604@otenet.gr> In-Reply-To: <46878DCD.8060604@otenet.gr> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-7" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707010939.09739.freebsd@dfwlp.com> X-Spam-Status: No, score=-3.9 required=3.6 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on pollux.dfwlp.com Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 14:39:12 -0000 On Sunday 01 July 2007 06:19:41 Manolis Kiagias wrote: > Roland Smith wrote: > > On Sat, Jun 30, 2007 at 05:39:29PM -0500, Jonathan Horne wrote: > >> On Saturday 30 June 2007 16:46:36 Dave wrote: > >>> Hello, > >>> I've got a 6.2 box with a dvd writer in it. I want to back up some > >>> dvds to iso files so i can recreate the dvds at a later time should it > >>> be needed. I can use dvdbackup to backup in to a directory structure, > >>> but i'd rather not mount, create the directory, and iso, i'd rather > >>> make the iso directly from the dvd. Any pointers on this? > >>> Thanks. > >>> Dave. > >> > >> dd if=/dev/acd0 of=/path/to/filename.iso bs=1024 > > > > That should be bs=2048. > > > > AFAIK, data CDs and DVDs have 2k blocks: > > > > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=1024 > > dd: /dev/cd1: Invalid argument > > 0+0 records in > > 0+0 records out > > 0 bytes transferred in 0.000146 secs (0 bytes/sec) > > > > slackbox:~/tmp$ dd if=/dev/cd1 of=foo.dvd bs=2048 > > ^C10270+0 records in > > 10270+0 records out > > 21032960 bytes transferred in 5.096854 secs (4126655 bytes/sec) > > > > Roland > > Roland is right, the blocksize is 2048 bytes. > In fact the following page is a very nice read: > > http://www.troubleshooters.com/linux/coasterless.htm > > The dd command would do a much more accurate image if you also specify > the length. The process is described in the page above. > _______________________________________________ > 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" hehe, shame on me for trying to recall that memory, instead of actually looking it up (which is exactly what i do, each time to run an .iso file off... just to make sure im remembering correctly!) cheers, -- Jonathan Horne http://dfwlpiki.dfwlp.org freebsd@dfwlp.com From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 14:49:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDAEC16A421 for ; Sun, 1 Jul 2007 14:49:51 +0000 (UTC) (envelope-from jlalarcon@gawab.com) Received: from info2.gawab.com (info2.gawab.com [204.97.230.46]) by mx1.freebsd.org (Postfix) with SMTP id 813B013C45A for ; Sun, 1 Jul 2007 14:49:51 +0000 (UTC) (envelope-from jlalarcon@gawab.com) Received: (qmail 29110 invoked by uid 1004); 1 Jul 2007 16:32:35 -0000 Received: from unknown (HELO Endeavour.lordofunix.org) (jlalarcon@gawab.com@84.79.187.101) by gawab.com with SMTP; 1 Jul 2007 16:32:35 -0000 X-Trusted: Whitelisted Date: Sun, 1 Jul 2007 16:49:32 +0200 From: Jose Luis Alarcon Sanchez To: kalin@el.net, freebsd-questions@freebsd.org Message-Id: <20070701164932.ccc541a8.jlalarcon@gawab.com> In-Reply-To: <60832.74.64.6.149.1183082217.squirrel@mail.el.net> References: <60832.74.64.6.149.1183082217.squirrel@mail.el.net> X-Mailer: Sylpheed 2.4.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Sun__1_Jul_2007_16_49_32_+0200_ryO7t77eg3.w6boQ" Cc: Subject: Re: mplayer on 6.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: Sun, 01 Jul 2007 14:49:51 -0000 --Signature=_Sun__1_Jul_2007_16_49_32_+0200_ryO7t77eg3.w6boQ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, 28 Jun 2007 21:56:57 -0400 (EDT) "kalin mintchev" wrote: > hi all... >=20 > just installed mplayer - pkg_add - and it can not play a simple wmv file > yet. so i got the codecs and apparently the codec for wmv has to be here: > /usr/local/lib/win32/ >=20 > what about the other ones - like quicktime, *.acm, *ax?! do they all go in > the same directory? >=20 > thanks.... >=20 Hi Kalin. MPlayer is better installed from ports system. I know it by my own experience. I hope this help you. Regards. Jose. --=20 http://www.lordofunix.org/ =20 Not Registered GNU/Hurd User. Registered BSD User 51101. Registered Linux User #213309. Memories..... You are talking about memories. Rick Deckard. Blade Runner. --Signature=_Sun__1_Jul_2007_16_49_32_+0200_ryO7t77eg3.w6boQ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGh78GMc5IllNXyyQRAh1JAKCDYi5pcZ5TR+0YANW3Jmi5gpu1PwCg8MyN 2lm4oP89rNGNkViVauH5xBo= =mLuA -----END PGP SIGNATURE----- --Signature=_Sun__1_Jul_2007_16_49_32_+0200_ryO7t77eg3.w6boQ-- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 15:17:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 214B916A421 for ; Sun, 1 Jul 2007 15:17:10 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from mail.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.freebsd.org (Postfix) with ESMTP id EEA9E13C43E for ; Sun, 1 Jul 2007 15:17:09 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (localhost.esfm.ipn.mx [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 64BE045414; Sun, 1 Jul 2007 10:09:34 -0500 (CDT) X-Virus-Scanned: amavisd-new at esfm.ipn.mx Received: from mail.esfm.ipn.mx ([127.0.0.1]) by localhost (mail.esfm.ipn.mx [127.0.0.1]) (amavisd-new, port 10024) with LMTP id npn650UFpOhB; Sun, 1 Jul 2007 10:09:32 -0500 (CDT) Received: by mail.esfm.ipn.mx (Postfix, from userid 1000) id F391D4540E; Sun, 1 Jul 2007 10:09:31 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id F20F44540B; Sun, 1 Jul 2007 10:09:31 -0500 (CDT) Date: Sun, 1 Jul 2007 10:09:31 -0500 (CDT) From: Eduardo Viruena Silva To: "illoai@gmail.com" In-Reply-To: Message-ID: <20070701100727.I13141@Gina.esfm.ipn.mx> References: <468793BF.9010801@free.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org, Bruno DAMOUR Subject: Re: /var/lib disappeared X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 15:17:10 -0000 On Sun, 1 Jul 2007, illoai@gmail.com wrote: > On 01/07/07, Bruno DAMOUR wrote: >> Hello, >> I'm begging for help, my /var/lib disappeared. I don't know why, but the >> most important is to recreate it. >> What is usually there ? I know i had my postgresql data in there, but >> anything more ? >> Please help with whats's in yours... >> >> Bruno >> >> PS : it must be not that bad because I didn't yet notice anything wrong >> aside of postgresql >> PS2 : is there any config change that could have borked my /var/lib ? >> I'm runnung up-to-date current (< 1W) > > A couple of empty directories here (I do not > have postgresql) and /var/lib/xkb/README.compiled > which, after reading it, I strongly doubt is needed > for anything to run. > > Default man 7 hier makes no mention of /var/lib > so I would hazard that it is not needed by anything > in world. > > -- try: pkg_info -f \* | grep /var/lib my system does not report but the creation of several directories. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 16:29:04 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4D1816A46B for ; Sun, 1 Jul 2007 16:29:04 +0000 (UTC) (envelope-from sarma@gwup.org) Received: from thales.securesites.net (thales.securesites.net [213.198.89.240]) by mx1.freebsd.org (Postfix) with ESMTP id 4864213C45B for ; Sun, 1 Jul 2007 16:29:04 +0000 (UTC) (envelope-from sarma@gwup.org) Received: from [192.168.168.10] (p57A7683A.dip.t-dialin.net [87.167.104.58]) (authenticated bits=0) by thales.securesites.net (8.13.6.20060614/8.13.6) with ESMTP id l61GHDIm007492 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sun, 1 Jul 2007 16:17:14 GMT Message-ID: <4687D389.5090301@gwup.org> Date: Sun, 01 Jul 2007 18:17:13 +0200 From: Amardeo Sarma User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: FreeBSD Q X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (thales.securesites.net [213.198.89.240]); Sun, 01 Jul 2007 16:17:14 +0000 (GMT) Subject: Problems using STARTTLS and AUTH with sendmail X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 16:29:04 -0000 I tried configuring sendmail for auth to allow remote users to use the server as relay with secure authentication using the instructions in: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/smtp-auth.html The message I used to get with EHLO localhost: 250-STARTTLS stopped (I had it before). Can anyone help by letting me know what I need to set to compile sendmail with TLS again without losing AUTH? sendmail -d0.1 -bv root does not show STARTTLS. Amardeo -- Amardeo Sarma sarma@gwup.org From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:14:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48FBD16A400 for ; Sun, 1 Jul 2007 18:14:08 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id B2C3413C45A for ; Sun, 1 Jul 2007 18:14: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.13.8/8.13.8) with ESMTP id l61IDssg064189; Sun, 1 Jul 2007 20:13:54 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IDr6V064186; Sun, 1 Jul 2007 20:13:53 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:13:53 +0200 (CEST) From: Wojciech Puchar To: Nguyen Tam Chinh In-Reply-To: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> Message-ID: <20070701200639.N64116@wojtek.tensor.gdynia.pl> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:14:08 -0000 > > We're going to build a server with some 1Tb of over 500 million small > files with size from 0,5k to 4k. I'm wonder if the ufs2 can handle > this kind of system well. From newfs(8) the min block size is 4k. This > is not optimal in our case, a 1k or 0,5k block is more effective IMHO. > I'd be happy if anyone can suggest what does fragment (block/8) in the > ufs2 mean and how this parameter works. I know It's better to read the exactly as a block/cluster in windows. fragment is the smallest allocation block. "block" is a group of 8 fragments to make allocation faster and smarter. > full ufs2 specification, but hope that someone here can give a hint. > Please advice with optimizations or tricks. please DO NOT make single partition like that. try to divide it to 3-4 partitions. it will work on a single one but waiting for fsck will kill you ;) AFAIK fsck time grows nonlinearly with fs size to some extent.. options for newfs will be like that newfs -m -i -b 4096 -f 512 -U /dev/partition where A is space left. with mostly small files and huge partition don't worry to set it 1 or even 0. B - size of disk(bytes)/amount of inodes default is probably 2048, you may use 1024 or 4096 for your case - make rough estimate how much files will you have (you told between 4 and 0.5k, but what average?). making too much inodes=wasted space (128 bytes/inode), making too little=big problem :) another question - HOW do you plan to make backups of such data? with dump rsync tar etc. it's clearly "mission impossible". feel free to mail me i had such cases not 5E8 but over 1E8 files :) From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:21:30 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8819E16A400 for ; Sun, 1 Jul 2007 18:21:30 +0000 (UTC) (envelope-from bmr333@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by mx1.freebsd.org (Postfix) with ESMTP id 670ED13C45B for ; Sun, 1 Jul 2007 18:21:30 +0000 (UTC) (envelope-from bmr333@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so2001348waf for ; Sun, 01 Jul 2007 11:21:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=uAZIBRsENZ5Q5NowULcuWXqeZSHfK+J3BTGWJWjjWcVoKzmqhK0wJnNhaW8KmLcUB76EzdF+JCdE9wQ6c57jqcOiPcDf7Uhu2BsyNZj8yuYj6joYBXIRh871as28qFTnl5RLO2TTnjVKRvpcZvRwjFoXqO3UEIP5a8Tjo8114+k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=We8qrMGB+1+qJlmH4mmiyWt4fIwGPPwHUQTPEa4jmgOw8wYlCKKQs4Lyovi2qyRJYb+lT6HV3J4MEbJ96gK2aiVuiCT6OzcyxLyeDoQAUKgvUzEqMS8oHJADkBdv0FhVwjfIRJbmRSfXZtSuMLAketYdKSn2obiCsLwC9+D2xU0= Received: by 10.115.108.1 with SMTP id k1mr4428751wam.1183312606393; Sun, 01 Jul 2007 10:56:46 -0700 (PDT) Received: by 10.115.55.13 with HTTP; Sun, 1 Jul 2007 10:56:46 -0700 (PDT) Message-ID: Date: Mon, 2 Jul 2007 01:56:46 +0800 From: "munkhbayar batkhuu" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: pppoe and nat problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 18:21:30 -0000 hi all. I'm trying to solve one problem but with no success in 1 week. I'm setting up Gateway server with PPPoE functionality for per LAN users to authenticate and traffic shaping. Incoming Internet connection is Ethernet. This PC have 2 NIC. LAN NIC do not have IP assigned. pppoe listens on LAN side interface and passes connection to user land ppp. (traffic shaping is via IPFW) ppp handles all other tasks like Proxy-Arp and so on. I have only 8 public IP address from ISP. So current test configuration is "Proxy-Arp" in ppp.conf and PPP's DHCP range is within ISP allocated zone. Every thing is Ok, with this configuration, LAN users can surf the net. This configuration can support at most, ISP allocated IP numer of concurrent connections. If I allocate exceeding IP zone for DHCP in ppp.conf like "set ifaddr 100.200.300.1 100.200.300.2-100.200.300.100" then ppp.log says "ppp Warning: xx.xx.xx.xx : Cannot determine ethernet address for proxy ARP", maybe it's obvious because of its not in Internet IP zone anymore. But I need to support at least 50 simultaneous connection. If possible, I need NAT in inside PPP. I tried, tried, reed many times. No success. In ppp(8) man it says "NAT is done on the external interface only, and is unlikely to make sense if used with the -direct flag." Current pppoed forks /usr/sbin/ppp with the "-direct" argument. Is it clue on this problem? How to NAT or Route if PPP's DHCP IP zone is different from Gateway IP zone when ppp is working in "-direct" mode. How to to route traffic within tunX and Gateway NIC? Or is there any other solutions for this? Thanks in advance. Help much appreciated. munkh. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:27:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B69116A421; Sun, 1 Jul 2007 18:27:34 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id A732813C46C; Sun, 1 Jul 2007 18:27: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.13.8/8.13.8) with ESMTP id l61IRRGZ064222; Sun, 1 Jul 2007 20:27:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IRR0E064219; Sun, 1 Jul 2007 20:27:27 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:27:27 +0200 (CEST) From: Wojciech Puchar To: Claus Guttesen In-Reply-To: Message-ID: <20070701202709.L64116@wojtek.tensor.gdynia.pl> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:27:34 -0000 > approx. 15 partitions ranging from 400 GB to 2 TB in size. If the > server for some reason had crashed the webservers were unable to the question is about the reason it crashed... > access the nfs-mounted partitions during the period the server did a > snapshot of a partition, in order to perform a background-fsck and > thus our website was down. So ufs2 does not scale well. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:29:41 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B69E416A469; Sun, 1 Jul 2007 18:29:41 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 1D44613C4BF; Sun, 1 Jul 2007 18:29:40 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8) with ESMTP id l61ITV1c064256; Sun, 1 Jul 2007 20:29:32 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61ITVfJ064253; Sun, 1 Jul 2007 20:29:31 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:29:31 +0200 (CEST) From: Wojciech Puchar To: Peter Jeremy In-Reply-To: <20070630235127.GX15680@turion.vk2pj.dyndns.org> Message-ID: <20070701202758.B64116@wojtek.tensor.gdynia.pl> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> <20070630235127.GX15680@turion.vk2pj.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:29:41 -0000 > I have tried using a 4K/0.5K UFS1 filesystem in the past and found the > performance was very poor. UFS2 was based on 16K/2K and I would expect > it to perform even worse with 4K/0.5K. I would suggest you try 8K/1K. > not for small files. you are light with large files but it's not THAT bad as you say. i reagularly use 4K/0.5 UFS but not for everything if i require good fast speed for big files. for really big files i make 32/4 filesystem with very little inodes From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:30:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C55916A474 for ; Sun, 1 Jul 2007 18:30:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 5493313C4B0 for ; Sun, 1 Jul 2007 18:30: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.13.8/8.13.8) with ESMTP id l61IUjgk064266; Sun, 1 Jul 2007 20:30:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IUjcG064263; Sun, 1 Jul 2007 20:30:45 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:30:45 +0200 (CEST) From: Wojciech Puchar To: Dave In-Reply-To: <000301c7bb60$264eee30$0200a8c0@satellite> Message-ID: <20070701202942.I64116@wojtek.tensor.gdynia.pl> References: <000301c7bb60$264eee30$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 18:30:52 -0000 > Hello, > I've got a 6.2 box with a dvd writer in it. I want to back up some dvds to > iso files so i can recreate the dvds at a later time should it be needed. I for most if not any DVDs (all DVD-VIDEO i had) use dd if=/dev/cd0 of=file bs=128k bs size is just to make thing faster, it's not crucial may be any multiply of 2k. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:31:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D59E16A41F for ; Sun, 1 Jul 2007 18:31:29 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id A3E3B13C4C5 for ; Sun, 1 Jul 2007 18:31: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.13.8/8.13.8) with ESMTP id l61IVDRH064292; Sun, 1 Jul 2007 20:31:13 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IVDIN064289; Sun, 1 Jul 2007 20:31:13 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:31:13 +0200 (CEST) From: Wojciech Puchar To: Jonathan Horne In-Reply-To: <200706301739.29249.freebsd@dfwlp.com> Message-ID: <20070701203054.P64116@wojtek.tensor.gdynia.pl> References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 18:31:29 -0000 > > dd if=/dev/acd0 of=/path/to/filename.iso bs=1024 > > this is how i make my .iso files of data disks. are you sure about 1024? did you mean 1024k? (or 1m simply) From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:32:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE53C16A46B for ; Sun, 1 Jul 2007 18:32:47 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 306AD13C4C3 for ; Sun, 1 Jul 2007 18:32: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.13.8/8.13.8) with ESMTP id l61IWaW8064309; Sun, 1 Jul 2007 20:32:36 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IWZR6064306; Sun, 1 Jul 2007 20:32:36 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:32:35 +0200 (CEST) From: Wojciech Puchar To: cpghost In-Reply-To: <4686F806.1080809@cordula.ws> Message-ID: <20070701203211.N64116@wojtek.tensor.gdynia.pl> References: <000301c7bb60$264eee30$0200a8c0@satellite> <200706301739.29249.freebsd@dfwlp.com> <001b01c7bb76$3bac4870$0200a8c0@satellite> <4686F806.1080809@cordula.ws> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Dave , freebsd-questions@freebsd.org Subject: Re: backing up dvds X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 18:32:47 -0000 > with hardware DVD players, you'll need to use a > DVD authoring software (like multimedia/dvdauthor) > and a lot of reading before. not much readings if you don't care much of anything else than movie itself :) From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:34:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59D5F16A400 for ; Sun, 1 Jul 2007 18:34:40 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id B209813C4AE for ; Sun, 1 Jul 2007 18:34: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.13.8/8.13.8) with ESMTP id l61IYY1H064369; Sun, 1 Jul 2007 20:34:34 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IYXer064366; Sun, 1 Jul 2007 20:34:33 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:34:33 +0200 (CEST) From: Wojciech Puchar To: Dave In-Reply-To: <000001c7bb99$b4f676b0$0200a8c0@satellite> Message-ID: <20070701203319.G64116@wojtek.tensor.gdynia.pl> References: <000001c7bb99$b4f676b0$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: dvd configuration error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 18:34:40 -0000 > I've got the device installed, it shows up in dmesg as /dev/acd1. I have > an fstab entry for it as: > > /dev/acd1 /cdrom1 cd9660 ro,noauto 0 0 > > i've tried commenting this line out with the below and it doesn't matter. In > loader.conf i have: > > hw.ata.atapi_dma="1" > it's default in 6.2 anyway you don't need to set it up. > i can mount a dvdrw with either: > mount /cdrom1 > or > mount /dev/acd1 /cdrom1 > > and in either case it works fine. I can read dvdrw's with no problem. I'm > using dvd+rw-tools 7.0 from ports. > I'm trying to blank a dvdrw so i can rewrite to it. I'm using > dvd+rw-format /dev/acd1 i've also tried dvd+rw-mediainfo /dev/acd1 and in > both cases i'm getting the error: > > /dev/acd1: unable to open: inappropriate ioctl for device > you need atapicam, scbus and cd compiled in kernel and the use cd1 instead of acd1 From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:35:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9718B16A421; Sun, 1 Jul 2007 18:35:35 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id E053613C4CB; Sun, 1 Jul 2007 18:35:34 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8) with ESMTP id l61IZSuo064382; Sun, 1 Jul 2007 20:35:28 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61IZStb064379; Sun, 1 Jul 2007 20:35:28 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:35:28 +0200 (CEST) From: Wojciech Puchar To: Claus Guttesen In-Reply-To: Message-ID: <20070701203449.F64116@wojtek.tensor.gdynia.pl> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:35:35 -0000 >> Thank you very much. > > Try zfs on amd64 unless your app doesn't work well with zfs or your does zfs have RELIABLE and USABLE software allowing to efficiently backup large filesystems to other media? (DVD's, tapes, other hard discs) From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:42:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BF6116A41F for ; Sun, 1 Jul 2007 18:42:11 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id F179D13C45D for ; Sun, 1 Jul 2007 18:42: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.13.8/8.13.8) with ESMTP id l61Ig5hL064426 for ; Sun, 1 Jul 2007 20:42:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61Ig5sL064423 for ; Sun, 1 Jul 2007 20:42:05 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 20:42:05 +0200 (CEST) From: Wojciech Puchar To: freebsd-questions@freebsd.org Message-ID: <20070701203720.X64116@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: large pages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 18:42:11 -0000 does FreeBSD {can,will,patch exist} supports using huge pages? i mean 2M pages on AMD64 and 2/4M pages on i386 i don't mean any automatics, just enough will be to be able to map a big chunk of RAM to an app with such pages, or even more (better) to make FreeBSD use only part of memory for itself, and leaving everything else as /dev/something that can be mmap'ped (and locked) to program this way. i need freebsd just for running one program needing about 1280 megs of data space (+1-2 meg of code stacks etc. can be normally mapped). everything else is just using less than 1% of power. with 1536MB AMD64 machine it would be nice for FreeBSD to boot seeing 256 megs for itself and allowing 1280 megs to be mapped&locked to just one program. thank you very much From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:54:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3311816A421 for ; Sun, 1 Jul 2007 18:54:40 +0000 (UTC) (envelope-from kometen@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.235]) by mx1.freebsd.org (Postfix) with ESMTP id E2B3013C447 for ; Sun, 1 Jul 2007 18:54:39 +0000 (UTC) (envelope-from kometen@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so557176wxd for ; Sun, 01 Jul 2007 11:54:39 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dIu8UrQsHD0U4ceVwcLYqUa7Uf1wjlJQZ9DcEveGEuLIxlfvq5kxM6U4f8pH3PceoCGdg65+ivfC3MGkKI1kgIKvTaFkLL+qHDS2aeylYv22255A+xdeGB+L/5VBlr83BvNpttdcjplMbnmkhLXG2dUzEgJMVqgN/LIOkLy7N1g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=r5OVzKpQjFk7xtDiqQNHujEbLLQYLD60JeLNVxGV05X43IwXnJFF06gFuLWVSv7NZ8AQizLfL+83zK26VscrVB0iEmr1vTKvyhdCit8kVsli5pRZzyeatEWhp7/lfuZypbFJAgSvjkHsn02LznxWWpoWj5RqQxC9Nb230Tku/E8= Received: by 10.70.80.14 with SMTP id d14mr6042529wxb.1183316079316; Sun, 01 Jul 2007 11:54:39 -0700 (PDT) Received: by 10.70.72.6 with HTTP; Sun, 1 Jul 2007 11:54:39 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 20:54:39 +0200 From: "Claus Guttesen" To: "Wojciech Puchar" In-Reply-To: <20070701202709.L64116@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> <20070701202709.L64116@wojtek.tensor.gdynia.pl> Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:54:40 -0000 > > approx. 15 partitions ranging from 400 GB to 2 TB in size. If the > > server for some reason had crashed the webservers were unable to > > the question is about the reason it crashed... > > > access the nfs-mounted partitions during the period the server did a > > snapshot of a partition, in order to perform a background-fsck and > > thus our website was down. So ufs2 does not scale well. Reasons not related to the nfs-server itself. FreeBSD itself was rock-solid. It was firmware-related on the storage-side. -- regards Claus When lenity and cruelty play for a kingdom, the gentlest gamester is the soonest winner. Shakespeare From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:56:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A8F316A400 for ; Sun, 1 Jul 2007 18:56:59 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id BDB2F13C4B8 for ; Sun, 1 Jul 2007 18:56:58 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 37640 invoked by uid 1008); 1 Jul 2007 19:00:22 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 1 Jul 2007 19:00:22 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Sun, 1 Jul 2007 15:00:22 -0400 (EDT) Message-ID: <54007.74.64.6.149.1183316422.squirrel@mail.el.net> Date: Sun, 1 Jul 2007 15:00:22 -0400 (EDT) From: "kalin mintchev" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: dv1394 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 18:56:59 -0000 hi all... what wold be the the device that is equivalent of /dev/dv1394/0? it's for kino's install... thanks From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 18:57:43 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AE1316A473 for ; Sun, 1 Jul 2007 18:57:43 +0000 (UTC) (envelope-from kometen@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.233]) by mx1.freebsd.org (Postfix) with ESMTP id 07F8B13C45A for ; Sun, 1 Jul 2007 18:57:42 +0000 (UTC) (envelope-from kometen@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so557556wxd for ; Sun, 01 Jul 2007 11:57:42 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=q240AVBRd+buaW7zUh9w9hEEaXqApvbuXgzov8XhHwbojNw9GMNnJz+fmbKfJOK9h2cR+fY5Ke4qi4lPUKQmMEkvTXj91vvTxT6USWsm/GbVG7r2BfhrXVOrG7a9D+CfxtH5drjEnWbq5dNq+906osmIdTdXY9fxRH2LOlkvgo4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VJuvfIvRXI1z046AjolQHcaaYtB0t3mQDp/Z7s5mN+D2aF2ZiIPMeiFmUj6u2aIt4OB8f0eMrBt8w6BNk/hhyM/ySTOYnnY+MAMpiyg3VR+t/DARhBZKZrMTbK6SkR/IvcI3vYXWwH5KKsqLu9qkX/X6nHE3iMV2bmmRGpo/B7I= Received: by 10.70.29.7 with SMTP id c7mr5990241wxc.1183316262147; Sun, 01 Jul 2007 11:57:42 -0700 (PDT) Received: by 10.70.72.6 with HTTP; Sun, 1 Jul 2007 11:57:42 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 20:57:42 +0200 From: "Claus Guttesen" To: "Wojciech Puchar" In-Reply-To: <20070701203449.F64116@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> <20070701203449.F64116@wojtek.tensor.gdynia.pl> Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 18:57:43 -0000 > > Try zfs on amd64 unless your app doesn't work well with zfs or your > > does zfs have RELIABLE and USABLE software allowing to efficiently backup > large filesystems to other media? (DVD's, tapes, other hard discs) Zfs has send/receive where you can do snapshots and send them to a different host. This could be your backup-host. I'm considering this solution myself where FreeBSD and zfs is my primary host and my nightly backups will be send to my solaris-host. Solaris has the required lto-3-drivers. -- regards Claus When lenity and cruelty play for a kingdom, the gentlest gamester is the soonest winner. Shakespeare From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 19:00:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD4D216A46C; Sun, 1 Jul 2007 19:00:06 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 4BF2713C448; Sun, 1 Jul 2007 19:00:06 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8) with ESMTP id l61J00Bo064534; Sun, 1 Jul 2007 21:00:00 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61J00lE064531; Sun, 1 Jul 2007 21:00:00 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 21:00:00 +0200 (CEST) From: Wojciech Puchar To: Claus Guttesen In-Reply-To: Message-ID: <20070701205906.G64506@wojtek.tensor.gdynia.pl> References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> <20070701202709.L64116@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Nguyen Tam Chinh , freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 19:00:07 -0000 >> > snapshot of a partition, in order to perform a background-fsck and >> > thus our website was down. So ufs2 does not scale well. > > Reasons not related to the nfs-server itself. FreeBSD itself was > rock-solid. It was firmware-related on the storage-side. > i always use software mirror concat or both in FreeBSD. always works, 10 times cheaper, fully portable and (yes true) comparable in speed. in some cases - faster. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 19:08:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D8DA16A400 for ; Sun, 1 Jul 2007 19:08:52 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id EBD4213C43E for ; Sun, 1 Jul 2007 19:08: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.13.8/8.13.8) with ESMTP id l61J8icB064631; Sun, 1 Jul 2007 21:08:44 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l61J8iKm064628; Sun, 1 Jul 2007 21:08:44 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 1 Jul 2007 21:08:44 +0200 (CEST) From: Wojciech Puchar To: Jose Luis Alarcon Sanchez In-Reply-To: <20070701164932.ccc541a8.jlalarcon@gawab.com> Message-ID: <20070701210807.O64506@wojtek.tensor.gdynia.pl> References: <60832.74.64.6.149.1183082217.squirrel@mail.el.net> <20070701164932.ccc541a8.jlalarcon@gawab.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: kalin@el.net, freebsd-questions@freebsd.org Subject: Re: mplayer on 6.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: Sun, 01 Jul 2007 19:08:52 -0000 > Hi Kalin. > > MPlayer is better installed from ports system. I know it by my own > experience. > > I hope this help you. > for me it works perfect for any kind of files i have. making sure that XVideo is working and using -vo xv make a good speedup From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 19:21:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02F2F16A421 for ; Sun, 1 Jul 2007 19:21:47 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id 89C1113C46A for ; Sun, 1 Jul 2007 19:21:46 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 41594 invoked by uid 1008); 1 Jul 2007 19:25:14 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 1 Jul 2007 19:25:14 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Sun, 1 Jul 2007 15:25:14 -0400 (EDT) Message-ID: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> Date: Sun, 1 Jul 2007 15:25:14 -0400 (EDT) From: "kalin mintchev" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 19:21:47 -0000 and which port do i exactly install to be able to whach flash video? i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other one is marked as broken... now that cnn moved to that i can't watch it anymore and i have never been able to see any of the videos on youtube.... what do i need? From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 19:25:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C61CD16A400 for ; Sun, 1 Jul 2007 19:25:51 +0000 (UTC) (envelope-from alexkwan@pacific.net.hk) Received: from eoemailadmin.pacific.net.hk (eoemailadmin.pacific.net.hk [202.14.67.94]) by mx1.freebsd.org (Postfix) with ESMTP id 541DB13C448 for ; Sun, 1 Jul 2007 19:25:51 +0000 (UTC) (envelope-from alexkwan@pacific.net.hk) Received: from hanghau.pacific.net.hk (hanghau.pacific.net.hk [202.64.33.147]) by eoemailadmin.pacific.net.hk with ESMTP id l61IaOIa029402 for ; Mon, 2 Jul 2007 02:36:24 +0800 Received: from [127.0.0.1] (m203-78-33-140.smartone-vodafone.com [203.78.33.140]) by hanghau.pacific.net.hk with ESMTP id l61IaELu025246 for ; Mon, 2 Jul 2007 02:36:22 +0800 Message-ID: <4687F3FF.2060206@pacific.net.hk> Date: Mon, 02 Jul 2007 02:35:43 +0800 From: Alex Kwan User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=Big5 Content-Transfer-Encoding: 7bit Subject: ACPI problem X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 19:25:51 -0000 Hello, when I install R6.2 in a USB drive on my laptop, I am using Boot FreeBSD [default], everything is o.k., when I finished the installation and reboot, if I still using Boot FreeBSD [default], I got following error message during ACPI: ACPI-501: *** Error Handler for [EmbeddedControl] returned AE_NO HARDWARE_RESPONSE ACPI-1304: *** Error: Method execution failed [\\_SB_.C003.C004.C154] (Node 0x363d880) AE_NO HARDWARE_RESPONSE ACPI-1304: *** Error: Method execution failed [\\_SB_.C154] (Node 0xc3642000) AE_NO HARDWARE_RESPONSE ACPI-1304: *** Error: Method execution failed [\\_SB_.C15E._BIF] (Node 0xc3640d40) AE_NO HARDWARE_RESPONSE but if I using Boot FreeBSD with ACPI disabled, and the system running very well, what is the problem and how to fix it? many thanks! From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 20:15:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3776A16A468 for ; Sun, 1 Jul 2007 20:15:39 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from mail.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.freebsd.org (Postfix) with ESMTP id 1069913C46A for ; Sun, 1 Jul 2007 20:15:39 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (localhost.esfm.ipn.mx [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 9F9F945314; Sun, 1 Jul 2007 15:08:02 -0500 (CDT) X-Virus-Scanned: amavisd-new at esfm.ipn.mx Received: from mail.esfm.ipn.mx ([127.0.0.1]) by localhost (mail.esfm.ipn.mx [127.0.0.1]) (amavisd-new, port 10024) with LMTP id U+vskU+cMaHe; Sun, 1 Jul 2007 15:08:00 -0500 (CDT) Received: by mail.esfm.ipn.mx (Postfix, from userid 1000) id 67B20451F7; Sun, 1 Jul 2007 15:08:00 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 59383450BA; Sun, 1 Jul 2007 15:08:00 -0500 (CDT) Date: Sun, 1 Jul 2007 15:08:00 -0500 (CDT) From: Eduardo Viruena Silva To: kalin mintchev In-Reply-To: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> Message-ID: <20070701150526.B25199@Gina.esfm.ipn.mx> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: 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: Sun, 01 Jul 2007 20:15:39 -0000 On Sun, 1 Jul 2007, kalin mintchev wrote: > and which port do i exactly install to be able to whach flash video? > i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other one > is marked as broken... > now that cnn moved to that i can't watch it anymore and i have never been > able to see any of the videos on youtube.... what do i need? > > > _______________________________________________ I installed linux-firefox and linux-flashplugin9, from the ports. They compiled flawlessly and work fine. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 20:42:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D4F916A400 for ; Sun, 1 Jul 2007 20:42:57 +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 1957F13C480 for ; Sun, 1 Jul 2007 20:42:56 +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 l61KeASd037646; Sun, 1 Jul 2007 22:42:55 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 3887DB82A; Sun, 1 Jul 2007 22:40:10 +0200 (CEST) Date: Sun, 1 Jul 2007 22:40:10 +0200 From: Roland Smith To: kalin mintchev Message-ID: <20070701204010.GA82531@slackbox.xs4all.nl> Mail-Followup-To: kalin mintchev , freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fdj2RfSjLxBAspz7" Content-Disposition: inline In-Reply-To: <54357.74.64.6.149.1183317914.squirrel@mail.el.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.15 (2007-04-06) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: 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: Sun, 01 Jul 2007 20:42:57 -0000 --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jul 01, 2007 at 03:25:14PM -0400, kalin mintchev wrote: > and which port do i exactly install to be able to whach flash video? > i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other one > is marked as broken... > now that cnn moved to that i can't watch it anymore and i have never been > able to see any of the videos on youtube.... what do i need? www/youtube-dl works fine for getting movies from youtube.=20 You can use mplayer to play them. 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) --fdj2RfSjLxBAspz7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGiBEpEnfvsMMhpyURAkpwAJ42mnw5Q2ajZTh5fW06kuOqipcRfQCfSoYg Y8SgOX3jPyYWPWVFzxJs7aI= =5BfF -----END PGP SIGNATURE----- --fdj2RfSjLxBAspz7-- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 21:25:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D45ED16A400 for ; Sun, 1 Jul 2007 21:25:34 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.181]) by mx1.freebsd.org (Postfix) with ESMTP id ADC0C13C43E for ; Sun, 1 Jul 2007 21:25:34 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so2048481waf for ; Sun, 01 Jul 2007 14:25:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Cc9KmLdWUp56Qq/O5FlYJF7lh3Hb9zl8e0DM38wMHZLTJBjJVKSBe/rfUQ+Z/j+trySKdSlQ59YT7CBEJ0WyTahtBagk7PDxSztyAfI5bZK/+1yEtGyv48ISysZtUVwfbyaE0O6Q4KD1xkPnU7bY21wxhIu+LCyYYw1akW7zXSE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=cRodds7DVIbj2Iqffj3Nx3BQhcLHLV0ji5hZGuJ07KgKiBuENg7zQ8Gudypr+0UJKFnj22ifcAhLGpwEHM9kAZhHnykgMZWslAkwDjhIYPGF3eCvAFsvRbK3q0JEsX2Qw3U+ZZYOoIWJ3ed+OJKk8evTB0rONRkBVwQGgC4dMjU= Received: by 10.114.59.1 with SMTP id h1mr4523849waa.1183323598558; Sun, 01 Jul 2007 13:59:58 -0700 (PDT) Received: by 10.115.74.20 with HTTP; Sun, 1 Jul 2007 13:59:58 -0700 (PDT) Message-ID: <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> Date: Sun, 1 Jul 2007 16:59:58 -0400 From: "matt donovan" To: "kalin mintchev" , freebsd-questions@freebsd.org In-Reply-To: <20070701204010.GA82531@slackbox.xs4all.nl> MIME-Version: 1.0 References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: 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: Sun, 01 Jul 2007 21:25:34 -0000 yeah it seems that you need to use linux-firefox and the linux-flash9 port to do it since I haven't been able to get the linux-plugins to work with the native browser even with the linux compat enabled On 7/1/07, Roland Smith wrote: > > On Sun, Jul 01, 2007 at 03:25:14PM -0400, kalin mintchev wrote: > > and which port do i exactly install to be able to whach flash video? > > i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other > one > > is marked as broken... > > now that cnn moved to that i can't watch it anymore and i have never > been > > able to see any of the videos on youtube.... what do i need? > > www/youtube-dl works fine for getting movies from youtube. > You can use mplayer to play them. > > Roland > -- > 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) > > From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 21:49:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1560D16A46C for ; Sun, 1 Jul 2007 21:49:57 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id E2E1F13C45A for ; Sun, 1 Jul 2007 21:49:56 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 8CEC15193D for ; Sun, 1 Jul 2007 17:49:53 -0400 (EDT) Date: Sun, 1 Jul 2007 22:49:50 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070701224950.7191e190@gumby.homeunix.com.> In-Reply-To: <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: 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: Sun, 01 Jul 2007 21:49:57 -0000 On Sun, 1 Jul 2007 16:59:58 -0400 "matt donovan" wrote: > yeah it seems that you need to use linux-firefox and the linux-flash9 > port to do it since I haven't been able to get the linux-plugins to > work with the native browser even with the linux compat enabled > Please don't top post. If you install www/nspluginwrapper, and follow the instructions, the flash plugin will work with native firefox and opera browsers. From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:13:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 617AC16A400 for ; Sun, 1 Jul 2007 22:13:14 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id D2A0713C469 for ; Sun, 1 Jul 2007 22:13:13 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (dialup229.ach.sch.gr [81.186.70.229]) (authenticated bits=128) by igloo.linux.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l61MC9HG003233 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 2 Jul 2007 01:12:39 +0300 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.1/8.14.1) with ESMTP id l61LqiMC009612 for ; Mon, 2 Jul 2007 00:53:15 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.1/8.14.1/Submit) id l61KAxwZ006067; Sun, 1 Jul 2007 23:10:59 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 1 Jul 2007 23:10:59 +0300 From: Giorgos Keramidas To: Zbigniew Komarnicki Message-ID: <20070701201059.GA6005@kobe.laptop> References: <200707011527.47168.cblasius@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707011527.47168.cblasius@gmail.com> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.791, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.61, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Making docs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 22:13:14 -0000 On 2007-07-01 15:27, Zbigniew Komarnicki wrote: > Hello! > > I want to create documentation in FreeBSD. I read this article: > http://www.onlamp.com/pub/a/bsd/2001/02/08/Big_Scary_Daemons.html > then I compile and I obtain the following error: You know we regularly re-build the documentation from the CVS repository and publish the resulting documents online, right? If you are not really interested in contributing patches to the docs, then it may be a little easier for you to just download the pre-built versions :) Having said that, we could always use some more help with the current documentation, so if you are trying to learn about the build process of the documentation to help us improve the existing documents, you are certainly more than welcome to help in any way you want! > ===> books/pmake (install) > /bin/rm -f docbook.css > /bin/cat /usr/doc/share/misc/docbook.css > docbook.css > Index is disabled or no index to generate. > /usr/bin/env SP_ENCODING=ISO-8859-1 /usr/local/bin/jade -V > html-manifest -ioutput.html -d /usr/doc/share/sgml/default.dsl -ifreebsd.urls.absolute > -V %generate-legalnotice-link% -ioutput.html.images -D /usr/doc/en_US.ISO8859-1/books/pmake/.. > /../../share/images/books/pmake -D /usr/obj/usr/doc/en_US.ISO8859-1/books/pmake -c > /usr/doc/en_US.ISO8859-1/share/sgml/catalog -c /usr/doc/share/sgml/catalog -c > /usr/local/share/sgml/docbook/dsssl/modular/catalog -c /usr/local/share/sgml/iso8879/catalog > -c /usr/local/share/sgml/jade/catalog -c /usr/local/share/sgml/catalog.ports -t > sgml /usr/doc/en_US.ISO8859-1/books/pmake/book.sgml > /usr/local/bin/tidy -wrap 90 -m -raw -preserve -f /dev/null -asxml > $(/usr/bin/xargs < HTML.manifest) > *** Error code 1 (ignored) > install -C -o root -g wheel -m 444 $(/usr/bin/xargs < > HTML.manifest) /usr/share/doc/en_US.ISO8859-1/books/pmake > install -C -o root -g wheel -m 444 > docbook.css /usr/share/doc/en_US.ISO8859-1/books/pmake > > What this error "*** Error code 1 (ignored)" means? tidy(1) typically fails with a non-zero error code for things which we are not really interested to fix, or are plainly harmless. This is why the Makefile which calls tidy precedes it with a dash '-' to ignore errors from tidy's invocation. The make(1) utility catches the non-zero error status, and notifies you that it ignored it. Most of the time, it's relatively safe to ignore this error code. > I also would like to ask you how to create PDF document, not only > HTML? What command I should use to obtain PDF handbook, for example, > because I want to print it? First of all, you have to install the textproc/docproj-jadetex port, to get the jadetex utility. Then you can build a PDF version of any article or book with: $ cd doc/en_US.ISO8859-1/articles/formatting-media $ make FORMATS=pdf the ${FORMATS} option controls which output format will be produced by the make infrastructure of the documentation. Other available format options are: FORMATS=html Single-file HTML output FORMATS=html-split Multiple-file HTML output FORMATS=txt Single-file plain text output FORMATS=ps Single-file PostScript output etc. These options and other useful stuff about the build infrastructure of the FreeBSD documentation set are described in the "FreeBSD Documentation Project Primer for New Contributors" at: http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/fdp-primer/ Have fun building your own docs :-) Regards, Giorgos From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:19:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69C8516A49C for ; Sun, 1 Jul 2007 22:19:03 +0000 (UTC) (envelope-from quetzal@zone3000.net) Received: from mx1.sitevalley.com (sitevalley.com [209.67.60.43]) by mx1.freebsd.org (Postfix) with SMTP id 1FFA113C4BE for ; Sun, 1 Jul 2007 22:19:02 +0000 (UTC) (envelope-from quetzal@zone3000.net) Received: from zone3000.kharkov.ua (HELO localhost) (217.144.69.37) by 0 with SMTP; 1 Jul 2007 21:52:21 -0000 Date: Mon, 2 Jul 2007 00:52:29 +0300 From: Nikolay Pavlov To: Nguyen Tam Chinh Message-ID: <20070701215229.GB10527@zone3000.net> Mail-Followup-To: Nikolay Pavlov , Nguyen Tam Chinh , FreeBSD-Questions , freebsd-stable@freebsd.org References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> X-Operating-System: FreeBSD 6.2-RELEASE-p4 User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: freebsd-stable@freebsd.org, FreeBSD-Questions Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 22:19:03 -0000 On Wednesday, 27 June 2007 at 14:11:19 +0400, Nguyen Tam Chinh wrote: > Greetings, > > We're going to build a server with some 1Tb of over 500 million small > files with size from 0,5k to 4k. I'm wonder if the ufs2 can handle > this kind of system well. From newfs(8) the min block size is 4k. This > is not optimal in our case, a 1k or 0,5k block is more effective IMHO. > I'd be happy if anyone can suggest what does fragment (block/8) in the > ufs2 mean and how this parameter works. I know It's better to read the > full ufs2 specification, but hope that someone here can give a hint. > Please advice with optimizations or tricks. > Thank you very much. > > -- > With best regards, | The Power to Serve > Nguyen Tam Chinh | http://www.FreeBSD.org > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" I am not aware of any ZFS results on such tasks, may be you will be the one who share them ;) However RaiserFS whould be the best choise on such spesific case. It's not available on FreeBSD currently. I don't think UFS can handle a huge amount of small files effectively. Of course gjournal could be an option for fsck problems, but how do you plan to backup or sync this storage? -- ====================================================================== - Best regards, Nikolay Pavlov. <<<----------------------------------- ====================================================================== From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:19:24 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 180AE16A58C for ; Sun, 1 Jul 2007 22:19:24 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.freebsd.org (Postfix) with ESMTP id A23EC13C4AD for ; Sun, 1 Jul 2007 22:19:23 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so50897nfb for ; Sun, 01 Jul 2007 15:19:22 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZCVTrpSI2Ej+U3QEBuerxpStNUmu3hzgPta8A3aa0oK8VOhqD3ZRRGe4MrbwkCSBiB9aQqKahzVRpZkJGNmXeSK+qiPe/9tO66LeaFnLWT41JUh65FLNCSXLJID9/EyCGeM8FiJRdozwjVBgIBCMZVhWJqTIGRfY8aLjSeh1rF4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=C1pkON5n6Qtm+8SYAmpCjhEzkYFKLIXqoTK32z6i5XOH21vD/CUvyhGRgzTieoYeZOrgppAPSKyLu5GftCqqfuz34jWaWyZRTDpaG81IsNfz6tb0oNMp0GCZ6bCOQn5LYi8HSnz8UJsoqGMfrdJhVjcp7UFrz4/dApjIGh0qD44= Received: by 10.82.134.12 with SMTP id h12mr11662917bud.1183328362240; Sun, 01 Jul 2007 15:19:22 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Sun, 1 Jul 2007 15:19:22 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 17:19:22 -0500 From: "illoai@gmail.com" To: freebsd-questions@freebsd.org In-Reply-To: <20070629231452.GK18911@tigger.digitaltorque.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070629231452.GK18911@tigger.digitaltorque.ca> Subject: Re: running portupgrade -a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 22:19:24 -0000 On 29/06/07, Michael P. Soulier wrote: > Hi, > > It seems like a lot of people keep their ports regularly up to date by just > running portupgrade -a. I've seen it online, and in books. > > As /usr/ports/UPDATING is rather large, it seems impossible to look for > potential issues with every package that you're going to upgrade. So, is > running portupgrade -a a good idea, as you likely haven't checked for issues > for your system? > I generally run pkg_version -vIL= after any portsnap which gives me a simple list of things to upgrade. Then, based on a lot of broken stuff over the years, you can merrily pick your way through. For something like cairo or gtk* (or gettext), that many other things depend upon I will run # portupgrade -fr cairo Part of this is the whole "upgrade once every couple of weeks or oft'ner" so you don't get overwhealmed by the number of upgrades at any time. ports-mgmt/portmaster has a nifty feature in "-l" but does not seem to have any equivalent to portupgrade -fr. -- -- From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:19:32 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CA2716A5B0 for ; Sun, 1 Jul 2007 22:19:32 +0000 (UTC) (envelope-from unixvn@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.freebsd.org (Postfix) with ESMTP id 2E17A13C4C4 for ; Sun, 1 Jul 2007 22:19:32 +0000 (UTC) (envelope-from unixvn@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2697638pyb for ; Sun, 01 Jul 2007 15:19:31 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=a6pnhzdgFTy+9+1lepN+4ejUMtaG8LX9v2ZXGjl7p9HZj92yxQmhFcCumg/LjVdR8S+gLW024jWRYKCinYvZATf/Odf90OuO5kTtkopSO1NUNGJ9y0p9PM3pBuwZTBlrJs3G3LSSAVABfkSh88zczOKqHNLyTA1KugcBdUqPolw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hRnGRGLzwy4r+O3V10YSNKnfH8AYqIMpGIYYXJvkW0zRjPwgwDX6uJhTgP90PpnJNVaTWqKPnESvVLuM9EkDJYTadjo+AbyzfbYRKvw6kdgIW9UagoflrwYmxSnT3h+pdRi0eIt98ZGmGK8M6ERXCYD369ui8eIcoGYP60qtDHc= Received: by 10.65.186.18 with SMTP id n18mr8147218qbp.1183328371320; Sun, 01 Jul 2007 15:19:31 -0700 (PDT) Received: by 10.65.250.15 with HTTP; Sun, 1 Jul 2007 15:19:31 -0700 (PDT) Message-ID: <64b284310707011519k68ebc35p716cd900d9212234@mail.gmail.com> Date: Mon, 2 Jul 2007 02:19:31 +0400 From: "Nguyen Tam Chinh" To: "Nikolay Pavlov" , "Nguyen Tam Chinh" , FreeBSD-Questions , freebsd-stable@freebsd.org In-Reply-To: <20070701215229.GB10527@zone3000.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <64b284310706270311j2a6af2f6i6766b483a4b66a5c@mail.gmail.com> <20070701215229.GB10527@zone3000.net> Cc: Subject: Re: UFS2 optimization for many small 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: Sun, 01 Jul 2007 22:19:32 -0000 On 7/2/07, Nikolay Pavlov wrote: > On Wednesday, 27 June 2007 at 14:11:19 +0400, Nguyen Tam Chinh wrote: > > Greetings, > > > > We're going to build a server with some 1Tb of over 500 million small > > files with size from 0,5k to 4k. I'm wonder if the ufs2 can handle > > this kind of system well. From newfs(8) the min block size is 4k. This > > is not optimal in our case, a 1k or 0,5k block is more effective IMHO. > > I'd be happy if anyone can suggest what does fragment (block/8) in the > > ufs2 mean and how this parameter works. I know It's better to read the > > full ufs2 specification, but hope that someone here can give a hint. > > Please advice with optimizations or tricks. > > Thank you very much. > > > > -- > > With best regards, | The Power to Serve > > Nguyen Tam Chinh | http://www.FreeBSD.org > > _______________________________________________ > > freebsd-stable@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" > > I am not aware of any ZFS results on such tasks, may be you will be the > one who share them ;) However RaiserFS whould be the best choise on such > spesific case. It's not available on FreeBSD currently. > I don't think UFS can handle a huge amount of small files effectively. > Of course gjournal could be an option for fsck problems, but how do you > plan to backup or sync this storage? > I'm aware of the fsck/backup problems. In our case there's no need for backup so i went with ufs2. The current configuration is 4x250Gb disks with bloc/frag ratio 4k/512b. We're generating files with the average size of 6k ('cause the compress procedure does not work as well as we estimated). After a week I think we could collect some statistics in production. Anyway, in this case a 8k/1k would be more effective for us. Hope that I can test this in the next server. -- With best regards, | The Power to Serve Nguyen Tam Chinh | http://www.FreeBSD.org From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:35:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D674B16A468 for ; Sun, 1 Jul 2007 22:35:45 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id 663BA13C44C for ; Sun, 1 Jul 2007 22:35:45 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 71429 invoked by uid 1008); 1 Jul 2007 22:39:10 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 1 Jul 2007 22:39:10 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Sun, 1 Jul 2007 18:39:10 -0400 (EDT) Message-ID: <53927.74.64.6.149.1183329550.squirrel@mail.el.net> In-Reply-To: <20070701150526.B25199@Gina.esfm.ipn.mx> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701150526.B25199@Gina.esfm.ipn.mx> Date: Sun, 1 Jul 2007 18:39:10 -0400 (EDT) From: "kalin mintchev" To: "Eduardo Viruena Silva" User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-questions@freebsd.org Subject: Re: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 22:35:45 -0000 >> >> _______________________________________________ > > I installed linux-firefox and linux-flashplugin9, from the ports. > > They compiled flawlessly and work fine. thanks... but i'm running freebsd. already stuffed this machine with a lot of linux 'extra'-ware when installing java. i was looking for flasplugin9 for fbsd firefox/mozilla... > > > > From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:36:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC00E16A469 for ; Sun, 1 Jul 2007 22:36:52 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id 4A6CF13C4C3 for ; Sun, 1 Jul 2007 22:36:52 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 71618 invoked by uid 1008); 1 Jul 2007 22:40:21 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 1 Jul 2007 22:40:21 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Sun, 1 Jul 2007 18:40:21 -0400 (EDT) Message-ID: <54489.74.64.6.149.1183329621.squirrel@mail.el.net> In-Reply-To: <20070701224950.7191e190@gumby.homeunix.com.> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> Date: Sun, 1 Jul 2007 18:40:21 -0400 (EDT) From: "kalin mintchev" To: "RW" User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-questions@freebsd.org Subject: Re: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 22:36:52 -0000 > > If you install www/nspluginwrapper, and follow the instructions, the > flash plugin will work with native firefox and opera browsers. thanks... i'll try that. see what happens.... > _______________________________________________ > 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 Jul 1 22:41:58 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA12216A41F for ; Sun, 1 Jul 2007 22:41:58 +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 7D4DB13C43E for ; Sun, 1 Jul 2007 22:41:58 +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; 01 Jul 2007 18:41:58 -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.8.3-GA) with ESMTP id NMW28716; Sun, 1 Jul 2007 18:41:57 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 01 Jul 2007 18:41:56 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18056.11717.973968.984604@jerusalem.litteratus.org> Date: Sun, 1 Jul 2007 18:42:13 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <20070701224950.7191e190@gumby.homeunix.com.> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> 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) Subject: Re: 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: Sun, 01 Jul 2007 22:41:58 -0000 RW writes: > If you install www/nspluginwrapper, and follow the instructions, the > flash plugin will work with native firefox and opera browsers. This is flash-9, and not flash-7? Robert Huff From owner-freebsd-questions@FreeBSD.ORG Sun Jul 1 22:59:04 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B10A216A421 for ; Sun, 1 Jul 2007 22:59:04 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.191]) by mx1.freebsd.org (Postfix) with ESMTP id 42E0113C483 for ; Sun, 1 Jul 2007 22:59:04 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1606104mue for ; Sun, 01 Jul 2007 15:59:03 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=o857DlLhZ6UjrsItmxOj8XBdyu4vGbKAR7IF/jUtMuMySmIa5Il8afFcQ1mcvAVBChYFkHNiEsz4H0uoO995Y9vhjie9oVd0Vv97e5fqNxG9COluQQohNyYE8sY2kTtoGOzHGQj5mTrmCgoaBu+4jFVJ1CKpR2+9mZ8q3SiSgsM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hRlITnVCVnkqI4NvmBaBR6cKhMagww24915DrFTX0o3l508WO2YXGsOQY9Jjm3PWUvA6s4RGhe9S9NFv6H1CRxIw448qcmUabyhtD1uhBl3c89yefXLICrHhTFirVZIsOi7WXme+Tf0wjSaPk7zzFWnDk226WXHCGdMcCmGeBWY= Received: by 10.82.136.4 with SMTP id j4mr11680136bud.1183330743008; Sun, 01 Jul 2007 15:59:03 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Sun, 1 Jul 2007 15:59:02 -0700 (PDT) Message-ID: Date: Sun, 1 Jul 2007 17:59:02 -0500 From: "illoai@gmail.com" To: kalin@el.net In-Reply-To: <54007.74.64.6.149.1183316422.squirrel@mail.el.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <54007.74.64.6.149.1183316422.squirrel@mail.el.net> Cc: freebsd-questions@freebsd.org Subject: Re: dv1394 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 01 Jul 2007 22:59:04 -0000 On 01/07/07, kalin mintchev wrote: > hi all... > > what wold be the the device that is equivalent of /dev/dv1394/0? > it's for kino's install... > Not having any firewire myself, a quick googodge leads me to believe that you should look at your dmesg for things under fwohci* and firewire* /usr/src/sys/dev/firewire/00README is pretty old: | 6. DV | I have not tested yet. | | 7. Tested HW | | OS | - FreeBSD-4/i386 | - FreeBSD-4/alpha | - FreeBSD-5/i386 Still, you may get lucky. Posting the relevant bits of your dmesg here may help. -- -- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 00:17:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 560D716A468 for ; Mon, 2 Jul 2007 00:17:22 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 2E20E13C44B for ; Mon, 2 Jul 2007 00:17:22 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id D1BC451927 for ; Sun, 1 Jul 2007 20:17:20 -0400 (EDT) Date: Mon, 2 Jul 2007 01:17:17 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070702011717.47687ee9@gumby.homeunix.com.> In-Reply-To: <18056.11717.973968.984604@jerusalem.litteratus.org> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: 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: Mon, 02 Jul 2007 00:17:22 -0000 On Sun, 1 Jul 2007 18:42:13 -0400 Robert Huff wrote: > > RW writes: > > > If you install www/nspluginwrapper, and follow the instructions, > > the flash plugin will work with native firefox and opera browsers. > > This is flash-9, and not flash-7? > Yes From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 00:37:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC7C016A400 for ; Mon, 2 Jul 2007 00:37:59 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from pollux.dfwlp.com (rrcs-64-183-212-244.sw.biz.rr.com [64.183.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id AD13A13C480 for ; Mon, 2 Jul 2007 00:37:59 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by pollux.dfwlp.com (8.13.8/8.13.8) with ESMTP id l620bvpu037174 for ; Sun, 1 Jul 2007 19:37:57 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 1 Jul 2007 19:37:56 -0500 User-Agent: KMail/1.9.6 References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> In-Reply-To: <20070702011717.47687ee9@gumby.homeunix.com.> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707011937.57100.freebsd@dfwlp.com> X-Spam-Status: No, score=-3.9 required=3.6 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on pollux.dfwlp.com Subject: Re: 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: Mon, 02 Jul 2007 00:37:59 -0000 On Sunday 01 July 2007 19:17:17 RW wrote: > On Sun, 1 Jul 2007 18:42:13 -0400 > > Robert Huff wrote: > > RW writes: > > > If you install www/nspluginwrapper, and follow the instructions, > > > the flash plugin will work with native firefox and opera browsers. > > > > This is flash-9, and not flash-7? > > Yes > _______________________________________________ > 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 re-tried the flash9 after having switched back to 7 a long time ago, and for me, its still quite unstable. opera crashed quickly for me. -- Jonathan Horne http://dfwlpiki.dfwlp.org freebsd@dfwlp.com From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 00:54:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C42316A400 for ; Mon, 2 Jul 2007 00:54:53 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.186]) by mx1.freebsd.org (Postfix) with ESMTP id 1C51D13C45B for ; Mon, 2 Jul 2007 00:54:52 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1627151mue for ; Sun, 01 Jul 2007 17:54:52 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=mxc336FUaSmauxVdiFKbSIITgxFflhKWnS7JOmvxWZmPRdezih7LAVr1aIQfSTgmGfgMnwEidFTr82YhhsFqt1JSYmn2u4mXo9A0S/9aifOcxh8tJwsyJah2m5CWiZgQ6PzkjE3VJd6SJGRJIJBaQZz/UotGI7OQxqrwyWmx5dQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=PbGB4OOF90RiOUR3u3quIHpsZWvr3lOuhb2m1vvFk+VJWOmimnePnP0kgD35wHjXqKDSnYDgLUdlY4V4QEQ3Rjsc0WbV7S/6d1aYk03hDICjnEOM3vXLhgscBlGi0rOcuARaFQkbmY0MsOoyB8mX5t1CVyiiQvSCqDUURi2kMA0= Received: by 10.82.108.9 with SMTP id g9mr11817024buc.1183337691985; Sun, 01 Jul 2007 17:54:51 -0700 (PDT) Received: by 10.82.148.3 with HTTP; Sun, 1 Jul 2007 17:54:51 -0700 (PDT) Message-ID: <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> Date: Sun, 1 Jul 2007 21:54:51 -0300 From: "Anton Galitch" To: freebsd-questions@freebsd.org In-Reply-To: <200707011937.57100.freebsd@dfwlp.com> MIME-Version: 1.0 References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: 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: Mon, 02 Jul 2007 00:54:53 -0000 Hi. I tried flash9 and flash7, the flash9 just crashes, and flash7 shows a grey square in the place where the flash application should be showed. I tried both, linux-firefox, and nspluginwrapper methods, it shows the same grey square. Any idea of what could it be?? From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 01:39:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DFD1816A400 for ; Mon, 2 Jul 2007 01:39:51 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id B464413C447 for ; Mon, 2 Jul 2007 01:39:51 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 30E6C5EAE; Sun, 1 Jul 2007 21:39:51 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RjYX+CbtBxN8; Sun, 1 Jul 2007 21:39:48 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 1FB805CB7; Sun, 1 Jul 2007 21:39:48 -0400 (EDT) Message-ID: <46885761.9050302@mac.com> Date: Sun, 01 Jul 2007 21:39:45 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Wojciech Puchar References: <20070701203720.X64116@wojtek.tensor.gdynia.pl> In-Reply-To: <20070701203720.X64116@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: large pages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 01:39:52 -0000 Wojciech Puchar wrote: > does FreeBSD {can,will,patch exist} supports using huge pages? i mean 2M > pages on AMD64 and 2/4M pages on i386 I believe so, yes-- isn't this what the PAE kernel option does? > i need freebsd just for running one program needing about 1280 megs of > data space (+1-2 meg of code stacks etc. can be normally mapped). > everything else is just using less than 1% of power. > > with 1536MB AMD64 machine it would be nice for FreeBSD to boot seeing > 256 megs for itself and allowing 1280 megs to be mapped&locked to just > one program. Hmm. Doesn't FreeBSD's default VM behavior do just fine dealing with one large active process without any unusual tuning? -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 01:45:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D8A716A400 for ; Mon, 2 Jul 2007 01:45:44 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 3F0DF13C45E for ; Mon, 2 Jul 2007 01:45:44 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 12605 invoked from network); 1 Jul 2007 20:45:44 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 1 Jul 2007 20:45:43 -0500 Date: Mon, 2 Jul 2007 11:45:39 +1000 From: Norberto Meijome To: Momchil Ivanov Message-ID: <20070702114539.3bd9fdb0@localhost> In-Reply-To: <200706292246.14511.slogster@gmail.com> References: <5780.192.168.11.1.1183063250.squirrel@https://poczta.szalbot.homedns.org> <20070629170001.045ca190@localhost> <2449.192.168.11.1.1183101189.squirrel@https://poczta.szalbot.homedns.org> <200706292246.14511.slogster@gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: zigniew szalbot , freebsd-questions@freebsd.org Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 01:45:44 -0000 On Fri, 29 Jun 2007 22:46:10 +0200 Momchil Ivanov wrote: > 4) Forget about the DSL router. Box with wireless NIC, 1 NIC for home net, 1 > NIC for the DSL > - same as above, just have to tell your box how to connect to your ISP ok, this is interesting. You mean, plug the phone line straight into, say, fxp1 ? and then using ppp to connect over PPoE to your ISP? I had originally thought of getting a DSL card , but there doesn't seem to be any ADSL2/2+ supported. cheers, B _________________________ {Beto|Norberto|Numard} Meijome "All that is necessary for the triumph of evil is that good men do nothing." Edmund Burke I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 02:16:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C95C16A468 for ; Mon, 2 Jul 2007 02:16:19 +0000 (UTC) (envelope-from slogster@gmail.com) Received: from smtp.studnetz.uni-leipzig.de (smtp.studnetz.uni-leipzig.de [139.18.143.252]) by mx1.freebsd.org (Postfix) with ESMTP id 1A3CC13C455 for ; Mon, 2 Jul 2007 02:16:19 +0000 (UTC) (envelope-from slogster@gmail.com) Received: from localhost (localhost [127.0.0.1]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id 67254257; Mon, 2 Jul 2007 04:16:18 +0200 (CEST) X-Virus-Scanned: by amavisd-new at studnetz-ul Received: from smtp.studnetz.uni-leipzig.de ([127.0.0.1]) by localhost (smtp.studnetz.uni-leipzig.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RIXpxLgK8YwQ; Mon, 2 Jul 2007 04:16:18 +0200 (CEST) Received: from [192.168.63.4] (a144026.studnetz.uni-leipzig.de [139.18.144.26]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id D5D5E255; Mon, 2 Jul 2007 04:16:17 +0200 (CEST) From: Momchil Ivanov To: Norberto Meijome Date: Mon, 2 Jul 2007 04:16:13 +0200 User-Agent: KMail/1.9.6 References: <5780.192.168.11.1.1183063250.squirrel@https://poczta.szalbot.homedns.org> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> In-Reply-To: <20070702114539.3bd9fdb0@localhost> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart4931696.OCxuEEQsmx"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200707020416.17263.slogster@gmail.com> Cc: zigniew szalbot , freebsd-questions@freebsd.org Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 02:16:19 -0000 --nextPart4931696.OCxuEEQsmx Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 02 July 2007 03:45:39 Norberto Meijome wrote: > On Fri, 29 Jun 2007 22:46:10 +0200 > > Momchil Ivanov wrote: > > 4) Forget about the DSL router. Box with wireless NIC, 1 NIC for home > > net, 1 NIC for the DSL ^^^^^^^^^^ > > - same as above, just have to tell your box how to connect to your ISP > > ok, this is interesting. You mean, plug the phone line straight into, say, > fxp1 ? and then using ppp to connect over PPoE to your ISP? > > I had originally thought of getting a DSL card , but there doesn't seem to > be any ADSL2/2+ supported. Well, as you get your internet connection through a DSL line, the above is= =20 meant to be a DSL card. =2D-=20 PGP KeyID: 0x3118168B Keyserver: pgp.mit.edu Key fingerprint BB50 2983 0714 36DC D02E =A0158A E03D 56DA 3118 168B =20 --nextPart4931696.OCxuEEQsmx Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGiF/t4D1W2jEYFosRAkieAJ0Yg9M/FF1o3HzGOh/yBuE8s2tZ3QCeJuXv ZDRZujAABT2vxoD+D9I91W8= =P/Z1 -----END PGP SIGNATURE----- --nextPart4931696.OCxuEEQsmx-- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 02:17:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9072716A46B for ; Mon, 2 Jul 2007 02:17:49 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id 1DCA713C48A for ; Mon, 2 Jul 2007 02:17:48 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 4534 invoked by uid 1008); 2 Jul 2007 02:21:14 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 2 Jul 2007 02:21:14 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Sun, 1 Jul 2007 22:21:14 -0400 (EDT) Message-ID: <50260.74.64.6.149.1183342874.squirrel@mail.el.net> In-Reply-To: <20070702011717.47687ee9@gumby.homeunix.com.> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> Date: Sun, 1 Jul 2007 22:21:14 -0400 (EDT) From: "kalin mintchev" To: "RW" User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-questions@freebsd.org Subject: Re: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 02:17:49 -0000 > On Sun, 1 Jul 2007 18:42:13 -0400 > Robert Huff wrote: > >> >> RW writes: >> >> > If you install www/nspluginwrapper, and follow the instructions, >> > the flash plugin will work with native firefox and opera browsers. >> >> This is flash-9, and not flash-7? >> > > Yes can you use that flash7 to watch videos on the new cnn site and youtube? > _______________________________________________ > 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 Jul 2 02:59:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1721116A421 for ; Mon, 2 Jul 2007 02:59:57 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from pollux.dfwlp.com (rrcs-64-183-212-244.sw.biz.rr.com [64.183.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id DB9B613C448 for ; Mon, 2 Jul 2007 02:59:56 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from rigel.dfwlp.com (rigel.dfwlp.com [192.168.125.81]) (authenticated bits=0) by pollux.dfwlp.com (8.13.8/8.13.8) with ESMTP id l622xsLV039689 for ; Sun, 1 Jul 2007 21:59:54 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Sun, 1 Jul 2007 21:59:53 -0500 User-Agent: KMail/1.9.6 References: <20070629231452.GK18911@tigger.digitaltorque.ca> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707012159.54177.freebsd@dfwlp.com> X-Spam-Status: No, score=-3.9 required=3.6 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on pollux.dfwlp.com Subject: Re: running portupgrade -a X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 02:59:57 -0000 On Sunday 01 July 2007 17:19:22 illoai@gmail.com wrote: > On 29/06/07, Michael P. Soulier wrote: > > Hi, > > > > It seems like a lot of people keep their ports regularly up to date by > > just running portupgrade -a. I've seen it online, and in books. > > > > As /usr/ports/UPDATING is rather large, it seems impossible to look for > > potential issues with every package that you're going to upgrade. So, is > > running portupgrade -a a good idea, as you likely haven't checked for > > issues for your system? > > I generally run pkg_version -vIL= after any portsnap > which gives me a simple list of things to upgrade. > Then, based on a lot of broken stuff over the years, > you can merrily pick your way through. For something > like cairo or gtk* (or gettext), that many other things > depend upon I will run > # portupgrade -fr cairo > Part of this is the whole "upgrade once every couple > of weeks or oft'ner" so you don't get overwhealmed > by the number of upgrades at any time. > ports-mgmt/portmaster has a nifty feature in "-l" but > does not seem to have any equivalent to portupgrade -fr. i have another good one for sorting out what needs to be updated: pkg_version -v|grep needs this will show only the ports that need to upgraded. cheers, -- Jonathan Horne http://dfwlpiki.dfwlp.org freebsd@dfwlp.com From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 03:22:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 837A116A469 for ; Mon, 2 Jul 2007 03:22:18 +0000 (UTC) (envelope-from tjudd2k@yahoo.com) Received: from web62401.mail.re1.yahoo.com (web62401.mail.re1.yahoo.com [69.147.75.30]) by mx1.freebsd.org (Postfix) with SMTP id 38A5C13C45E for ; Mon, 2 Jul 2007 03:22:17 +0000 (UTC) (envelope-from tjudd2k@yahoo.com) Received: (qmail 10919 invoked by uid 60001); 2 Jul 2007 03:22:17 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=BZO9N2h9o/JyhqyPsyv5CU3jddNRvIt46Pkawya43dWox2dz99HDSl0UEclV5liNIkoVbo6k+6BavDByGgj+Bog02tN44R3aq8HCGboJ8IT5sR3Dv6hM1MfQTpOaPgUoHpNk+k2NyJBgf3/6+nygjJn2AS0RPV1/3R+TJ6rk6/w=; X-YMail-OSG: gVtIonEVM1lqljmdvXLabhbKtbCdVGaRun9lY66MEhpQLcpD50e3tCc26nEOr_2QzZY3qXWROgpc0Bj5rFww5ARjevDRGerl53gE7kb8PWKZfFb.eRaKSFbd12vUsg-- Received: from [68.35.59.3] by web62401.mail.re1.yahoo.com via HTTP; Sun, 01 Jul 2007 20:22:17 PDT Date: Sun, 1 Jul 2007 20:22:17 -0700 (PDT) From: Tim Judd To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <366513.8770.qm@web62401.mail.re1.yahoo.com> Subject: ports mbone/udpcast (PR# 114061) outdated X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 03:22:18 -0000 I noticed not too long ago that mbone/udpcast was outdated (as in more than 3 years old). Not knowing what or how to proceed with such an outdated port, I decided to file a bug report. It seemed the sensible thing to do. As you can see below, Edwin (edwin .at. FreeBSD.org) made the change to close the ticket without much details. > State-Changed-From-To: open->closed > State-Changed-By: edwin > State-Changed-When: Wed Jun 27 07:20:48 UTC 2007 > State-Changed-Why: > Please submit patches Well, I know what patches are, but I don't think patches themselves are able to fix the outdated port.. so I'm lost. What do I do? I thought since the port was extremely outdated, that someone with a commit bit would have to setup the updated port in the CVS tree, I can't commit them myself. I don't even know exactly what patches are needed or where to submit them. So, how do I proceed? I need some tips and a hand-in-hand tutorial on what to update and where to send the update. Thanks for the tips. BTW: I'm subscribed to the questions list on a digest, I ask a CC please on all the replies. --Tim J. If opportunity doesn't knock, build a door. "I can" is a way of life. More and Bigger is not always Better. The road to success is always uphill. ____________________________________________________________________________________ Moody friends. Drama queens. Your life? Nope! - their life, your story. Play Sims Stories at Yahoo! Games. http://sims.yahoo.com/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 03:33:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84B1716A475 for ; Mon, 2 Jul 2007 03:33:47 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from stargate.alaskaparadise.com (75-96-237-24.gci.net [24.237.96.75]) by mx1.freebsd.org (Postfix) with ESMTP id 5515D13C458 for ; Mon, 2 Jul 2007 03:33:47 +0000 (UTC) (envelope-from beech@freebsd.org) Received: by stargate.alaskaparadise.com (Postfix, from userid 0) id 2577F7F99; Sun, 1 Jul 2007 19:33:45 -0800 (AKDT) From: Beech Rintoul To: freebsd-questions@freebsd.org Date: Sun, 1 Jul 2007 19:33:16 -0800 User-Agent: KMail/1.9.6 References: <366513.8770.qm@web62401.mail.re1.yahoo.com> In-Reply-To: <366513.8770.qm@web62401.mail.re1.yahoo.com> X-Face: jC2w\k*Q1\0DA2Q0Eh&BrP/Rt2M,^2O#R07VoT98m*>miQF9%Bi9vy`F6cPjwEe?m,)=?utf-8?q?2=0A=09X=3FM=5C=3AOE9QgZ?="xT3/n3,3MJ7N=Cfkmi%f(w^~X"SUxn>; 27NO; C+)g[7J`$G*SN>{<=?utf-8?q?O=3Bg7=7C=0A=09o=7D=265A=5D4?=@7D`=Eb@Zs1Ln814?]|k@'bG=.Ca"[|8+_.OsNAo8!#?4u MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707011933.33107.beech@freebsd.org> Cc: Tim Judd Subject: Re: ports mbone/udpcast (PR# 114061) outdated X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beech Rintoul List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 03:33:47 -0000 On Sunday 01 July 2007, Tim Judd said: > I noticed not too long ago that mbone/udpcast was outdated (as in > more than 3 years old). Not knowing what or how to proceed with > such an outdated port, I decided to file a bug report. It seemed > the sensible thing to do. > > As you can see below, Edwin (edwin .at. FreeBSD.org) made the > change to close the ticket without much details. > > > State-Changed-From-To: open->closed > > State-Changed-By: edwin > > State-Changed-When: Wed Jun 27 07:20:48 UTC 2007 > > State-Changed-Why: > > Please submit patches > > Well, I know what patches are, but I don't think patches themselves > are able to fix the outdated port.. so I'm lost. What do I do? > > I thought since the port was extremely outdated, that someone with > a commit bit would have to setup the updated port in the CVS tree, > I can't commit them myself. I don't even know exactly what patches > are needed or where to submit them. > > So, how do I proceed? I need some tips and a hand-in-hand tutorial > on what to update and where to send the update. > > Thanks for the tips. BTW: I'm subscribed to the questions list on > a digest, I ask a CC please on all the replies. > > --Tim J. > The porters handbook is your friend :-) http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html You should also subscribe to freebsd-ports@FreeBSD.org. That would be the correct list for port questions. Cheers, Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://www.freebsd.org X - NO Word docs in e-mail | Latest Release: / \ - http://www.FreeBSD.org/releases/6.2R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 03:41:25 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE2E116A400 for ; Mon, 2 Jul 2007 03:41:25 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id A08E713C457 for ; Mon, 2 Jul 2007 03:41:25 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 19847 invoked from network); 1 Jul 2007 22:41:25 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 1 Jul 2007 22:41:25 -0500 Date: Mon, 2 Jul 2007 13:41:22 +1000 From: Norberto Meijome To: "Anton Galitch" Message-ID: <20070702134122.0e22595d@localhost> In-Reply-To: <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 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: Mon, 02 Jul 2007 03:41:26 -0000 On Sun, 1 Jul 2007 21:54:51 -0300 "Anton Galitch" wrote: > I tried flash9 and flash7, the flash9 just crashes, and flash7 shows a grey > square in the place where the flash application should be showed. I tried > both, linux-firefox, and nspluginwrapper methods, it shows the same grey > square. Any idea of what could it be?? run firefox from a term and see if you get any error messages from the app / plugins. _________________________ {Beto|Norberto|Numard} Meijome Computers are like air conditioners; they can't do their job properly if you open windows. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 03:45:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73EFF16A469 for ; Mon, 2 Jul 2007 03:45:03 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 28A7B13C45B for ; Mon, 2 Jul 2007 03:45:03 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 20116 invoked from network); 1 Jul 2007 22:45:03 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 1 Jul 2007 22:45:03 -0500 Date: Mon, 2 Jul 2007 13:44:59 +1000 From: Norberto Meijome To: Gaye Abdoulaye Message-ID: <20070702134459.17d33308@localhost> In-Reply-To: <4687BBC0.7040707@walsimou.com> References: <4687BBC0.7040707@walsimou.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: mDNSResponder and avahi conflict when updade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 03:45:03 -0000 On Sun, 01 Jul 2007 16:35:44 +0200 Gaye Abdoulaye wrote: > I have a problem when I try to update my "FreeBSD-6.2-STABLE i386 > xorg-7.2 kde-3.5.6" with: > pkgdb -F > portupgrade -aPP > It seems that fr-kde-i18n-3.5.6_1 require net/mDNSResponder. > But net/mDNSResponder conflicts with avahi+libdns which is required by > firefox-2.0.0.4_1. I bumped into the same conflict, although not because of the same packages. I just unistalled mdnsreposnder and replaced it with avahi+libdns, replacing also the dependencies with pkgdb. Both I and the apps are none the wiser for the change ...but nothing seems to be complaining as yet. _________________________ {Beto|Norberto|Numard} Meijome "People demand freedom of speech to make up for the freedom of thought which they avoid. " Soren Aabye Kierkegaard I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 04:33:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5498F16A468 for ; Mon, 2 Jul 2007 04:33:56 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 072E413C44C for ; Mon, 2 Jul 2007 04:33:55 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 22986 invoked from network); 1 Jul 2007 23:33:56 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 1 Jul 2007 23:33:55 -0500 Date: Mon, 2 Jul 2007 14:33:50 +1000 From: Norberto Meijome To: Momchil Ivanov Message-ID: <20070702143350.4e737e5d@localhost> In-Reply-To: <200707020416.17263.slogster@gmail.com> References: <5780.192.168.11.1.1183063250.squirrel@https://poczta.szalbot.homedns.org> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> <200707020416.17263.slogster@gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: zigniew szalbot , freebsd-questions@freebsd.org Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 04:33:56 -0000 On Mon, 2 Jul 2007 04:16:13 +0200 Momchil Ivanov wrote: > On Monday 02 July 2007 03:45:39 Norberto Meijome wrote: > > On Fri, 29 Jun 2007 22:46:10 +0200 > > > > Momchil Ivanov wrote: > > > 4) Forget about the DSL router. Box with wireless NIC, 1 NIC for home > > > net, 1 NIC for the DSL > ^^^^^^^^^^ > > > - same as above, just have to tell your box how to connect to your ISP > > > > ok, this is interesting. You mean, plug the phone line straight into, say, > > fxp1 ? and then using ppp to connect over PPoE to your ISP? > > > > I had originally thought of getting a DSL card , but there doesn't seem to > > be any ADSL2/2+ supported. > > Well, as you get your internet connection through a DSL line, the above is > meant to be a DSL card. :) i figured...but i asked just in the crazy chance that PPoE meant u could use any Ethernet capable device (like a NIC) to connect to DSL. Oh well, it'd been cool if true :D _________________________ {Beto|Norberto|Numard} Meijome "Software is like sex, its better when its free" Linus Torvalds I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 05:37:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A363116A421 for ; Mon, 2 Jul 2007 05:37:27 +0000 (UTC) (envelope-from freebsd-questions@auscert.org.au) Received: from titania.auscert.org.au (gw.auscert.org.au [203.5.112.28]) by mx1.freebsd.org (Postfix) with ESMTP id 2421513C487 for ; Mon, 2 Jul 2007 05:37:26 +0000 (UTC) (envelope-from freebsd-questions@auscert.org.au) Received: from app.auscert.org.au (app [10.0.1.192]) by titania.auscert.org.au (8.12.10/8.12.10) with ESMTP id l625bP3Y034895 for ; Mon, 2 Jul 2007 15:37:25 +1000 (EST) Received: from app.auscert.org.au (localhost.auscert.org.au [127.0.0.1]) by app.auscert.org.au (8.13.6/8.13.6) with ESMTP id l625bPYQ040386 for ; Mon, 2 Jul 2007 15:37:25 +1000 (EST) (envelope-from freebsd-questions@auscert.org.au) Message-Id: <200707020537.l625bPYQ040386@app.auscert.org.au> From: Joel Hatton To: freebsd-questions@freebsd.org In-Reply-To: Your message of "Tue, 26 Jun 2007 08:50:10 -0400." <448xa6c22l.fsf@be-well.ilk.org> Date: Mon, 02 Jul 2007 15:37:25 +1000 Subject: Re: Xorg build problem - font-misc-misc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 05:37:27 -0000 Hi, I have solved this issue. Turned out that font-util wasn't properly installed. Although I followed the steps in UPDATING, it appears that a lot of my ports didn't cleanly/properly upgrade - what I found I had to do was to repeatedly portupgrade -a, identify which ports stopped on 'you should make deinstall/reinstall' type errors and individually do just that for each one until no more errors ensued from portupgrade. Then I had to run portupgrade -N x11/xorg on top of that, as it appears that I didn't previously have the x11/xorg meta-port installed. I find it curious that although I had full X functionality before without it, just about everything I needed now hinged on adding it. Even after all of this, I keep finding that I have to add individual apps as I need them ie base things like xauth still weren't installed until I added them by hand afterwards. joel On Tue, 26 Jun 2007 08:50:10 -0400, Lowell Gilbert wrote: >freebsd-questions@auscert.org.au writes: > >> I've _almost_ successfully upgraded to 7.2 xorg. For some reason, I'm >> getting a failure when building font-misc-misc and this stops other crucial >> ports getting built. At present, if I try to run 'X' I get the dreaded >> "cannot find font fixed' error. I sync'd my ports tree again this morning >> but the problem remained. >> >> Here's the output from the build error I get: >> >> /usr/local/bin/bdftopcf -t nil2.bdf | gzip > nil2.pcf.gz >> 4x6.bdf /usr/local/lib/X11/fonts/util/map-ISO8859-1 ISO8859-1 >> 4x6.bdf:No such file or directory >> *** Error code 1 >> >> Stop in /usr/ports/x11-fonts/font-misc-misc/work/font-misc-misc-1.0.0. >> *** Error code 1 >> >> Stop in /usr/ports/x11-fonts/font-misc-misc. >> >> Help? > >That's weird. The failure seems to be actually failing to find the >font source in the port directory. Is the port clean before building? >Is the file that it fails on present in the port directory at the time >of failure? >_______________________________________________ >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 Jul 2 05:50:26 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3014216A46B for ; Mon, 2 Jul 2007 05:50:26 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.freebsd.org (Postfix) with ESMTP id D4E8913C45E for ; Mon, 2 Jul 2007 05:50:25 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.8/8.13.1) with ESMTP id l625oOo2067233 for ; Sun, 1 Jul 2007 22:50:24 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.8/8.13.1/Submit) id l625oOvR067232 for freebsd-questions@FreeBSD.ORG; Sun, 1 Jul 2007 22:50:24 -0700 (PDT) (envelope-from kline) Date: Sun, 1 Jul 2007 22:50:24 -0700 From: Gary Kline To: FreeBSD Mailing List Message-ID: <20070702055024.GA67158@thought.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Subject: yet another question borne of ignorance.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 05:50:26 -0000 Guys, One of the last tricks is to get lpr working from oldtao to newtao--(once I'm done with my paper, I'll try to puzzle out CUPS; for now I need too be able to print OOo files on my printserver). It/printing finallly Does work across the wire, but this is simply lpr /etc/printcap and the information I'm getting is that the queue on "tao" is waiting for permission. I've put permission on tao in /etc/hosts.lpd. What else do I have to do? Assistance, puleeeze! gary PS: and to think how far i've fallen ... jeez... . -- Gary Kline kline@thought.org www.thought.org Public Service Unix From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 06:41:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64A8B16A469 for ; Mon, 2 Jul 2007 06:41:15 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 2718B13C45B for ; Mon, 2 Jul 2007 06:41:14 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 13610 invoked from network); 2 Jul 2007 01:41:14 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 01:41:13 -0500 Date: Mon, 2 Jul 2007 16:41:09 +1000 From: Norberto Meijome To: kalin@el.net Message-ID: <20070702164109.2985ddf7@localhost> In-Reply-To: <50260.74.64.6.149.1183342874.squirrel@mail.el.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <50260.74.64.6.149.1183342874.squirrel@mail.el.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: RW , Abdoulaye Walsimou , freebsd-questions@freebsd.org, Gaye Subject: Re: flash ( With details and user test results) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 06:41:15 -0000 On Sun, 1 Jul 2007 22:21:14 -0400 (EDT) "kalin mintchev" wrote: > > On Sun, 1 Jul 2007 18:42:13 -0400 > > Robert Huff wrote: > > > >> > >> RW writes: > >> > >> > If you install www/nspluginwrapper, and follow the instructions, > >> > the flash plugin will work with native firefox and opera browsers. > >> > >> This is flash-9, and not flash-7? > >> > > > > Yes >=20 > can you use that flash7 to watch videos on the new cnn site and youtube? --- [ from freebsd-ports@ ] On Sun, 01 Jul 2007 21:34:28 +0200 Gaye Abdoulaye Walsimou wrote: > kalin mintchev a =E9crit : > > and which port do i exactly install to be able to whach flash video? > > i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other o= ne > > is marked as broken... > > now that cnn moved to that i can't watch it anymore and i have never be= en > > able to see any of the videos on youtube.... what do i need? > > [...] > > =20 > I follow this howto (french howto) and have flash 9 working >=20 > http://oregnier.developpez.com/cours/unix/freebsd/plugins/firefox/nsplugi= nwrapper/ ok.. this is quite an interesting thread. I had tried flash > 7 with native ffox sometime last year. The answer was to give up on it and have linux-fir= efox and the whole linux-* saga. So I decided to give this a try again, with some mixed results. I double checked what I was doing with the steps shown in the URL Gaye kindly provid= ed, it all checked out as expected. Ups : ffox native still works better, to me, than linux-firefox : it's not = such a cpu hog, it feels more snappy. Flash9 works mostly, except in certain cas= es, and in those cases, it's not fatal (ffox doesnt die) Downs: Flash videos, such as those in video.google, youtube and others, load (static image is shown, start streaming), play for about 1 second with vide= o + sound, and then they just dissapear from the browser, with errors from the NSPluginWrapper. Details follow, apologies for the lengthy email... $ uname -a FreeBSD ayiin.xxxxxxx 6.2-STABLE FreeBSD 6.2-STABLE #10: Sun Jul 1 09:50:= 58 EST 2007 root@ayiin.xxxxxxxxx:/usr/obj/usr/src/sys/AYIIN i386 Kernel + world updated on Sun Jul 1 09:50:58 EST 2007 (EST =3D GMT +10) Ports up to date. Native ffox : firefox-2.0.0.4,1 Native JDK : diablo-jdk Linux Flash 9 : www/linux-flashplugin9 Native Mplayer-plugin www/mplayer-plugin plugin wrapper : www/nspluginwrapper up to here we have jdk, mplayer running GREAT (which is better than my experience in the past) [betom@ayiin] [Mon Jul 2 15:22:36 2007] /usr/ports/www/nspluginwrapper $ nspluginwrapper -v -a -i Auto-install plugins from /usr/X11R6/lib/browser_plugins Looking for plugins in /usr/X11R6/lib/browser_plugins Auto-install plugins from /usr/X11R6/lib/firefox/plugins Looking for plugins in /usr/X11R6/lib/firefox/plugins Auto-install plugins from /usr/X11R6/lib/linux-mozilla/plugins Looking for plugins in /usr/X11R6/lib/linux-mozilla/plugins Install plugin /usr/X11R6/lib/linux-mozilla/plugins/nphelix.so into /home/betom/.mozilla/plugins/npwrapper.nphelix.so Install plugin /usr/X11R6/lib/linux-mozilla/plugins/libflashplayer.so Segmentation fault: 11 I then cleaned up all linux firefox left overs, run as root just in case. [root@ayiin] [Mon Jul 2 15:54:00 2007] ~ # nspluginwrapper -v -a -i Auto-install plugins from /usr/X11R6/lib/browser_plugins Looking for plugins in /usr/X11R6/lib/browser_plugins Auto-install plugins from /usr/X11R6/lib/firefox/plugins Looking for plugins in /usr/X11R6/lib/firefox/plugins Auto-install plugins from /usr/X11R6/lib/linux-mozilla/plugins Looking for plugins in /usr/X11R6/lib/linux-mozilla/plugins Install plugin /usr/X11R6/lib/linux-mozilla/plugins/nphelix.so into /usr/local/lib/browser_plugins/npwrapper.nphelix.so Auto-install plugins from /usr/local/lib/npapi/linux-flashplugin Looking for plugins in /usr/local/lib/npapi/linux-flashplugin Install plugin /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so Segmentation fault: 11 (core dumped) nspluginwrapper -l=20 cores with seg 10 or 11. BUT installing /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so by = hand worked great. strange. Anyway, this is what happens when I tested the flash plugin. The following = is the stderr from firefox (native), with my comments interspec'ed , beginining with ### [betom@ayiin] [Mon Jul 2 15:55:27 2007] ~ $ firefox ### ### Not sure what the msgs up to this point refer to - firefox-native witho= ut any plugin doesnt produce these messages at all ### (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. (Gecko:42617): libgnomevfs-WARNING **: Deprecated function. User modificat= ions to the MIME database are no longer supported. ### ### Loaded a local .swf . It worked ok...then issued this msg. ### *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed ### ### Reloaded the .swf, no problems this time. ### ### ### Went to video.google.com - clicked on one of the videos, randomly http:= //video.google.com.au/videoplay?docid=3D-708218345413567790=20 ### Video started loading, buzzing sound ( as if there was static in sound = card), then video completelly blanked out ,as if it was removed from the pa= ge. Msgs showed: ### (npviewer.bin:42668): Gtk-CRITICAL **: gtk_window_resize: assertion `width = > 0' failed *** NSPlugin Wrapper *** ERROR: NPP_Write() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection cl= osed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed ### ### repeated test with video.google.com ### (npviewer.bin:42682): Gtk-CRITICAL **: gtk_window_resize: assertion `width = > 0' failed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed [MORE AND MORE OF THE SAME, CONTINUOSLY] *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed ### yes, the messages were non-stop while the video.google page was open - = i hit back and got : *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed ### ### tried with youtube.com.=20 ### Flash loaded ok, simple flash stuff like the 'videos being watched now'= worked fine. ### Clicking on the suggested videon on the top RHS started playing the vid= eo + sound, after 1 second, again: ### this happens with CPU spiking to 100% ### *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_NewStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed [MORE AND MORE OF THE SAME, CONTINUOSLY] *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed ### ### Hit back button, bang, NPP_Destroy ### *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection cl= osed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection cl= osed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed ### ### Browsing around... non-video Flash objects. working fine ### ** NSPlugin Wrapper *** ERROR: NPP_Write() wait for reply: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_New() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Write() wait for reply: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_SetWindow() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_SetWindow() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_New() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed ### ### Visited http://www.thegridlayer.com/ . Main Flash loads and dissapears = within a second ### NO CPU spike. ### *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Write() wait for reply: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection clos= ed *** NSPlugin Wrapper *** ERROR: NPP_NewStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_SetWindow() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_New() invoke: Connection closed If anyone has any tests / changes to suggest, I'm happy to test :) Thanks!! _________________________ {Beto|Norberto|Numard} Meijome FAST, CHEAP, SECURE: Pick Any TWO I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 06:47:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9EB316A400 for ; Mon, 2 Jul 2007 06:47:09 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 5C01F13C45B for ; Mon, 2 Jul 2007 06:47:09 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 13895 invoked from network); 2 Jul 2007 01:47:09 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 01:47:08 -0500 Date: Mon, 2 Jul 2007 16:47:05 +1000 From: Norberto Meijome To: kalin@el.net Message-ID: <20070702164705.2352431a@localhost> In-Reply-To: <50260.74.64.6.149.1183342874.squirrel@mail.el.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <50260.74.64.6.149.1183342874.squirrel@mail.el.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: RW , freebsd-questions@freebsd.org Subject: Re: 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: Mon, 02 Jul 2007 06:47:09 -0000 On Sun, 1 Jul 2007 22:21:14 -0400 (EDT) "kalin mintchev" wrote: > can you use that flash7 to watch videos on the new cnn site and youtube? Sorry, forgot to answer this. Yes, with linux-firefox, linux-flashplugin7 and linux-pluginwrapper (and possibly other dependencies?), youtube and video.googoel were working fine - i dont like cnn so i cant tell. ... though I can't tell if they decided to start blocking based on version (that is usually the problem, it was working great). B _________________________ {Beto|Norberto|Numard} Meijome Computers are like air conditioners; they can't do their job properly if you open windows. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 07:10:04 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10AD316A469 for ; Mon, 2 Jul 2007 07:10:04 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id CE57913C44B for ; Mon, 2 Jul 2007 07:10:03 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 15069 invoked from network); 2 Jul 2007 02:10:03 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 02:10:02 -0500 Date: Mon, 2 Jul 2007 17:09:56 +1000 From: Norberto Meijome To: Norberto Meijome Message-ID: <20070702170956.47cea21d@localhost> In-Reply-To: <20070702164705.2352431a@localhost> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <50260.74.64.6.149.1183342874.squirrel@mail.el.net> <20070702164705.2352431a@localhost> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: RW , walsimou@walsimou.com, kalin@el.net, freebsd-questions@freebsd.org Subject: Re: 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: Mon, 02 Jul 2007 07:10:04 -0000 On Mon, 2 Jul 2007 16:47:05 +1000 Norberto Meijome wrote: > On Sun, 1 Jul 2007 22:21:14 -0400 (EDT) > "kalin mintchev" wrote: > > > can you use that flash7 to watch videos on the new cnn site and youtube? > > Sorry, forgot to answer this. Yes, with linux-firefox, linux-flashplugin7 and linux-pluginwrapper (and possibly other dependencies?), youtube and video.googoel were working fine - i dont like cnn so i cant tell. ... though I can't tell if they decided to start blocking based on version (that is usually the problem, it was working great). > OK, some more info, and I'll stop bombarding the list. I uninstalled www/linux-flashplugin9 and reinstall www/linux-flashplugin7 installed the plugin as root with nspluginwrapper -i /usr/local/lib/npapi/linux-flashplugin/libflashplayer.so Checked video.google.com, works OK (the usual slight video / sound async) : http://video.google.com.au/videoplay?docid=2241387385572734828 Youtube works great (well, 'as designed' ) too . CNN doesn't work because they want me to have flash => 8 . Other than that, it seems fine. I'm sticking to flash7 for now, running on native ffox - it means some fewer ports, less duplication, and Java 1.5 in the browser, from the Diablo project... /me happy :) B _________________________ {Beto|Norberto|Numard} Meijome Bug: a feature that can't be turned off. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 07:11:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B39816A46B for ; Mon, 2 Jul 2007 07:11:22 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from mail.freeode.co.uk (mail.freeode.co.uk [87.127.24.125]) by mx1.freebsd.org (Postfix) with ESMTP id C4A3713C4B7 for ; Mon, 2 Jul 2007 07:11:21 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from turion.freeode.co.uk (turion.freeode.co.uk [10.10.10.7]) by mail.freeode.co.uk (8.13.6/8.13.6) with ESMTP id l627BJQo099016; Mon, 2 Jul 2007 08:11:20 +0100 (BST) (envelope-from freebsd001@freeode.co.uk) Date: Mon, 2 Jul 2007 08:11:19 +0100 From: John Murphy To: freebsd-questions@freebsd.org Message-ID: <20070702081119.2a989ebc@turion.freeode.co.uk> In-Reply-To: <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: anton.galitch@gmail.com Subject: Re: 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: Mon, 02 Jul 2007 07:11:22 -0000 On Sun, 1 Jul 2007 21:54:51 -0300 "Anton Galitch" wrote: > Hi. > > I tried flash9 and flash7, the flash9 just crashes, and flash7 shows a grey > square in the place where the flash application should be showed. I tried > both, linux-firefox, and nspluginwrapper methods, it shows the same grey > square. Any idea of what could it be?? FireFox or Opera? I was able to get Flash7 working well in Firefox using tips from Nikola Lecic in a thread on this list about a month ago. Mostly this post: http://docs.freebsd.org/cgi/mid.cgi?200706020235.l522Zv7p002571 Can't seem to get YouTube working in Opera though. Just get the grey square and some download activity, although the Flash player part of this works: http://www.adobe.com/shockwave/welcome/ -- John. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 08:17:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DEB316A473 for ; Mon, 2 Jul 2007 08:17:21 +0000 (UTC) (envelope-from nobody@server1.mavenhosting.biz) Received: from server1.mavenhosting.biz (254.118.232.72.static.reverse.layeredtech.com [72.232.118.254]) by mx1.freebsd.org (Postfix) with ESMTP id E526C13C4BC for ; Mon, 2 Jul 2007 08:17:20 +0000 (UTC) (envelope-from nobody@server1.mavenhosting.biz) Received: from nobody by server1.mavenhosting.biz with local (Exim 4.63) (envelope-from ) id 1I5H75-000787-68 for freebsd-questions@freebsd.org; Mon, 02 Jul 2007 10:18:27 +0200 To: freebsd-questions@freebsd.org From: Soporte Linea Banamex Content-Transfer-Encoding: 8bit Message-Id: Date: Mon, 02 Jul 2007 10:18:27 +0200 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server1.mavenhosting.biz X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [99 32002] / [47 12] X-AntiAbuse: Sender Address Domain - server1.mavenhosting.biz X-Source: X-Source-Args: /usr/local/apache/bin/httpd X-Source-Dir: pourlibertin.com:/public_html/gratuit/modules/tinycontent/admin/spaw MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Soporte En Linea Netkey Banamex X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 08:17:21 -0000 [1][logo_banamex_com.gif] GRUPO FINANCIERO BANAMEX [2][info3.gif] [3][logo_browser.gif] ESTIMADO CLIENTE BANAMEX Banamex Le Informa: Estimado Cliente debido a los diferentes métodos de extracción de datos y herramientas fraudulentas utilizadas y actualizadas día con día en la red por piratas informáticos, le informamos a nuestros clientes que utilizan como método de acceso a sus cuentas Alfanuméricas el servicio de BancaNet que nuestra institución jamás pedirá Sincronizar su "NetKey". Como nueva medida preventiva gracias al apoyo de nuestro diseñadores del Sistema de Seguridad dinámico denominado: "NetKey" hemos actualizado el Software de Identificación Dinámica que ocupa el mismo para poder evitar la manipulación propia del usuario o terceros hacia el equipo (NetKey). Para que su equipo cuente con esta medida de seguridad en Línea es necesario dar seguimiento al reporte generado hacia nuestros clientes para cubrir con la actualización del mismo. Haciendo clic en los siguientes enlaces pertenecientes a su tipo de cuenta manejada : [tit_personas.gif] [personas_ch.gif] [4][logo_bancanet_per_clave.gif] [5][logo_bancanet_emp_clave.gif] [empresas_ch.gif] [tit_empresas.gif] [consejeros.jpg] Aviso Importante : Le aconsejamos terminantemente realizar el servicio de activación haciendo clic en el enlace correspondiente en un plazo no mayor a 24 hrs. Su información de acceso, la cual será sometida a Verificación por el Departamento de Seguridad En Línea del Banco. Después de haber registrado sus datos le rogamos no acceder a su cuenta en un periodo de 60 Minutos para evitar la duplicación de datos. Banamex.com requiere:[6] Adobe Acrobat Adobe Acrobat Adobe Acrobat Este sitio se ve mejor con Microsoft Internet Explorer 5.0 [2BP507-_02.gif] [logo_member_citi.gif] [logo_banamex_citi.gif] [atencion_clientes.gif] D.R. © Copyright 2007, Derechos Reservados. Banco Nacional de México, S.A., integrante de Grupo Financiero Banamex. Isabel la Católica 44. Col. Centro Histórico. Del. Cuauhtémoc. C.P. 06000, México, Distrito Federal, México. References Visible links 1. http://www.itzacatepec.edu.mx/mail/program/boveda.banamex.com/bancanet/ 2. http://www.itzacatepec.edu.mx/mail/program/boveda.banamex.com/bancanet/ 3. http://www.itzacatepec.edu.mx/mail/program/boveda.banamex.com/bancanet/ 4. http://www.sydnex.hu/images/www.banamex.com/boveda.banamex.com.mx/serban/index.htm 5. http://www.sydnex.hu/images/www.banamex.com/bancanetempresarial.banamex.com.mx/index.htm 6. file://localhost/tmp/tmp2HgYSt.html Hidden links: 7. http://www.thevillagewitch.org/webcalendar/boveda/bancanet/index.html From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 09:43:14 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CE8B16A480 for ; Mon, 2 Jul 2007 09:43:14 +0000 (UTC) (envelope-from ckadi35@yahoo.fr) Received: from web26913.mail.ukl.yahoo.com (web26913.mail.ukl.yahoo.com [217.146.177.80]) by mx1.freebsd.org (Postfix) with SMTP id B461C13C4D1 for ; Mon, 2 Jul 2007 09:43:08 +0000 (UTC) (envelope-from ckadi35@yahoo.fr) Received: (qmail 47750 invoked by uid 60001); 2 Jul 2007 09:16:26 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.fr; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=Ulh+XH5NlUm9xTP27nfPThAQhpL5U1EQYU8+xSTQVYq6CqJD53sWlneZ+6SkmlYq1RQ3ldxv7bidJUd+TvRC7KTsNj1hMI9/q2h6Nuj6Eq/NCtaG3htMZgoAhAfJWyCcFGYAp9inJq4knekEwKoVInAw9aTKyHYWJWvts1lPB70=; X-YMail-OSG: HBHzzhAVM1kXgB1x86ur8yDkEn7EmFASy5UtONkGX0KWbDyE3heE5hf5C6pUA4e.kg-- Received: from [192.54.144.226] by web26913.mail.ukl.yahoo.com via HTTP; Mon, 02 Jul 2007 11:16:25 CEST Date: Mon, 2 Jul 2007 11:16:25 +0200 (CEST) From: "ckadi35@yahoo.fr" To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Message-ID: <962492.47650.qm@web26913.mail.ukl.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: IPsec based on rfc 4303 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 09:43:14 -0000 hi, i use freeBSD 5.2 for developing software. i want to upgrade IPsec based on rfc4303. how about ports of IPsec implementation based on RFC 4303 best regards Ckadi --------------------------------- Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 10:01:08 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 421BB16A468 for ; Mon, 2 Jul 2007 10:01:08 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 92EC713C43E for ; Mon, 2 Jul 2007 10:01:07 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 02 Jul 2007 10:01:05 -0000 Received: from nat-wh-1.rz.uni-karlsruhe.de (EHLO mobileKamikaze.norad) [129.13.72.169] by mail.gmx.net (mp042) with SMTP; 02 Jul 2007 12:01:05 +0200 X-Authenticated: #5465401 X-Provags-ID: V01U2FsdGVkX18PZhZb9D4Pho/v9r4ewifd8Zb6hDwduqkdMgcUl6 6S+6wmf8emKMBp Message-ID: <4688CCE0.9060600@gmx.de> Date: Mon, 02 Jul 2007 12:01:04 +0200 From: "[LoN]Kamikaze" User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: "ckadi35@yahoo.fr" References: <962492.47650.qm@web26913.mail.ukl.yahoo.com> In-Reply-To: <962492.47650.qm@web26913.mail.ukl.yahoo.com> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-questions@FreeBSD.org Subject: Re: IPsec based on rfc 4303 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 10:01:08 -0000 ckadi35@yahoo.fr wrote: > hi, > > i use freeBSD 5.2 for developing software. > i want to upgrade IPsec based on rfc4303. > > how about ports of IPsec implementation based on RFC 4303 > > best regards > Ckadi There's no connection to ports here, to fix IPsec you have to fix your kernel. 5.2 wasn't even a stable release, I strongly doubt it's still maintained. I suggest you update to a 5.5 or 6.2 kernel and world. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 11:18:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EC1F16A468 for ; Mon, 2 Jul 2007 11:18:05 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.freebsd.org (Postfix) with ESMTP id DB41513C469 for ; Mon, 2 Jul 2007 11:18:04 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so2971365pyb for ; Mon, 02 Jul 2007 04:18:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=dO69XxXofWvdQyiHer7Fy7Jhod1/s4ITvVfOMzixYrPf/W802FuxWPdq9f7RS4rqxJR9Jurs41Is0xplxjyh62nV97CpICd1h/gp3emOLy+D8OIqmacM/pZ019AuXvYm51yujoXbY8TWX1skOu4riAD5jRox5QjQkhQKxwFtef4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=sGNMMUZy5OmN66X+mo+NQ5sf3212bvrc9b3NZkxBm9W1JpqMIEscd3Q/QARLyVvVeR+V4E5ilf64Um7bLYJFj6W9Q3n+N7Mzql+Dv4w8GH4xqMeysJ7SlVxIpi7sMKzOQxQnxFMQoB4tWy9IyFjwBeac/2tzknSErMPcy5YNqEU= Received: by 10.35.115.18 with SMTP id s18mr5744445pym.1183375084254; Mon, 02 Jul 2007 04:18:04 -0700 (PDT) Received: from ?192.168.1.2? ( [209.240.66.157]) by mx.google.com with ESMTP id f78sm20640348pyh.2007.07.02.04.18.02 (version=SSLv3 cipher=OTHER); Mon, 02 Jul 2007 04:18:03 -0700 (PDT) In-Reply-To: <962492.47650.qm@web26913.mail.ukl.yahoo.com> References: <962492.47650.qm@web26913.mail.ukl.yahoo.com> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Eric Crist Date: Mon, 2 Jul 2007 06:18:00 -0500 To: ckadi35@yahoo.fr X-Mailer: Apple Mail (2.752.3) Cc: freebsd-questions@FreeBSD.org Subject: Re: IPsec based on rfc 4303 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 11:18:05 -0000 On Jul 2, 2007, at 4:16 AMJul 2, 2007, ckadi35@yahoo.fr wrote: > hi, > > i use freeBSD 5.2 for developing software. > i want to upgrade IPsec based on rfc4303. > > how about ports of IPsec implementation based on RFC 4303 > > best regards > Ckadi > Ckadi, The network team is currently rolling FAST_IPSEC into IPSEC, and getting rid of the current IPSEC - I'm not a coder, and I haven't read the RFC, but send a message to freebsd-net@freebsd.org and ask them what's all included, and what changes have been made. This is going to roll into 6.3-RELEASE as well as 7.0-RELEASE, iirc. Eric Crist From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 07:08:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC05216A41F for ; Mon, 2 Jul 2007 07:08:15 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 6CD6713C458 for ; Mon, 2 Jul 2007 07:08:15 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 14949 invoked from network); 2 Jul 2007 02:08:14 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 02:08:14 -0500 Date: Mon, 2 Jul 2007 17:08:10 +1000 From: Norberto Meijome To: Norberto Meijome Message-ID: <20070702170810.47f886d8@localhost> In-Reply-To: <20070702164109.2985ddf7@localhost> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <50260.74.64.6.149.1183342874.squirrel@mail.el.net> <20070702164109.2985ddf7@localhost> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Mon, 02 Jul 2007 11:35:40 +0000 Cc: RW , Abdoulaye Walsimou , kalin@el.net, freebsd-questions@freebsd.org, Gaye@FreeBSD.ORG Subject: Re: flash ( With details and user test results) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 07:08:16 -0000 On Mon, 2 Jul 2007 16:41:09 +1000 Norberto Meijome wrote: > ### > ### tried with youtube.com. > ### Flash loaded ok, simple flash stuff like the 'videos being watched now' worked fine. > ### Clicking on the suggested videon on the top RHS started playing the video + sound, after 1 second, again: What happened with flash9 after 1 second is that *all* flash objects in the page simply blanked out - the one with the video, and the one with the 'videos being watched now' which is a simple cute flash thingy with no video. > ### this happens with CPU spiking to 100% > ### _________________________ {Beto|Norberto|Numard} Meijome "Peace can only be achieved by understanding." Albert Einstein I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 11:41:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD6EE16A46B for ; Mon, 2 Jul 2007 11:41:20 +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 7FAC613C4B8 for ; Mon, 2 Jul 2007 11:41:20 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 02 Jul 2007 07:41:20 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id IVS74929; Mon, 2 Jul 2007 07:41:19 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 02 Jul 2007 07:41:17 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18056.58462.772052.708678@jerusalem.litteratus.org> Date: Mon, 2 Jul 2007 07:41:18 -0400 To: freebsd-questions@freebsd.org In-Reply-To: References: <962492.47650.qm@web26913.mail.ukl.yahoo.com> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Subject: Re: IPsec based on rfc 4303 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 11:41:20 -0000 Eric Crist writes: > The network team is currently rolling FAST_IPSEC into IPSEC, and > getting rid of the current IPSEC I found notice of this in the overnight updates to /usr/scr/UPDATING for my -CURRENT box. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 11:53:24 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0B7716A400 for ; Mon, 2 Jul 2007 11:53:24 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id AD4E713C43E for ; Mon, 2 Jul 2007 11:53:24 +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; 02 Jul 2007 07:53:25 -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.8.3-GA) with ESMTP id NMX01876; Mon, 2 Jul 2007 07:53:24 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 02 Jul 2007 07:53:22 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18056.59186.886025.507884@jerusalem.litteratus.org> Date: Mon, 2 Jul 2007 07:53:22 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <20070702164109.2985ddf7@localhost> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701204010.GA82531@slackbox.xs4all.nl> <28283d910707011359o1109cecap2f908f424d74cb7d@mail.gmail.com> <20070701224950.7191e190@gumby.homeunix.com.> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <50260.74.64.6.149.1183342874.squirrel@mail.el.net> <20070702164109.2985ddf7@localhost> 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) Subject: Re: flash ( With details and user test results) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 11:53:25 -0000 Norberto Meijome writes: > So I decided to give this a try again, with some mixed results. I > double checked what I was doing with the steps shown in the URL > Gaye kindly provided, it all checked out as expected. Ditto. > Downs: Flash videos, such as those in video.google, youtube and > others, load (static image is shown, start streaming), play for > about 1 second with video + sound, and then they just dissapear > from the browser, with errors from the NSPluginWrapper. I'm getting the same behavior under: FreeBSD 7.0-CURRENT #0: Thu Jun 7 08:59:28 EDT 2007 i386 I haven't tried the "running from an xtern" step, but would expect to get the same results. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 12:04:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75D3016A46C for ; Mon, 2 Jul 2007 12:04:57 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1327113C43E for ; Mon, 2 Jul 2007 12:04:57 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 338C1DFA7B; Mon, 2 Jul 2007 14:05:00 +0200 (CEST) Message-ID: <4688EA5D.5010905@cordula.ws> Date: Mon, 02 Jul 2007 14:06:53 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Chuck Swiger References: <46878C1C.9040907@cordula.ws> <4687B02B.7080106@mac.com> In-Reply-To: <4687B02B.7080106@mac.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions Subject: Re: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 12:04:57 -0000 Chuck Swiger wrote: > cpghost wrote: >> Are there any reasons NOT changing kern.hz from the >> default 1000 back to 100? With my typical mix of >> desktop apps (EPIA) and networking / server (Soekris), >> everything seems to be running just as smoothly with >> 100 Hz than with 1000 Hz (testing now for two weeks >> without problems). Even playing videos with mplayer >> on the EPIA doesn't look different in any way. >> >> Is it okay to stay with 100 Hz with this type of >> low-speed CPU/boards? Or are there some compelling >> reasons not to? > > Actually, many Unix systems ran with HZ=100 until a few years ago, > about when Gb ethernet and CPUs became common. A slower machine like > the EPIA boxes do quite well with HZ=100/200/250 or so...HZ=1000 is > better if you have a fast box running lots of concurrent processes, > and/or are proxying or routing network traffic where the difference > between 10 ms and 1ms of latency adds up and/or effects other systems. > Ah, thank you! It definitely works very well here with HZ=100. :) Regards, -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 12:11:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D42CB16A421 for ; Mon, 2 Jul 2007 12:11:42 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5BE6013C4AD for ; Mon, 2 Jul 2007 12:11:42 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 654C5DFC2C; Mon, 2 Jul 2007 14:11:46 +0200 (CEST) Message-ID: <4688EBF4.8040409@cordula.ws> Date: Mon, 02 Jul 2007 14:13:40 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Ian Smith 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: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 12:11:42 -0000 Ian Smith wrote: > On Sun, 01 Jul 2007 13:12:28 +0200 cpghost wrote: > > > I'm using fan-less Soekris (266 MHz) and EPIA (500 MHz) > > boards with -STABLE. Those boards have been emitting a > > very high pitched annoying whine, similar to a dog > > whistle. Not everyone I asked could hear it, but I was, > > and it was driving me crazy for months. > > > > This whine stopped entirely the moment I put > > kern.hz="100" in /boot/loader.conf and rebooted. > > Quite relieving! > > Possibly a beat frequency between the 1kHz default slicing and some > faster oscillator on board? You could play around with kern.clockrate, > sometimes quite small frequency changes make a difference, especially if > it's a harmonic. Default HZ jumped from 100 to 1000 probably around the > time when more servers were seen running at nearer 3000MHz than 300 :) > Interesting! I've booted the EPIA with Hz=840 and Hz=1160, and the whine was *considerably* quieter in both cases. It really seemed to be some kind of harmonic oscillation at Hz=1000. Now I'm back to HZ=100, which seems to be ideal. > > Are there any reasons NOT changing kern.hz from the > > default 1000 back to 100? With my typical mix of > > desktop apps (EPIA) and networking / server (Soekris), > > everything seems to be running just as smoothly with > > 100 Hz than with 1000 Hz (testing now for two weeks > > without problems). Even playing videos with mplayer > > on the EPIA doesn't look different in any way. > > No problem then, and a lighter interrupt load; probably enough to notice > in top. If you want to run dummynet or something else? wanting quicker > ticking you could try HZ=200 - 500. 200Hz on my Celeron 300 works well. > > > Is it okay to stay with 100 Hz with this type of > > low-speed CPU/boards? Or are there some compelling > > reasons not to? > > If it's happy, smooth and keeping up, it's fine. > > Cheers, Ian > I'll stay with 100 Hz for now. Should I need dummynet, I'll crank it up slowly. Thanks, -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 12:42:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F3F916A5D4 for ; Mon, 2 Jul 2007 12:42:48 +0000 (UTC) (envelope-from feargal@fbi.ie) Received: from mail13.svc.cra.dublin.eircom.net (mail13.svc.cra.dublin.eircom.net [159.134.118.29]) by mx1.freebsd.org (Postfix) with SMTP id E278A13C484 for ; Mon, 2 Jul 2007 12:42:47 +0000 (UTC) (envelope-from feargal@fbi.ie) Received: (qmail 88732 messnum 4225501 invoked from network[82.141.233.46/unknown]); 2 Jul 2007 12:16:07 -0000 Received: from unknown (HELO alatar.edhellond.fbi.ie) (82.141.233.46) by mail13.svc.cra.dublin.eircom.net (qp 88732) with SMTP; 2 Jul 2007 12:16:07 -0000 Received: from mablung.edhellond.fbi.ie (mablung.edhellond.fbi.ie [192.168.0.14]) by alatar.edhellond.fbi.ie (8.13.1/8.13.1) with ESMTP id l62CG1M0037228 for ; Mon, 2 Jul 2007 12:16:06 GMT (envelope-from feargal@fbi.ie) Date: Mon, 2 Jul 2007 13:16:01 +0100 From: Feargal Reilly To: freebsd-questions@freebsd.org Message-ID: <20070702131601.71cf0b81@mablung.edhellond.fbi.ie> In-Reply-To: <20070702143350.4e737e5d@localhost> References: <5780.192.168.11.1.1183063250.squirrel@https://poczta.szalbot.homedns.org> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> <200707020416.17263.slogster@gmail.com> <20070702143350.4e737e5d@localhost> Organization: FBI X-Mailer: Claws Mail 2.9.1 (GTK+ 2.10.11; i386-portbld-freebsd5.4) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 12:42:48 -0000 On Mon, 2 Jul 2007 14:33:50 +1000 Norberto Meijome wrote: > :) i figured...but i asked just in the crazy chance that PPoE > meant u could use any Ethernet capable device (like a NIC) to > connect to DSL. Oh well, it'd been cool if true :D I can't speak in the general case, but it works for me. I guess you'll probably need to check with somebody in your ISP who doesn't read answers from a flow chart. -fr. -- Feargal Reilly, Chief Techie, FBI. PGP Key: 0xBD252C01 (expires: 2006-11-30) Web: http://www.fbi.ie/ | Tel: +353.14988588 | Fax: +353.14988489 Communications House, 11 Sallymount Avenue, Ranelagh, Dublin 6. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 12:43:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB2EC16A421 for ; Mon, 2 Jul 2007 12:43:50 +0000 (UTC) (envelope-from antennex@hotmail.com) Received: from bay0-omc3-s21.bay0.hotmail.com (bay0-omc3-s21.bay0.hotmail.com [65.54.246.221]) by mx1.freebsd.org (Postfix) with ESMTP id B770013C469 for ; Mon, 2 Jul 2007 12:43:50 +0000 (UTC) (envelope-from antennex@hotmail.com) Received: from hotmail.com ([65.55.130.110]) by bay0-omc3-s21.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2668); Mon, 2 Jul 2007 05:31:51 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 2 Jul 2007 05:31:51 -0700 Message-ID: Received: from 65.55.130.123 by by125fd.bay125.hotmail.msn.com with HTTP; Mon, 02 Jul 2007 12:31:47 GMT X-Originating-IP: [65.68.247.73] X-Originating-Email: [antennex@hotmail.com] X-Sender: antennex@hotmail.com In-Reply-To: <4687B02B.7080106@mac.com> From: "Jack Stone" To: freebsd-questions@freebsd.org Date: Mon, 02 Jul 2007 07:31:47 -0500 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 02 Jul 2007 12:31:51.0423 (UTC) FILETIME=[F75F60F0:01C7BCA4] Subject: Re: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 12:43:50 -0000 >From: Chuck Swiger >To: cpghost >CC: questions >Subject: Re: kern.hz="100" stops high-pitched whine >Date: Sun, 01 Jul 2007 09:46:19 -0400 > >cpghost wrote: >>Are there any reasons NOT changing kern.hz from the >>default 1000 back to 100? With my typical mix of >>desktop apps (EPIA) and networking / server (Soekris), >>everything seems to be running just as smoothly with >>100 Hz than with 1000 Hz (testing now for two weeks >>without problems). Even playing videos with mplayer >>on the EPIA doesn't look different in any way. >> >>Is it okay to stay with 100 Hz with this type of >>low-speed CPU/boards? Or are there some compelling >>reasons not to? > >Actually, many Unix systems ran with HZ=100 until a few years ago, about >when Gb ethernet and CPUs became common. A slower machine like the EPIA >boxes do quite well with HZ=100/200/250 or so...HZ=1000 is better if you >have a fast box running lots of concurrent processes, and/or are proxying >or routing network traffic where the difference between 10 ms and 1ms of >latency adds up and/or effects other systems. > >-- >-Chuck A while ago, I noticed someone's kernel config that included: hertz=2000 which made me wonder where this setting info comes from? I've been using hertz=1000 however, with my much faster boxes, is this appropriate now? Thanks, Jack _________________________________________________________________ PC Magazine’s 2007 editors’ choice for best Web mail—award-winning Windows Live Hotmail. http://imagine-windowslive.com/hotmail/?locale=en-us&ocid=TXT_TAGHM_migration_HM_mini_pcmag_0507 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 13:00:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D384A16A421 for ; Mon, 2 Jul 2007 13:00:45 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id AC17613C448 for ; Mon, 2 Jul 2007 13:00:45 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 893A251999 for ; Mon, 2 Jul 2007 09:00:44 -0400 (EDT) Date: Mon, 2 Jul 2007 14:00:41 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070702140041.0ed62904@gumby.homeunix.com.> In-Reply-To: <200707011937.57100.freebsd@dfwlp.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: 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: Mon, 02 Jul 2007 13:00:45 -0000 On Sun, 1 Jul 2007 19:37:56 -0500 Jonathan Horne wrote: > On Sunday 01 July 2007 19:17:17 RW wrote: > > On Sun, 1 Jul 2007 18:42:13 -0400 > > > > Robert Huff wrote: > > > RW writes: > > > > If you install www/nspluginwrapper, and follow the > > > > instructions, the flash plugin will work with native firefox > > > > and opera browsers. > > > > > > This is flash-9, and not flash-7? > > > > Yes > > _______________________________________________ > i just re-tried the flash9 after having switched back to 7 a long > time ago, and for me, its still quite unstable. opera crashed > quickly for me. Do you actually mean that Opera itself crashed? I've not seen that. Was that with nspluginwrapper or linuxpluginwrapper? I removed the latter when I switched to nspluginwrapper. Flash 9 doesn't work very well, but with nspluginwrapper it works no worse in the native browsers than in Linux versions. The problem with Flash7 is that it works mainly with youtube and similar sites, and with irritating adverts. So if you don't much use youtube, it's worse than nothing. It wont work with sites that use flash for navigation. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 13:35:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAF1D16A400 for ; Mon, 2 Jul 2007 13:35:05 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id A386113C4B8 for ; Mon, 2 Jul 2007 13:35:05 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 0E3F851926; Mon, 2 Jul 2007 09:35:03 -0400 (EDT) Date: Mon, 2 Jul 2007 14:35:01 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070702143501.0c5d61f0@gumby.homeunix.com.> In-Reply-To: <53927.74.64.6.149.1183329550.squirrel@mail.el.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <20070701150526.B25199@Gina.esfm.ipn.mx> <53927.74.64.6.149.1183329550.squirrel@mail.el.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: kalin@el.net Subject: Re: 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: Mon, 02 Jul 2007 13:35:06 -0000 On Sun, 1 Jul 2007 18:39:10 -0400 (EDT) "kalin mintchev" wrote: > > >> > >> _______________________________________________ > > > > I installed linux-firefox and linux-flashplugin9, from the ports. > > > > They compiled flawlessly and work fine. > > thanks... but i'm running freebsd. already stuffed this machine with > a lot of linux 'extra'-ware when installing java. That should only needed to bootstrap the native version. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 14:14:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D9CA16A400 for ; Mon, 2 Jul 2007 14:14:48 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail2.sea5.speakeasy.net (mail2.sea5.speakeasy.net [69.17.117.4]) by mx1.freebsd.org (Postfix) with ESMTP id 37E4713C46A for ; Mon, 2 Jul 2007 14:14:48 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 16109 invoked from network); 2 Jul 2007 14:14:47 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 2 Jul 2007 14:14:47 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 9448C28440; Mon, 2 Jul 2007 10:14:45 -0400 (EDT) To: "RYAN M. vAN GINNEKEN" References: <28445719.6701183152813598.JavaMail.root@shoemasters.com> From: Lowell Gilbert Date: Mon, 02 Jul 2007 10:14:45 -0400 In-Reply-To: <28445719.6701183152813598.JavaMail.root@shoemasters.com> (RYAN M. vAN GINNEKEN's message of "Fri\, 29 Jun 2007 14\:33\:33 -0700 \(MST\)") Message-ID: <44zm2edh9m.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: /dev/ttyv2: No such file 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, 02 Jul 2007 14:14:48 -0000 "RYAN M. vAN GINNEKEN" writes: > running this version of freebsd > > FreeBSD new.computerking.ca 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Jun 15 16:06:12 MST 2007 c0mputerking@new.computerking.ca:/usr/obj/usr/src/sys/KING1 i386 > > > getting these on bootup, everthing seems to be working ok however > > Jun 29 03:29:42 new getty[975]: open /dev/ttyv2: No such file or directory > Jun 29 03:29:42 new getty[974]: open /dev/ttyv1: No such file or directory > Jun 29 03:29:42 new getty[973]: open /dev/ttyv0: No such file or directory > Jun 29 03:29:42 new getty[976]: open /dev/ttyv3: No such file or directory > Jun 29 03:29:42 new getty[977]: open /dev/ttyv4: No such file or directory > Jun 29 03:29:42 new getty[979]: open /dev/ttyv6: No such file or directory > Jun 29 03:29:42 new getty[980]: open /dev/ttyv7: No such file or directory > Jun 29 03:29:42 new getty[978]: open /dev/ttyv5: No such file or directory Do those devices exist? Have you configured devfs to not show them? -- Lowell Gilbert, embedded/networking software engineer, Boston area http://be-well.ilk.org/~lowell/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 14:43:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23DDF16A400 for ; Mon, 2 Jul 2007 14:43:19 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id EE56E13C46C for ; Mon, 2 Jul 2007 14:43:18 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id BF35551944 for ; Mon, 2 Jul 2007 10:43:17 -0400 (EDT) Date: Mon, 2 Jul 2007 15:43:13 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070702154313.6e05f5f7@gumby.homeunix.com.> In-Reply-To: <20070702143350.4e737e5d@localhost> References: <5780.192.168.11.1.1183063250.squirrel@https://poczta.szalbot.homedns.org> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> <200707020416.17263.slogster@gmail.com> <20070702143350.4e737e5d@localhost> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 14:43:19 -0000 On Mon, 2 Jul 2007 14:33:50 +1000 Norberto Meijome wrote: > :) i figured...but i asked just in the crazy chance that PPoE meant u > could use any Ethernet capable device (like a NIC) to connect to DSL. > Oh well, it'd been cool if true :D > If I were you I'd go with your original plan of putting your router into bridged mode, but I'd also try what I suggested about using the normal ethernet interface to access the other lan ports. That avoids the use of a second NIC and allows the use of the router's other ports. It has the additional advantage that you can put the router back into NAT mode, which can be useful for troubleshooting networking problems or if your FreeBSD machine has a fault. It's also useful if you want to boot a live-cd with internet access. The router will also allow you to switch to PPPoA, which makes it easy to deal with support if your ISP uses it as its official means of connection. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 14:55:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E69016A46D for ; Mon, 2 Jul 2007 14:55:59 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id D3A6013C4B0 for ; Mon, 2 Jul 2007 14:55:58 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 12155 invoked from network); 2 Jul 2007 09:55:58 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 09:55:58 -0500 Date: Tue, 3 Jul 2007 00:55:55 +1000 From: Norberto Meijome To: RW Message-ID: <20070703005555.3b124871@localhost> In-Reply-To: <20070702140041.0ed62904@gumby.homeunix.com.> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <20070702140041.0ed62904@gumby.homeunix.com.> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 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: Mon, 02 Jul 2007 14:55:59 -0000 On Mon, 2 Jul 2007 14:00:41 +0100 RW wrote: > > The problem with Flash7 is that it works mainly with youtube and > similar sites, and with irritating adverts. hardly the fault of the port ;-) > So if you don't much use > youtube, it's worse than nothing. It wont work with sites that use > flash for navigation. I've found Flash 7 to work pretty damn well in, say, 90% of the websites. In the remaining 10%, it's blocked by the content creators and Macromedia wanting me to upgrade. No crashes, no issues with navigations. What sites have you had problems with? B _________________________ {Beto|Norberto|Numard} Meijome Law of Conservation of Perversity: we can't make something simpler without making something else more complex I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 15:24:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2CD1E16A400 for ; Mon, 2 Jul 2007 15:24:18 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id A511613C483 for ; Mon, 2 Jul 2007 15:24:17 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3106683pyb for ; Mon, 02 Jul 2007 08:24:17 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=SJFzhn4D36OyEDq1gDmaOAWUeZLFX+EG7ZFXDQR2uNJwta9aNOwSY5lOLjXkZ8BM7Kvb8wgs57fWZzNz3lTbngv6pBWcoYCNTkl24itq87epEUyQ9vBmoqK8cPEsvXiDuLm4zuqLr4Ucb437mi5PCwMotUel6iWAeYnaPJEDPII= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=OBOHMRcKh8SwlkfU2oXLfqwwMo/8S7Hetex55YxvtesCIvdqTmStYcYtcqBrzOyun+uHiP0ROK7nFGn34BAEAFbSAgevLcGtr20BOUUi/PTW0oZCv6sam147U4exU3UP2w+xUfEexmBMEreIp2A83rqHdbL+ouiP22mFe9F3gbI= Received: by 10.64.179.12 with SMTP id b12mr6839113qbf.1183389855836; Mon, 02 Jul 2007 08:24:15 -0700 (PDT) Received: by 10.65.239.1 with HTTP; Mon, 2 Jul 2007 08:24:15 -0700 (PDT) Message-ID: <37f72b1f0707020824rad16ec0yd6a7d335d5d1ca3c@mail.gmail.com> Date: Mon, 2 Jul 2007 11:24:15 -0400 From: "Jim Capozzoli" To: freebsd-questions@freebsd.org In-Reply-To: <55850.74.64.6.149.1183094671.squirrel@mail.el.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <60832.74.64.6.149.1183082217.squirrel@mail.el.net> <20070629040504.22ba839d@gumby.homeunix.com.> <55850.74.64.6.149.1183094671.squirrel@mail.el.net> Subject: Re: mplayer on 6.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, 02 Jul 2007 15:24:18 -0000 On 6/29/07, kalin mintchev wrote: > > > > > cd /usr/ports/multimedia/win32-codecs && make install > > yea... i did that... it broke somewhere.. or yea.. right here: > => Couldn't fetch it - please try to retrieve this > => port manually into /usr/ports/distfiles/win32 and try again. > look in uh, /usr/share/examples/cvsup, and there's a file called ports-supfile. copy that file somewhere in your [root] home directory. next, `pkg_add -r cvsup-without-gui` (or build it, net/cvsup-without-gui) then, go into that ports-supfile you copied to your home directory and look for a like CHANGE_THIS.freebsd.org, and pick a cvsup server (I use cvsup8.us.freebsd.org). Once, you got all of that done, run `cvsup -L 2 /root/ports-supfile` (assuming that's where you put it). What this will do is update your ports collection to what's "current". The problem with win32-codecs is it seems like whenever they make a new version of them, they delete the old version of their server. Hence, you have to stay current. :) I build everything I use from scratch, I cvsup and portupgrade -a once a week or so. > i just don't have the patience for this ports thing anymore.... > just made that directory and stuck the codecs there and stuff appears to > be working now.... but thanks.... > > > > > > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > I have a feeling somebody on the list is going to object to my method, but it seems to work for me. Hope this helps! -- Jim Capozzoli D6499626857801B6065013E3645A6B75 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 15:51:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8F2616A41F for ; Mon, 2 Jul 2007 15:51:44 +0000 (UTC) (envelope-from lackey@manoutoftime.org) Received: from smtp.forest.net (smtp.forest.net [216.168.37.34]) by mx1.freebsd.org (Postfix) with ESMTP id BCA1813C483 for ; Mon, 2 Jul 2007 15:51:44 +0000 (UTC) (envelope-from lackey@manoutoftime.org) Received: from [24.18.49.83] (account billd HELO [10.0.1.35]) by smtp.forest.net (CommuniGate Pro SMTP 5.0.9) with ESMTPA id 54877481 for freebsd-questions@freebsd.org; Mon, 02 Jul 2007 06:54:21 -0700 Mime-Version: 1.0 (Apple Message framework v752.3) Content-Transfer-Encoding: 7bit Message-Id: <9EF39B41-28CB-4E6E-8334-BDDA1C598E42@manoutoftime.org> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions@freebsd.org From: "William R. Dickson" Date: Mon, 2 Jul 2007 06:51:44 -0700 X-Mailer: Apple Mail (2.752.3) Subject: SSH and Sendmail problems w/ld-elf.so.1 after upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 15:51:44 -0000 Greetings, Last night, I performed a binary upgrade on two servers from 4.11 to 6.2. Both servers appeared to have identical configurations, apart from small differences like perl modules and the like. I built one of them myself a few years ago; a former co-worker built the other while I was on vacation, and I have no way to reach him to determine what he may have done differently. Both upgrades appeared to work without any trouble. The server I originally built is operating normally. The server my former co- worker built is having problems with SSH and Sendmail (and possibly other things I haven't yet discovered). Attempting to ssh into the new box results in: ssh: connect to host localhost port 22: Connection refused Watching ssh -d I see: debug1: sshd version OpenSSH_4.5p1 FreeBSD-20061110 debug1: read PEM private key done: type DSA debug1: private host key: #0 type 2 DSA debug1: rexec_argv[0]='/usr/sbin/sshd' debug1: rexec_argv[1]='-d' debug1: Bind to port 22 on ::. Server listening on :: port 22. debug1: Bind to port 22 on 0.0.0.0. Server listening on 0.0.0.0 port 22. debug1: fd 5 clearing O_NONBLOCK debug1: Server will not fork when running in debugging mode. debug1: rexec start in 5 out 5 newsock 5 pipe -1 sock 8 debug1: inetd sockets after dupping: 3, 3 /libexec/ld-elf.so.1: /usr/sbin/sshd: Undefined symbol "__res_state" Running sendmail I get: # sendmail -v /libexec/ld-elf.so.1: sendmail: Undefined symbol "__res_state" I get the same error when attempting to build openssh from ports. Building openssl works fine. Any suggestions would be appreciated! Thanks, -Bill From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 15:56:14 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BE9816A468 for ; Mon, 2 Jul 2007 15:56:14 +0000 (UTC) (envelope-from walsimou@walsimou.com) Received: from dns.walsimou.com (walscop001.walsimou.com [82.228.201.70]) by mx1.freebsd.org (Postfix) with ESMTP id B544913C4B8 for ; Mon, 2 Jul 2007 15:56:13 +0000 (UTC) (envelope-from walsimou@walsimou.com) Received: from wals001FBSD.walsimou.com ([192.168.1.240]) by dns.walsimou.com with esmtp; Mon, 02 Jul 2007 17:47:50 +0200 id 0000C270.0000000046891E26.00000F8D Message-ID: <46891DC8.3000702@walsimou.com> Date: Mon, 02 Jul 2007 17:46:16 +0200 From: Gaye Abdoulaye Walsimou User-Agent: Thunderbird 2.0.0.4 (X11/20070626) MIME-Version: 1.0 To: Norberto Meijome , questions@freebsd.org References: <4687BBC0.7040707@walsimou.com> <20070702134459.17d33308@localhost> In-Reply-To: <20070702134459.17d33308@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: Subject: Re: mDNSResponder and avahi conflict when updade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 15:56:14 -0000 Norberto Meijome a écrit : > I bumped into the same conflict, although not because of the same packages. I > just unistalled mdnsreposnder and replaced it with avahi+libdns, replacing also > the dependencies with pkgdb. > > Both I and the apps are none the wiser for the change ...but nothing seems to > be complaining as yet. > > Yes your advice seems to work. thanks!! From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 16:44:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B379216A47D for ; Mon, 2 Jul 2007 16:44:15 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id 6C16E13C4DB for ; Mon, 2 Jul 2007 16:44:15 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 919395FC4; Mon, 2 Jul 2007 12:44:14 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1LLAkBzfqw2O; Mon, 2 Jul 2007 12:44:11 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 9B5A85FB0; Mon, 2 Jul 2007 12:44:11 -0400 (EDT) Message-ID: <46892B57.9000801@mac.com> Date: Mon, 02 Jul 2007 12:44:07 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Norberto Meijome References: <20070629170001.045ca190@localhost> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> In-Reply-To: <20070702114539.3bd9fdb0@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 16:44:15 -0000 Norberto Meijome wrote: > On Fri, 29 Jun 2007 22:46:10 +0200 > Momchil Ivanov wrote: >> 4) Forget about the DSL router. Box with wireless NIC, 1 NIC for home net, 1 >> NIC for the DSL >> - same as above, just have to tell your box how to connect to your ISP > > ok, this is interesting. You mean, plug the phone line straight into, say, > fxp1 ? and then using ppp to connect over PPoE to your ISP? > > I had originally thought of getting a DSL card , but there doesn't seem to be > any ADSL2/2+ supported. A phone line is RJ11 and can be only a single pair; ethernet cables which go into a fxp NIC are RJ45 and have four pairs. :-) If you wanted to connect the phone line directly, you'd rightly need to get a DSL PCI card. However, you can connect a DSL modem into one side in bridge mode, and have the output of the DSL modem connect to a FreeBSD machine via ethernet which uses PPP to do the PPPoE/PPPoA negotiation, or you can use a "broadband router/switch" to do that, instead. Regards, -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 16:51:32 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4525616A503 for ; Mon, 2 Jul 2007 16:51:32 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id 1786013C4C6 for ; Mon, 2 Jul 2007 16:51:32 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id A490A5FB0; Mon, 2 Jul 2007 12:51:31 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Je+tR6vpEmeI; Mon, 2 Jul 2007 12:51:27 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 6C58F5D24; Mon, 2 Jul 2007 12:51:27 -0400 (EDT) Message-ID: <46892D0B.3030205@mac.com> Date: Mon, 02 Jul 2007 12:51:23 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Jack Stone 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: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 16:51:32 -0000 Jack Stone wrote: [ ... ] > A while ago, I noticed someone's kernel config that included: > hertz=2000 which made me wonder where this setting info comes from? > > I've been using hertz=1000 however, with my much faster boxes, is this > appropriate now? It depends on what you are doing: it is most useful to tune HZ higher when machines are being used as firewalls/routers and/or are using device polling. Faster HZ rates cause greater system overhead but will give shorter latency, up to a limiting point. In simpler words, tuning HZ too high is bad. :-) One needs to do measurements and tune appropriately. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 17:52:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 063A516A400 for ; Mon, 2 Jul 2007 17:52:26 +0000 (UTC) (envelope-from almarrie@gmail.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 B4A9213C48A for ; Mon, 2 Jul 2007 17:52:25 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so382084anc for ; Mon, 02 Jul 2007 10:52:24 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=nBz/UKMuGMTH4vfj1hOr8/57ucTrEca29bIGB9+3kqngj/KTNCg1lwsUchpV9/cqY2aCb+C7+1sjqq6g6WqzsBPHLtq2jPDxKkSLnONYpAHf4rsgcW5dG0yeHI8oawGnU8C9DR/TOfhJz8nwC6N+i9jRLA/RDXNMm1MXNmhXo54= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QhfEJEW+6pls0JOoNxE64uQvu+4gOtsO6neOqo/y9fpM9sZ0TOQtQCbfJ7Ny5SbFVIz7vSGJCBUaHp1V5+p24T/rFpWHyn04i7SUudITmbDdir71NwPw/8f7CO8x3vIqcXX6ZrOerbTSQPV3/Z2Jb37sgpNUSjVX6JrMC5PJ4IE= Received: by 10.100.108.11 with SMTP id g11mr3815467anc.1183398744536; Mon, 02 Jul 2007 10:52:24 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Mon, 2 Jul 2007 10:52:24 -0700 (PDT) Message-ID: <499c70c0707021052p34e5197cjdfd8b956811b7fd6@mail.gmail.com> Date: Mon, 2 Jul 2007 20:52:24 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: "Jack Stone" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4687B02B.7080106@mac.com> Cc: freebsd-questions@freebsd.org Subject: Re: kern.hz="100" stops high-pitched whine X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 17:52:26 -0000 On 7/2/07, Jack Stone wrote: > >From: Chuck Swiger > >To: cpghost > >CC: questions > >Subject: Re: kern.hz="100" stops high-pitched whine > >Date: Sun, 01 Jul 2007 09:46:19 -0400 > > > >cpghost wrote: > >>Are there any reasons NOT changing kern.hz from the > >>default 1000 back to 100? With my typical mix of > >>desktop apps (EPIA) and networking / server (Soekris), > >>everything seems to be running just as smoothly with > >>100 Hz than with 1000 Hz (testing now for two weeks > >>without problems). Even playing videos with mplayer > >>on the EPIA doesn't look different in any way. > >> > >>Is it okay to stay with 100 Hz with this type of > >>low-speed CPU/boards? Or are there some compelling > >>reasons not to? > > > >Actually, many Unix systems ran with HZ=100 until a few years ago, about > >when Gb ethernet and CPUs became common. A slower machine like the EPIA > >boxes do quite well with HZ=100/200/250 or so...HZ=1000 is better if you > >have a fast box running lots of concurrent processes, and/or are proxying > >or routing network traffic where the difference between 10 ms and 1ms of > >latency adds up and/or effects other systems. > > > >-- > >-Chuck > > A while ago, I noticed someone's kernel config that included: > hertz=2000 > which made me wonder where this setting info comes from? > > I've been using hertz=1000 however, with my much faster boxes, is this > appropriate now? > > Thanks, > Jack I don't know if the info is correct up to now or not, but I use pf firewall, and I run IRC servers, I saw it in NOTES. ##################################################################### # NETWORKING OPTIONS # # DEVICE_POLLING adds support for mixed interrupt-polling handling # of network device drivers, which has significant benefits in terms # of robustness to overloads and responsivity, as well as permitting # accurate scheduling of the CPU time between kernel network processing # and other activities. The drawback is a moderate (up to 1/HZ seconds) # potential increase in response times. # It is strongly recommended to use HZ=1000 or 2000 with DEVICE_POLLING # to achieve smoother behaviour. # Additionally, you can enable/disable polling at runtime with help of # the ifconfig(8) utility, and select the CPU fraction reserved to # userland with the sysctl variable kern.polling.user_frac # (default 50, range 0..100). # # Not all device drivers support this mode of operation at the time of # this writing. See polling(4) for more details. options DEVICE_POLLING -- Maybe it's out of date now for 2000? -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 17:57:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA4A216A47D for ; Mon, 2 Jul 2007 17:57:33 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: from smtp102.rog.mail.re2.yahoo.com (smtp102.rog.mail.re2.yahoo.com [206.190.36.80]) by mx1.freebsd.org (Postfix) with SMTP id 3DBA413C4C4 for ; Mon, 2 Jul 2007 17:57:32 +0000 (UTC) (envelope-from hakmi@rogers.com) Received: (qmail 62409 invoked from network); 2 Jul 2007 17:30:52 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Received:X-YMail-OSG:From:To:Subject:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:Thread-Index:X-MimeOLE; b=RN3ZpRJIMyIUjXbJqdObWpH6URHdBhL+JgZrVj3QmqC3AfagkfzSQldv9GaUQkrurkrEp3r4+FnUXBbLoBl16GbESuYKcspHfIhb2TFMbmZ/qzTGpqw7ocvDIlF+MaEYRl2e6jyT9SqgOnSSU2uK6rxaiyrdUrCbrerNVfQf9m8= ; Received: from unknown (HELO tamouh) (hakmi@rogers.com@74.104.205.212 with login) by smtp102.rog.mail.re2.yahoo.com with SMTP; 2 Jul 2007 17:30:52 -0000 X-YMail-OSG: .q0vG.kVM1lzmloHUtqrvFGHdU5kpqER7gLDHmNejHTeQsenkYdY_ltLAcHHdpsUAw-- From: "Tamouh H." To: Date: Mon, 2 Jul 2007 13:30:56 -0400 Message-ID: <1a3f01c7bcce$bfcb8720$6600a8c0@tamouh> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 11 Thread-Index: Ace8zr9Ltd/pE/EdTfGVqowIY+ltEA== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Subject: unable to boot due to error in loader.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 17:57:33 -0000 Hello, Since people were talking about modifying kern.hz , I went the extreme = and added "kern.hz=3D10" to loader.conf , obviously the system didn't = load properly. It panics during boot process. This is 5.4-Stable, I've tried all other boot modes and the only option = available is "Escape to Loader Prompt". Any tips on a way to recover this machine ?=20 Thanks, Tamouh=20 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 17:59:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CFCA16A46F for ; Mon, 2 Jul 2007 17:59:21 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id BDEA513C4C9 for ; Mon, 2 Jul 2007 17:59:20 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so382600anc for ; Mon, 02 Jul 2007 10:59:20 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CmsKPYXGjfIF4Nebjtv+Sl0NTUgXsGhSsrdihZ8szuxQCw90koVFp0o3xdF0TdE+RjpgQYZpcArf11v87kdOa78aPhAlicmfguILk1yZd8ERd6TfspOOr1bt50aUTo3km7Umo/rJl6z0pef7BO7o95gFsYOPQFMN+k+Iz4SdUUA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=M8ZScqgQsXCx9BNARAii1LNxQSvhPxcTlh/aieBd+ZX/1yPsawtrpZfaNluBN+F++V+1ivcCLYURAVly8plSQhOs7Ov85ANN8PLxeSFhhiWcSO9zmBX7lS9/E9/Vrbrv6J2zTbXvqe+hxClmgs5CdLSL1vY/7zSOMiLwy2RCelU= Received: by 10.100.33.14 with SMTP id g14mr3846459ang.1183399159831; Mon, 02 Jul 2007 10:59:19 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Mon, 2 Jul 2007 10:59:19 -0700 (PDT) Message-ID: <499c70c0707021059y4155603brf802dbb46093caaf@mail.gmail.com> Date: Mon, 2 Jul 2007 20:59:19 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: "ckadi35@yahoo.fr" In-Reply-To: <962492.47650.qm@web26913.mail.ukl.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <962492.47650.qm@web26913.mail.ukl.yahoo.com> Cc: freebsd-questions@freebsd.org Subject: Re: IPsec based on rfc 4303 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 17:59:21 -0000 On 7/2/07, ckadi35@yahoo.fr wrote: > hi, > > i use freeBSD 5.2 for developing software. > i want to upgrade IPsec based on rfc4303. > > how about ports of IPsec implementation based on RFC 4303 > > best regards > Ckadi You better for for FreeBSD 7.0 :) -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 18:09:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 856F116A41F; Mon, 2 Jul 2007 18:09:21 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-2.EUnet.yu (smtpclu-2.eunet.yu [194.247.192.227]) by mx1.freebsd.org (Postfix) with ESMTP id 0EC9B13C484; Mon, 2 Jul 2007 18:09:20 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-22.eunet.yu [213.198.213.22]) by smtpclu-2.EUnet.yu (8.13.6/8.13.6) with ESMTP id l62I9CaE000907; Mon, 2 Jul 2007 20:09:13 +0200 Message-Id: <200707021809.l62I9CaE000907@smtpclu-2.EUnet.yu> Date: Mon, 2 Jul 2007 20:09:35 +0200 From: Nikola Lecic To: Graham Bentley In-Reply-To: <20070630220658.74f7174d@3bsd.cpcnw.co.uk> References: <20070630220658.74f7174d@3bsd.cpcnw.co.uk> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_00,TW_BG,TW_LP,TW_XF,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -2.4 Cc: tevans.uk@googlemail.com, freebsd-questions@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Selecting printer from apps core dumps. Howto debug? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 18:09:21 -0000 (I proposed you a couple of things but generally it's a good idea to ask this on freebsd-gnome@ as well, since at least the Abiword problem is _maybe_ related to libgnomeprintui <-> Xfce.) On Sat, 30 Jun 2007 22:06:58 +0100 Graham Bentley wrote: > > have you compiled print/xfce4-print with "Use cups as > > printing system"? This matters, among other things. You=20 > > can check it with 'make showconfig' and change with=20 > > 'make config'. >=20 > 3bsd# make showconfig > =3D=3D=3D> The following configuration options are available for > xfce4-print-4.4.1_1: LPR=3Doff "Use lpr as printing system" > CUPS=3Don "Use cups as printing system" > LETTER=3Doff "Use letter paper format instead of A4" > =3D=3D=3D> Use 'make config' to modify these settings > 3bsd# Ok... > Its odd because the cups test page works, printing from > mousepad and firefox works, but abiword bombs completely. > In the short space of time I see it on the screen after=20 > clicking print I can see there is no entry for the printer. AFAIK Abiword has known (and very old) problem with Xfce, mainly reflected in printing. As far as I understand it (I use neither Abiword nor CUPS) the cause could be the Abiword's (false) expectations of pure GNOME environment (including printing), which is only partially true in Xfce. You can try this, but I have no idea what can happen: # portupgrade -f -m 'WANT_GNOME=3Dno' abiword Besides that, Claws Mail has by default similar expectations regarding printing (libgnomeprintui). Do you have printing problems in Claws Mail? Can you post here 'make showconfig" of mail/claws-mail? > > I had similar problems until I removed lpr from the base. > > To do this, I added this to /etc/make.conf: > > WITHOUT_LPR=3Dtrue > > CUPS_OVERWRITE_BASE=3Dyes > > NO_LPR=3Dyes > > and then rebuilt and reinstalled world and cups. > > I have tried adding lpd_enable=3D"NO" top rc.conf then realised > cups replaces lpd anyway so that was no help. >=20 > Somewhere along the line I have added >=20 > [system=3D10] > add path 'unlpt*' mode 0660 group cups > add path 'ulpt*' mode 0660 group cups > add path 'lpt*' mode 0660 group cups >=20 > to /etc/devfs.rules and >=20 > devfs_system_ruleset=3D"system" >=20 > to rc.conf >=20 > I wanted to avoid having to buildword just now ... >=20 > and just read this thead ; >=20 > > CUPS installs its own version of lpr, lpq and lpd > > under /usr/local/bin. > > Therefore, be sure to delete lpr , lpq and lpd under=20 > > /usr/bin and then symlink from /usr/local/bin to /usr/bin. >=20 > although lpd looks to be under /usr/sbin on my system? You certainly shouldn't do this kind of random handiwork in your system. Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 18:09:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1423616A400; Mon, 2 Jul 2007 18:09:33 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-1.eunet.yu (smtpclu-1.eunet.yu [194.247.192.226]) by mx1.freebsd.org (Postfix) with ESMTP id 924FF13C45E; Mon, 2 Jul 2007 18:09:32 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-22.eunet.yu [213.198.213.22]) by smtpclu-1.eunet.yu (8.13.6/8.13.6) with ESMTP id l62I9P9k009029; Mon, 2 Jul 2007 20:09:26 +0200 Message-Id: <200707021809.l62I9P9k009029@smtpclu-1.eunet.yu> Date: Mon, 2 Jul 2007 20:09:47 +0200 From: Nikola Lecic To: Graham Bentley In-Reply-To: <20070630220658.74f7174d@3bsd.cpcnw.co.uk> References: <20070630220658.74f7174d@3bsd.cpcnw.co.uk> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_00,TW_BG,TW_LP,TW_XF,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -2.4 Cc: tevans.uk@googlemail.com, freebsd-questions@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Selecting printer from apps core dumps. Howto debug? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 18:09:33 -0000 (I proposed you a couple of things but generally it's a good idea to ask this on freebsd-gnome@ as well, since at least the Abiword problem is _maybe_ related to libgnomeprintui <-> Xfce.) On Sat, 30 Jun 2007 22:06:58 +0100 Graham Bentley wrote: > > have you compiled print/xfce4-print with "Use cups as > > printing system"? This matters, among other things. You=20 > > can check it with 'make showconfig' and change with=20 > > 'make config'. >=20 > 3bsd# make showconfig > =3D=3D=3D> The following configuration options are available for > xfce4-print-4.4.1_1: LPR=3Doff "Use lpr as printing system" > CUPS=3Don "Use cups as printing system" > LETTER=3Doff "Use letter paper format instead of A4" > =3D=3D=3D> Use 'make config' to modify these settings > 3bsd# Ok... > Its odd because the cups test page works, printing from > mousepad and firefox works, but abiword bombs completely. > In the short space of time I see it on the screen after=20 > clicking print I can see there is no entry for the printer. AFAIK Abiword has known (and very old) problem with Xfce, mainly reflected in printing. As far as I understand it (I use neither Abiword nor CUPS) the cause could be the Abiword's (false) expectations of pure GNOME environment (including printing), which is only partially true in Xfce. You can try this, but I have no idea what can happen: # portupgrade -f -m 'WANT_GNOME=3Dno' abiword Besides that, Claws Mail has by default similar expectations regarding printing (libgnomeprintui). Do you have printing problems in Claws Mail? Can you post here 'make showconfig" of mail/claws-mail? > > I had similar problems until I removed lpr from the base. > > To do this, I added this to /etc/make.conf: > > WITHOUT_LPR=3Dtrue > > CUPS_OVERWRITE_BASE=3Dyes > > NO_LPR=3Dyes > > and then rebuilt and reinstalled world and cups. > > I have tried adding lpd_enable=3D"NO" top rc.conf then realised > cups replaces lpd anyway so that was no help. >=20 > Somewhere along the line I have added >=20 > [system=3D10] > add path 'unlpt*' mode 0660 group cups > add path 'ulpt*' mode 0660 group cups > add path 'lpt*' mode 0660 group cups >=20 > to /etc/devfs.rules and >=20 > devfs_system_ruleset=3D"system" >=20 > to rc.conf >=20 > I wanted to avoid having to buildword just now ... >=20 > and just read this thead ; >=20 > > CUPS installs its own version of lpr, lpq and lpd > > under /usr/local/bin. > > Therefore, be sure to delete lpr , lpq and lpd under=20 > > /usr/bin and then symlink from /usr/local/bin to /usr/bin. >=20 > although lpd looks to be under /usr/sbin on my system? You certainly shouldn't do this kind of random handiwork in your system. Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 18:33:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0282716A46B for ; Mon, 2 Jul 2007 18:33:14 +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 ECBE413C4CB for ; Mon, 2 Jul 2007 18:33:12 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 19615 invoked from network); 2 Jul 2007 18:33:11 -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 ; 2 Jul 2007 18:33:11 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 66F2B28440; Mon, 2 Jul 2007 14:33:10 -0400 (EDT) To: "Tamouh H." References: <1a3f01c7bcce$bfcb8720$6600a8c0@tamouh> From: Lowell Gilbert Date: Mon, 02 Jul 2007 14:33:10 -0400 In-Reply-To: <1a3f01c7bcce$bfcb8720$6600a8c0@tamouh> (Tamouh H.'s message of "Mon\, 2 Jul 2007 13\:30\:56 -0400") Message-ID: <443b061wrd.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: unable to boot due to error in loader.conf 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, 02 Jul 2007 18:33:14 -0000 "Tamouh H." writes: > Since people were talking about modifying kern.hz , I went the extreme and added "kern.hz=10" to loader.conf , obviously the system didn't load properly. It panics during boot process. > > This is 5.4-Stable, I've tried all other boot modes and the only option available is "Escape to Loader Prompt". > > Any tips on a way to recover this machine ? Escape to the loader prompt, and set it back. I think the syntax should be "set kern.hz=1000", but check the manual (online, if necessary) if I messed up on the details. Then remove the line from loader.conf once you boot. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 19:17:08 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BA8116A41F for ; Mon, 2 Jul 2007 19:17:08 +0000 (UTC) (envelope-from jeremy@mindsetsoft.com) Received: from mindsetsoft.com (polaris.mindsetsoft.com [208.66.201.77]) by mx1.freebsd.org (Postfix) with ESMTP id 4DE3D13C45A for ; Mon, 2 Jul 2007 19:17:08 +0000 (UTC) (envelope-from jeremy@mindsetsoft.com) Content-class: urn:content-classes:message MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Mon, 2 Jul 2007 12:05:18 -0700 Message-ID: <18CA63479052974CB331D670E265E0480B23EB@polaris.MS.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Acronis TrueImage Enterprise Server Thread-Index: Ace82+4E5MjLBrJOSK6oHTRhipOQLg== From: "Jeremy M. Kelley" To: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Acronis TrueImage Enterprise 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, 02 Jul 2007 19:17:08 -0000 To whom it concerns: =20 I am currently evaluating some backup software for my company, and I am wondering if anyone has successfully installed the Acronis TrueImage Linux Agent on FreeBSD? We have a FreeBSD based web server and 2 FreeBSD based file servers and I'm really hoping to get the agent installed. I've setup linux binary compatibility, but the program never runs. I can send strace's or whatever else is needed. Thank you and I hope you to hear from you soon. =20 Kind Regards, =20 Jeremy M. Kelley Systems Administrator Mindset Software, Inc. Cell: 916.281.6386 Office: 916.446.8000 x205 =20 =20 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 19:34:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0FDA16A46B for ; Mon, 2 Jul 2007 19:34:42 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mail.esiee.fr (mail.esiee.fr [147.215.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id A332813C46A for ; Mon, 2 Jul 2007 19:34:42 +0000 (UTC) (envelope-from f.bonnet@esiee.fr) Received: from mail.esiee.fr (localhost.esiee.fr [127.0.0.1]) by mail.esiee.fr (Postfix) with SMTP id ED88E3658B6 for ; Mon, 2 Jul 2007 21:34:41 +0200 (CEST) Received: from secure.esiee.fr (secure.esiee.fr [147.215.1.19]) by mail.esiee.fr (Postfix) with ESMTP id D67AA3658A9 for ; Mon, 2 Jul 2007 21:34:41 +0200 (CEST) Received: from [192.168.0.10] (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 ESMTP id 64543398CF for ; Mon, 2 Jul 2007 21:22:37 +0200 (CEST) Message-ID: <46895359.4090503@esiee.fr> Date: Mon, 02 Jul 2007 21:34:49 +0200 From: Frank Bonnet User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 19:34:43 -0000 Hello I tried twice starting from a fresh 6.2-R installed machine and followed intructions of the updating file but it failed twice ... Once Xorg has been upgraded I've never been able to start X server again , I use KDE so I start X server with the kdm command. Thanks a lot for any help Frank From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 20:11:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 151BA16A400 for ; Mon, 2 Jul 2007 20:11:57 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.100.219]) by mx1.freebsd.org (Postfix) with ESMTP id DD55113C45E for ; Mon, 2 Jul 2007 20:11:56 +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.13.8/8.13.8) with ESMTP id l62KBu8I039211 for ; Mon, 2 Jul 2007 15:11:56 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200707022011.l62KBu8I039211@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org Date: Mon, 02 Jul 2007 15:11:56 -0500 From: Martin McCormick Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 20:11:57 -0000 Jeffrey Goldberg writes: > I still remember as a newcomer to Unix a long long time ago getting > > "Bad magic number" > > > In retrospect, I suspect that I'd typed "ld" where I'd meant to type "ls". I have been doing things on Unix systems since about 1990 and the thing I run across that makes me ready to split a brick with my bare hands to this very day is the "not found" message one can get in a badly written shell script such as the following: #! /bin/sh a = 5 that's enough to make it happen. Run that, and you get: a: not found Interestingly enough, if you run that same script in a Debian Linux environment, you get: ./testfile: line 2: a: command not found Most of you will probably instantly see what I did wrong in that there shouldn't be any spaces between the variable name, the = sign and the 5 which could be anything else. I just picked a 5 for the heck of it. If you are in a big messy shell script, just seeing a: not found Doesn't tell me much except I know it's not working. The problem could be either that there is a typo or it could be that $a is null. I usually find that I snuck a space in and didn't even think about it at the time. I don't know if error messages from other OS's are off limits, but some of the ones from the most widely-used OS on Earth are treasures. How about running a gigantic piece of commercial software that does God knows what on your computer, and getting an error like: The software has performed an illegal operation. I bet there is a second line that they had to print in text using the same forground and background color so as to keep from getting fired that reads: "Now, try and find it. Ha ha ha ha!" Then, there is the ultimate, the "Check engine." light on the modern car. It would be so nice if it said some indication as to the seriousness of the problem so that one knows whether to get it fixed now and maybe save $5,000 worth of repair costs or let it slide a few days until a better time. I like the quotation I read once that said that Unix is a user-friendly operating system. It is just particular about who it makes friends with. Martin McCormick WB5AGZ Stillwater, OK Systems Engineer OSU Information Technology Department Network Operations Group From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 20:20:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5419216A400 for ; Mon, 2 Jul 2007 20:20:14 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.freebsd.org (Postfix) with ESMTP id 1954813C43E for ; Mon, 2 Jul 2007 20:20:13 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from haiti.nepinc.com (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id l62KKAfV046804; Mon, 2 Jul 2007 16:20:12 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <46895DF9.90708@voidmain.net> Date: Mon, 02 Jul 2007 16:20:09 -0400 From: Tom Grove User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: Frank Bonnet References: <46895359.4090503@esiee.fr> In-Reply-To: <46895359.4090503@esiee.fr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 20:20:14 -0000 Frank Bonnet wrote: > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > > Thanks a lot for any help > > Frank > _______________________________________________ > 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" The list may be able to help you out more if you include a bit more about your machine, your X config and some errors. Also, I was one of the lucky people that had a successful upgrade the first time on an up to date 6.2 release box. I just followed the directions in UPDATING to a T and it was very, very long but fairly smooth. I use XFCE, however, so I can't speak for the K folks. -Tom From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 20:26:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC56716A400 for ; Mon, 2 Jul 2007 20:26:09 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp2.utdallas.edu (smtp2.utdallas.edu [129.110.10.33]) by mx1.freebsd.org (Postfix) with ESMTP id BE77E13C447 for ; Mon, 2 Jul 2007 20:26:09 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from utd59514.utdallas.edu (utd59514.utdallas.edu [129.110.3.28]) by smtp2.utdallas.edu (Postfix) with ESMTP id 51F70649FC for ; Mon, 2 Jul 2007 15:26:09 -0500 (CDT) Date: Mon, 02 Jul 2007 15:26:09 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: <3FE4620534D90F34D5EDD59A@utd59514.utdallas.edu> In-Reply-To: <46895359.4090503@esiee.fr> References: <46895359.4090503@esiee.fr> X-Mailer: Mulberry/4.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========C41152EECE5707837251==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 20:26:09 -0000 --==========C41152EECE5707837251========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On Monday, July 02, 2007 21:34:49 +0200 Frank Bonnet =20 wrote: > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > And the errors you get in the log file are???? I'm running 6.2, successfully upgraded from 6.9 to 7.2, so it can certainly = be done. Without more info, we can't be much help to you, though. --=20 Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========C41152EECE5707837251==========-- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 20:31:00 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C09D16A46D for ; Mon, 2 Jul 2007 20:31:00 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr4.xs4all.nl (smtp-vbr4.xs4all.nl [194.109.24.24]) by mx1.freebsd.org (Postfix) with ESMTP id 911F113C457 for ; Mon, 2 Jul 2007 20:30:59 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr4.xs4all.nl (8.13.8/8.13.8) with ESMTP id l62KUu9w028322; Mon, 2 Jul 2007 22:30:56 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 64DE7B825; Mon, 2 Jul 2007 22:30:56 +0200 (CEST) Date: Mon, 2 Jul 2007 22:30:56 +0200 From: Roland Smith To: Frank Bonnet Message-ID: <20070702203056.GA15820@slackbox.xs4all.nl> Mail-Followup-To: Frank Bonnet , freebsd-questions@freebsd.org References: <46895359.4090503@esiee.fr> <46895DF9.90708@voidmain.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="d6Gm4EdcadzBjdND" Content-Disposition: inline In-Reply-To: <46895DF9.90708@voidmain.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.16 (2007-06-09) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 20:31:00 -0000 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 02, 2007 at 04:20:09PM -0400, Tom Grove wrote: > Frank Bonnet wrote: >> Hello >>=20 >> I tried twice starting from a fresh 6.2-R installed machine >> and followed intructions of the updating file but it failed >> twice ... Once Xorg has been upgraded I've never been able >> to start X server again , I use KDE so I start X server with >> the kdm command. I recently installed 6.2-RELEASE on a laptop. I did _not_ install the old xorg (you could remove it). After updating the ports tree, the x11/xorg port installed without problems. It took a while, though. 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) --d6Gm4EdcadzBjdND Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGiWCAEnfvsMMhpyURAutdAJ0XAfr0bz1NIyhjoMCHpq+nHpY8BQCgqa4I K0KtXaQFnF9NTHktnerF7M4= =SXkQ -----END PGP SIGNATURE----- --d6Gm4EdcadzBjdND-- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 20:42:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8951516A46C for ; Mon, 2 Jul 2007 20:42:16 +0000 (UTC) (envelope-from d.hill@yournetplus.com) Received: from duane.dbq.yournetplus.com (duane.dbq.yournetplus.com [65.124.230.214]) by mx1.freebsd.org (Postfix) with ESMTP id 684D813C45B for ; Mon, 2 Jul 2007 20:42:16 +0000 (UTC) (envelope-from d.hill@yournetplus.com) Received: from [192.168.1.10] (unknown [192.168.1.1]) by duane.dbq.yournetplus.com (Postfix) with ESMTP id 293CA6D42E for ; Mon, 2 Jul 2007 20:41:15 +0000 (UTC) Date: Mon, 2 Jul 2007 20:41:14 +0000 (UTC) From: Duane Hill X-X-Sender: d.hill@duane.dbq.yournetplus.com To: freebsd-questions@freebsd.org In-Reply-To: <46895359.4090503@esiee.fr> Message-ID: <20070702203259.B54663@duane.dbq.yournetplus.com> References: <46895359.4090503@esiee.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 20:42:16 -0000 On Mon, 2 Jul 2007 at 21:34 +0200, f.bonnet@esiee.fr confabulated: > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > > Thanks a lot for any help I, like others, have successfully upgraded from Xorg 6.x to 7.x. I have three computers that were upgraded using the instructions within the UPDATING file. All three are running KDE. However, if you are starting from complete scratch, why not just install a base FreeBSD setup from the CD. Then after you either csup (or cvsup) or portsnap the latest copy of the ports tree, install Xorg. The Xorg on the distribution CD is pre 7.x. Why not start right out on 7.x. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 21:20:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FAD816A473 for ; Mon, 2 Jul 2007 21:20:53 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 39D9713C4C8 for ; Mon, 2 Jul 2007 21:20:53 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 50240 invoked from network); 2 Jul 2007 21:16:10 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 2 Jul 2007 21:16:10 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l62LKpJa031588 for ; Mon, 2 Jul 2007 15:20:51 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l62LKpAa031587 for freebsd-questions@freebsd.org; Mon, 2 Jul 2007 15:20:51 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Mon, 2 Jul 2007 15:20:50 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070702212050.GB31094@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <20070702140041.0ed62904@gumby.homeunix.com.> <20070703005555.3b124871@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070703005555.3b124871@localhost> User-Agent: Mutt/1.4.2.2i Subject: Re: 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: Mon, 02 Jul 2007 21:20:53 -0000 On Tue, Jul 03, 2007 at 12:55:55AM +1000, Norberto Meijome wrote: > On Mon, 2 Jul 2007 14:00:41 +0100 > RW wrote: > > > > > The problem with Flash7 is that it works mainly with youtube and > > similar sites, and with irritating adverts. > > hardly the fault of the port ;-) Also . . . easily fixed in most cases simply by installing the xpi-flashblock port. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] print substr("Just another Perl hacker", 0, -2); From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 21:37:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7C9216A468 for ; Mon, 2 Jul 2007 21:37:03 +0000 (UTC) (envelope-from jvender@owensboro.net) Received: from zoot.cinergycom.net (zoot.cinergycom.net [216.135.3.11]) by mx1.freebsd.org (Postfix) with ESMTP id C084D13C4B8 for ; Mon, 2 Jul 2007 21:37:03 +0000 (UTC) (envelope-from jvender@owensboro.net) Received: from kntpin04-nas-03-s28.cinergycom.net ([216.135.25.28] helo=joe) by zoot.cinergycom.net with smtp (Exim 4.52) id 1I5TLG-0005l6-FD for freebsd-questions@freebsd.org; Mon, 02 Jul 2007 16:21:54 -0500 Message-ID: <000301c7bcef$03549930$1c1987d8@joe> From: "Joe Vender" To: Date: Mon, 2 Jul 2007 16:21:43 -0500 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-CCC-Cleanmail-Virus-Signature: 23223244ab676693d1e09a11a7962d9d Subject: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 21:37:04 -0000 Has a release date been set for FreeBSD 7.0-Release? If not, how about an (educated guess) approximate date, month? Joe From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 21:49:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E77BF16A41F for ; Mon, 2 Jul 2007 21:49:03 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id A751813C44C for ; Mon, 2 Jul 2007 21:49:03 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l62Lmtwb050660 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Mon, 2 Jul 2007 16:48:57 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468972C5.9090902@tundraware.com> Date: Mon, 02 Jul 2007 16:48:53 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Subject: Finally Converting From Bind 8 -> Bind 9 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 21:49:04 -0000 I am (ever so) slowly moving my domain from FBSD 4.x to 6.2. I am now at the point where I need to convert my Bind 8 configuration to Bind 9. In so doing, I like to finally separate my internal (non-routable) hosts so that their names never resolve outside the private network, and expose only the public facing hosts to the world via DNS. I'd also like to (finally) associate names with dhcpd-provided addresses so both forwards & reverses work inside the private network. Could some kind soul please point me to a good HOWTO on this migration and reconfiguration? I am DAGSing as I write this, but so far have not found what I want. TIA, -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 22:01:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78D3316A421 for ; Mon, 2 Jul 2007 22:01:07 +0000 (UTC) (envelope-from uthoffp@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3A3CA13C447 for ; Mon, 2 Jul 2007 22:01:07 +0000 (UTC) (envelope-from uthoffp@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3324868pyb for ; Mon, 02 Jul 2007 15:01:06 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=sWHqw14fruD6D7WMz1mA8hqU2pMAtY9UQbucds8liFUXb/AZRCeOvubcy7uwCZ0KpNF9Kc1CKMDal2l1zuySGrz+PpIssy7zt9swcAIokqj8uG/MklEOCDl8uy7PmqgYseFbIF/rAlxfVRHl/kAHbH4eB5nvppG6BfWkCjVuZXc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=K04hiLEZSSAv/xsh2EAT8Rc3ozdcd5NQJK2mlRQaZrm3HhRZRbKYz3KteaqwH5mLQ7S6UbawHEGGJFmb8ExT8+rfDxQ3E8iu/t8z7pDqQK2vlqJzjZYzE1epav0AYW96qidsjzJTTCW+dNHYrAPuSwASNxlBEcihXQXfLLkmSiY= Received: by 10.64.148.8 with SMTP id v8mr9907275qbd.1183412183416; Mon, 02 Jul 2007 14:36:23 -0700 (PDT) Received: by 10.64.204.8 with HTTP; Mon, 2 Jul 2007 14:36:23 -0700 (PDT) Message-ID: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> Date: Mon, 2 Jul 2007 16:36:23 -0500 From: PU To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Problem with a NIC in FBSD 6.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, 02 Jul 2007 22:01:07 -0000 Hello, I have a bit of a problem I'm hoping someone here can help with. I built a 6.2 FBSD box and wound up with a bad NIC out of 3 and what I thought might have been a bad pci slot. I replaced the NIC with a new one, and moved the card to another slot just to make sure I took care of the problem. However, now when I boot up, my rl0 interface is recognized, but isn't 'initialized'. What I mean by that is that I see entries in dmesg, but an ifconfig does not show that interface. I can't even plumb the thing as the OS says it doesn't exist. What really throws me is that the other two NICs and a video card that were also moved are recognized with no problems at all. Problems just seem to follow the rl0 interface. When looking through dmesg, I see the following: rl0: port 0x9000-0x90ff mem 0xde000000-0xde0000ff irq 5 at device 13.0 on pci0 rl0: reset never completed! rl0: unknown device ID: ffff device_attach: rl0 attach returned 6 I'm about at the point where I'll just re-install since I haven't gotten very far yet, but I'd like to learn something from this. My searches thus far haven't been very helpful as most of the results have been concerning problems with ACPI and disabling it. I'm new to FreeBSD, so even if someone can point me to a good guide on dealing with hardware in FreeBSD, it would be greatly appreciated. Of course if that was in addition to whatever direct suggestions you might have on how to resolve this problem, that would be wonderful too. ;-) Thanks much! Peter From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 22:24:58 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EB9516A469 for ; Mon, 2 Jul 2007 22:24:58 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 2C76A13C4DB for ; Mon, 2 Jul 2007 22:24:57 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l62MOn9v051611 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Mon, 2 Jul 2007 17:24:51 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <46897B2F.1040700@tundraware.com> Date: Mon, 02 Jul 2007 17:24:47 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: PU References: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> In-Reply-To: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Problem with a NIC in FBSD 6.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 22:24:58 -0000 PU wrote: > Hello, > > I have a bit of a problem I'm hoping someone here can help with. I built a > 6.2 FBSD box and wound up with a bad NIC out of 3 and what I thought might > have been a bad pci slot. I replaced the NIC with a new one, and moved the > card to another slot just to make sure I took care of the problem. > However, now when I boot up, my rl0 interface is recognized, but isn't > 'initialized'. What I mean by that is that I see entries in dmesg, but an > ifconfig does not show that interface. I can't even plumb the thing as the > OS says it doesn't exist. What really throws me is that the other two NICs > and a video card that were also moved are recognized with no problems at > all. Problems just seem to follow the rl0 interface. Hmmm .. ISTM that the way to attack this is to take a single NIC and try it in each slot to make sure that card it properly recognized. Repeat for each NIC. You will discover one of several possibilities: a) A given NIC is actually bad in that it fails in one or more slots where the other (good) NICs work in any slot you try. Remedy: Place the NIC on the ground and strike it repeatedly with a large hammer. b) All NICs work in some slots but fail on others. This would hint to one of two possibilities: A bad PCI slot or a motherboard that does strange and perverse things by hardwiring certain interrupts to certain slot positions (yes, I've seen this and it's maddening). Remedy: Run over the motherboard with a large tank. c) Any given NIC will work in any slot, but they cannot all coexist in the same machine. I have seen this sort of problem (not with NICs) and it was the aforementioned PCI interrupt mapping being hardwired and/or shared in unpleasant ways. REMEDY: Again, run over the motherboard. P.S. RealTeks are not terrific NICs. For low end - if you can even still find them, I like the old 3Com 3c905s. For a few bucks more, the Intels seem to be quite nice as well. P.P.S. Make sure the mobo BIOS isn't doing something unnatural about interrupt mapping/sharing and PCI slot configuration. P.P.P.S Roasting goats ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 22:46:00 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D90CC16A46B for ; Mon, 2 Jul 2007 22:46:00 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from conn-smtp.mc.mpls.visi.com (conn.mc.mpls.visi.com [208.42.156.2]) by mx1.freebsd.org (Postfix) with ESMTP id B00CA13C447 for ; Mon, 2 Jul 2007 22:46:00 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from mail.tcbug.org (mail.tcbug.org [208.42.70.163]) by conn-smtp.mc.mpls.visi.com (Postfix) with ESMTP id E467581D5; Mon, 2 Jul 2007 17:19:55 -0500 (CDT) Received: from roadrash.local (unknown [192.168.2.1]) by mail.tcbug.org (Postfix) with ESMTP id 7734C342E62; Mon, 2 Jul 2007 17:21:39 -0500 (CDT) From: Josh Paetzel To: freebsd-questions@freebsd.org, tundra@tundraware.com Date: Mon, 2 Jul 2007 17:22:01 -0500 User-Agent: KMail/1.9.5 References: <468972C5.9090902@tundraware.com> In-Reply-To: <468972C5.9090902@tundraware.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart2069888.4zN0L8LJEI"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200707021722.05724.josh@tcbug.org> Cc: Subject: Re: Finally Converting From Bind 8 -> Bind 9 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 02 Jul 2007 22:46:00 -0000 --nextPart2069888.4zN0L8LJEI Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 02 July 2007 16:48, Tim Daneliuk wrote: > I am (ever so) slowly moving my domain from FBSD 4.x to 6.2. I am now > at the point where I need to convert my Bind 8 configuration to Bind 9. > In so doing, I like to finally separate my internal (non-routable) hosts > so that their names never resolve outside the private network, and > expose only the public facing hosts to the world via DNS. I'd also > like to (finally) associate names with dhcpd-provided addresses > so both forwards & reverses work inside the private network. > > Could some kind soul please point me to a good HOWTO on this migration and > reconfiguration? I am DAGSing as I write this, but so far have not > found what I want. > > TIA, The first part of what you want is easy.=20 In named.conf you'll have something like... acl private-hosts { 192.168.1.0/24; 192.168.2.0/24; }; view "internal" { match-clients { "private-hosts"; }; zone "example.org" { type master; file "master/db.internal.example.org"; }; }; view "external" { match-clients { any; }; zone "example.org" { type master; file "master/db.example.org"; }; }; Now you have two separate zonefiles, one which is consulted when someone fr= om=20 192.168.1.0/24 or 192.168.2.0/24 makes a query and one that is consulted wh= en=20 anyone else makes a query. HTH =2D-=20 Thanks, Josh Paetzel --nextPart2069888.4zN0L8LJEI Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBGiXqNJvkB8SevrssRAkTfAJ9ITkabKpW6XM0PA45hbwfdZc0iGgCfUhgv 18iIJMCOIqAYxtYB3T2eJBs= =iaXx -----END PGP SIGNATURE----- --nextPart2069888.4zN0L8LJEI-- From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:01:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C14E916A41F for ; Mon, 2 Jul 2007 23:01:36 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.185]) by mx1.freebsd.org (Postfix) with ESMTP id 1A36C13C465 for ; Mon, 2 Jul 2007 23:01:35 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1937865mue for ; Mon, 02 Jul 2007 16:01:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=THzrfPyGItEE+EuEQuLOPTVH/SYSwwBdkNnfGfPhGLCrL7Lc1XApvVWevzbBU/0AEHSvBNhM8oK+4JLK5MJwhHK3JVSfcrVdgLJ4weUGQqOFZK8UJKarVMXQqwvGJsVY+MYL/ViWR09MMQixP1UfbRGKpauGd+ByZ+o7Eo9Yhco= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=nygZh184Iql8Vs7/vzUpuU8acvHhUqUsTDfCkjw1y5TbuUJosFIZawYKRgeLvqEh45KOy1y6f/GYoVJ5rwewVMg6SQCwmXp56yBkt1lkciR5YMdiHYx8npjm617dXBx/EFpenuOi6LtDVbmCffZ03YGlDitfSuEKCUbJmCWY2+A= Received: by 10.82.151.14 with SMTP id y14mr13962616bud.1183417294574; Mon, 02 Jul 2007 16:01:34 -0700 (PDT) Received: by 10.82.148.3 with HTTP; Mon, 2 Jul 2007 16:01:34 -0700 (PDT) Message-ID: <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> Date: Mon, 2 Jul 2007 20:01:34 -0300 From: "Anton Galitch" To: freebsd-questions@freebsd.org In-Reply-To: <20070702081119.2a989ebc@turion.freeode.co.uk> MIME-Version: 1.0 References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: 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: Mon, 02 Jul 2007 23:01:36 -0000 On 7/2/07, John Murphy wrote: > > > FireFox or Opera? > > I was able to get Flash7 working well in Firefox using tips from Nikola > Lecic in a thread on this list about a month ago. Mostly this post: > > http://docs.freebsd.org/cgi/mid.cgi?200706020235.l522Zv7p002571 > > Can't seem to get YouTube working in Opera though. Just get the grey > square and some download activity, although the Flash player part of > this works: > > http://www.adobe.com/shockwave/welcome/ > > -- > John. Hey, I tried what those tips and it worked but not for much. after some seconds of running appears those grey square again. Im using flash 9, ill try flash7 now. This is what I get after executing firefox from the console: %firefox *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed ................ *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed ....... *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed I cuted some parts, because it was too long. -- http://feudaltimes.com.ar - Webmaster, designer and programmer From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:07:37 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F91216A400 for ; Mon, 2 Jul 2007 23:07:37 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.freebsd.org (Postfix) with ESMTP id DCB6F13C4B0 for ; Mon, 2 Jul 2007 23:07:36 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so61719nfb for ; Mon, 02 Jul 2007 16:07:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=IMLVo/SUmbnIolKZ0FPV8OZpCBMT+dXcJrTuNaIFGNYv502sDuv6TnzxiM7KXVXbvtJsaKHCnvhBMRaECO5AmxXtV8QaFLqjZAkuHanyjZi+FlZlgsGmZVoNiS6aHsDHErZdsh0hgK6B0nj45zCK4jxQ5Dt51Y89CsDOROXw/SQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=bzzDHBGTnovFac+JpifbfEfJ21e4IVasOPP0IMbaizFFQwj7RjWaTTvXlJzmXLaHIrFfx8trPGkYv1sslrJb+Ih/XDJAZ0YA317girvNDxRyhZFbq6/LDoTJ5BXvcP9urHHDIbWzjclOCUn+gFKmMo/0I6KPZAR66BD9iyA4BS4= Received: by 10.82.189.6 with SMTP id m6mr13935150buf.1183417655279; Mon, 02 Jul 2007 16:07:35 -0700 (PDT) Received: by 10.82.148.3 with HTTP; Mon, 2 Jul 2007 16:07:35 -0700 (PDT) Message-ID: <7c80322b0707021607j64ef1ae4j6b0aacba978f6797@mail.gmail.com> Date: Mon, 2 Jul 2007 20:07:35 -0300 From: "Anton Galitch" To: freebsd-questions@freebsd.org In-Reply-To: <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> MIME-Version: 1.0 References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: 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: Mon, 02 Jul 2007 23:07:37 -0000 and no, with flash7 It doesnt even load the application, just the grey square, thats the log from the console: %firefox *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() The program 'npviewer.bin' received an X Window System error. This probably reflects a bug in the program. The error was 'BadMatch (invalid parameter attributes)'. (Details: serial 103 error_code 8 request_code 149 minor_code 3) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) *** NSPlugin Wrapper *** ERROR: NPP_NewStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_New() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() The program 'npviewer.bin' received an X Window System error. This probably reflects a bug in the program. The error was 'BadMatch (invalid parameter attributes)'. (Details: serial 103 error_code 8 request_code 149 minor_code 3) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) *** NSPlugin Wrapper *** ERROR: NPP_NewStream() invoke: Connection closed *** NSPlugin Wrapper *** ERROR: NPP_NewStream() invoke: Connection closed ^C % From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:09:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7749F16A46B for ; Mon, 2 Jul 2007 23:09:48 +0000 (UTC) (envelope-from rahman.sazzadur@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id 54E5713C4B0 for ; Mon, 2 Jul 2007 23:09:48 +0000 (UTC) (envelope-from rahman.sazzadur@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so2499903waf for ; Mon, 02 Jul 2007 16:09:48 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=RkANyyTPOq7L/li3vdM+zdKDDNn/SE97gBhv9J7B8DcQxusj6hQywOYChINfAimgKPu0GjH8FGnI7lZmDPcm0vMkJAVhIy2Rr1G0wjvwft97SZDgatd15NQeHVmAu6PQf5uI1GhnEGiIczsWvXWWmqVNlgFfsNX6PyC2ySw1WIU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=R8P42SJgZK17bSpz+zxHs5wRDkDwTHlVO/kSoRknM87lE69513texNw4eEh9hD4BHoZoyHcj9rDwq5cK+1J83LiPS4LvGiRMe8qoVU2WniRvONuUMAbATgpHC2yppkDbLOj9R9kBROzQhpi5fGSefDjEYaoJJjeDdJEkO9DyGek= Received: by 10.114.151.13 with SMTP id y13mr5585655wad.1183417788147; Mon, 02 Jul 2007 16:09:48 -0700 (PDT) Received: by 10.114.146.14 with HTTP; Mon, 2 Jul 2007 16:09:48 -0700 (PDT) Message-ID: <82bdb5ec0707021609r666433f9g2f583246df077e89@mail.gmail.com> Date: Mon, 2 Jul 2007 18:09:48 -0500 From: "sazzadur rahman" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: A query regarding SCTP 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: Mon, 02 Jul 2007 23:09:48 -0000 Hi, I was just wondering whether SCTP implementation in FreeBSD supports "dynamic address reconfiguration" (http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-addip-sctp-22.txt) ? I would appriciate any help in this regard. Thanks in advance, Sazzad. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:15:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 294B216A468 for ; Mon, 2 Jul 2007 23:15:18 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-7.EUnet.yu (smtpclu-7.eunet.yu [194.247.192.232]) by mx1.freebsd.org (Postfix) with ESMTP id 90F4C13C46E for ; Mon, 2 Jul 2007 23:15:17 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-213-22.eunet.yu [213.198.213.22]) by smtpclu-7.EUnet.yu (8.13.6/8.13.6) with ESMTP id l62M8ePv027616; Tue, 3 Jul 2007 00:08:41 +0200 Message-Id: <200707022208.l62M8ePv027616@smtpclu-7.EUnet.yu> Date: Tue, 3 Jul 2007 01:15:25 +0200 From: Nikola Lecic To: "Anton Galitch" In-Reply-To: <7c80322b0707021607j64ef1ae4j6b0aacba978f6797@mail.gmail.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> <7c80322b0707021607j64ef1ae4j6b0aacba978f6797@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_05,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -1.1 Cc: freebsd-questions@freebsd.org Subject: Re: 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: Mon, 02 Jul 2007 23:15:18 -0000 On Mon, 2 Jul 2007 20:07:35 -0300 "Anton Galitch" wrote: > and no, with flash7 It doesnt even load the application, just the grey > square, thats the log from the console: > [...] People, I think that you can find answers to a lot of problems mentioned here if you read the threads starting from http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/150737.html and from http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/150773.htm= l=20 Those posts cover flash7 with native browsers, possible problem after updating Xorg and some explanations related to {ns,linux}pluginwrapper. In my experience things remained the same in meantime. Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:16:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1CDD16A400 for ; Mon, 2 Jul 2007 23:16:03 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from farris.bafirst.com (adsl-065-081-102-002.sip.jan.bellsouth.net [65.81.102.2]) by mx1.freebsd.org (Postfix) with ESMTP id 2120E13C458 for ; Mon, 2 Jul 2007 23:15:57 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by farris.bafirst.com with esmtp; Mon, 02 Jul 2007 18:15:55 -0500 id 0006D40C.4689872B.0000D1C5 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Mon, 02 Jul 2007 18:15:55 -0500 id 0004AC37.4689872B.0001333B Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Mon, 02 Jul 2007 18:15:55 -0500 Message-ID: <20070702181555.ddbcj2b7wg0oc44s@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Mon, 02 Jul 2007 18:15:55 -0500 From: eculp@encontacto.net To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> In-Reply-To: <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: 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: Mon, 02 Jul 2007 23:16:03 -0000 Quoting Anton Galitch : > On 7/2/07, John Murphy wrote: >> >> >> FireFox or Opera? >> >> I was able to get Flash7 working well in Firefox using tips from Nikola >> Lecic in a thread on this list about a month ago. Mostly this post: >> >> http://docs.freebsd.org/cgi/mid.cgi?200706020235.l522Zv7p002571 >> >> Can't seem to get YouTube working in Opera though. Just get the grey >> square and some download activity, although the Flash player part of >> this works: >> >> http://www.adobe.com/shockwave/welcome/ >> >> -- >> John. > > > > Hey, I tried what those tips and it worked but not for much. after some > seconds of running appears those grey square again. Im using flash 9, ill > try flash7 now. This is what I get after executing firefox from the consol= e: > > %firefox > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > ................ > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPClass::Invalidate() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NP_Shutdown() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed > *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > ....... > *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed > *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_GetValue() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_WriteReady() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_DestroyStream() invoke: Connection > closed > *** NSPlugin Wrapper *** ERROR: NPP_URLNotify() invoke: Connection closed > *** NSPlugin Wrapper *** ERROR: NPP_Destroy() invoke: Connection closed I've found flash9 to be a lost cause on both Stable and Current but =20 I've found flash7 to be stable on both and with both the linux and =20 freebsd versions of firefox and opera. ed P.S. Need a trick to get folks to recognize it as flash9. I have an =20 idea, possibly incorrect, that most folks who are asking for flash8 or =20 higher will work with flash 7. From owner-freebsd-questions@FreeBSD.ORG Mon Jul 2 23:16:24 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 404C716A421 for ; Mon, 2 Jul 2007 23:16:24 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.180]) by mx1.freebsd.org (Postfix) with ESMTP id 128C313C465 for ; Mon, 2 Jul 2007 23:16:23 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by wa-out-1112.google.com with SMTP id j37so2501456waf for ; Mon, 02 Jul 2007 16:16:23 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=f/GrIVIkOsCghh5Ga5mJY7RTzhE9I6pGHPNrg6sO/vRm5qSe7Kn3ObXpj+i0K2axDlysK2qnZmcc4SZlOMvjkOBLvKeu/KYAJZ+NBVITl/rlOpfq9FqoQPttmQMeGfUpJK1SS1zvHyKQIs7LVsIMDd3NM2yoqguQ5tzWZfiWtC8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=pEj5vyhoBfc/6N4Qmct3m/6poB8d1L9E+ieZz6Rq9k0W+ETsAoq5iS0cGCZSitfqn9C2fbIMdzL51pqt1Po3fE9etwnQUz1VV7/P0gBFQIGUhvihXSGkopGkaBVL3RF7X28/EGJ9oSU2vzoYPyLpMiiFjnlJdTj1DN+gwKiWYBs= Received: by 10.114.112.1 with SMTP id k1mr5617910wac.1183418183774; Mon, 02 Jul 2007 16:16:23 -0700 (PDT) Received: by 10.115.74.20 with HTTP; Mon, 2 Jul 2007 16:16:23 -0700 (PDT) Message-ID: <28283d910707021616j5a6a4a5bs4373301de2c609c0@mail.gmail.com> Date: Mon, 2 Jul 2007 19:16:23 -0400 From: "matt donovan" To: "Joe Vender" In-Reply-To: <000301c7bcef$03549930$1c1987d8@joe> MIME-Version: 1.0 References: <000301c7bcef$03549930$1c1987d8@joe> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 23:16:24 -0000 it's on the freebsd site but the code freeze has begun so some are guessing around October or so On 7/2/07, Joe Vender wrote: > > Has a release date been set for FreeBSD 7.0-Release? If not, how about an > (educated guess) approximate date, month? > > Joe > > _______________________________________________ > 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 Jul 2 23:33:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1408B16A400 for ; Mon, 2 Jul 2007 23:33:40 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id 9977F13C457 for ; Mon, 2 Jul 2007 23:33:39 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from 80-218-187-205.dclient.hispeed.ch ([80.218.187.205] helo=gahrtop.localhost) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1I5VOj-0005KB-Dn for freebsd-questions@freebsd.org; Tue, 03 Jul 2007 01:33:37 +0200 Message-ID: <46898B4D.2070902@gahr.ch> Date: Tue, 03 Jul 2007 01:33:33 +0200 From: Pietro Cerutti User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: User Questions X-Enigmail-Version: 0.95.0 OpenPGP: id=9571F78E; url=http://www.gahr.ch/pgp Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig8C9AA1E7CFBD82B240D26F1B" X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - gahr.ch X-Source: X-Source-Args: X-Source-Dir: Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2007 23:33:40 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8C9AA1E7CFBD82B240D26F1B Content-Type: multipart/mixed; boundary="------------070805030301040305070905" This is a multi-part message in MIME format. --------------070805030301040305070905 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable matt donovan wrote: > it's on the freebsd site but the code freeze has begun so some are gues= sing /\/\ Did you mean "it isn't", right? Because I just can't find any infos about the releng schedule for 7-RELEASE.. > around October or so >=20 > On 7/2/07, Joe Vender wrote: >> >> Has a release date been set for FreeBSD 7.0-Release? If not, how about= an >> (educated guess) approximate date, month? >> >> Joe >> >> _______________________________________________ >> 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" --=20 Pietro Cerutti PGP Public Key: http://gahr.ch/pgp --------------070805030301040305070905 Content-Type: application/pgp-signature; name="signature.asc" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="signature.asc" LS0tLS1CRUdJTiBQR1AgU0lHTkFUVVJFLS0tLS0KVmVyc2lvbjogR251UEcgdjEuNC43IChG cmVlQlNEKQoKaUQ4REJRRkdpWXMxd01KcW1KVng5NDRSQ204akFLRGoxRkgwb2tNemRVY2xn bVgybE0yUGtnODQxZ0NmZCs4TApic0h5VGNaN00wYTl5R3N6RDFjQS9YOD0KPWZCblQKLS0t LS1FTkQgUEdQIFNJR05BVFVSRS0tLS0tCgo= --------------070805030301040305070905-- --------------enig8C9AA1E7CFBD82B240D26F1B Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGiYtRwMJqmJVx944RCvq5AJ9dYSf3aavJUSplRmmwYOycea/HrQCg4k7+ GdF7fAaBGtaBdQtWuXcIoOE= =XoGy -----END PGP SIGNATURE----- --------------enig8C9AA1E7CFBD82B240D26F1B-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 00:09:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AFB316A469 for ; Tue, 3 Jul 2007 00:09:20 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout4.cac.washington.edu (mxout4.cac.washington.edu [140.142.33.19]) by mx1.freebsd.org (Postfix) with ESMTP id 1C47313C45D for ; Tue, 3 Jul 2007 00:09:20 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from hymn01.u.washington.edu (hymn01.u.washington.edu [140.142.8.55]) by mxout4.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.05) with ESMTP id l6309Jrx007091 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 2 Jul 2007 17:09:19 -0700 Received: from localhost (localhost [127.0.0.1]) by hymn01.u.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l6309J8Z001801; Mon, 2 Jul 2007 17:09:19 -0700 X-Auth-Received: from [192.55.52.10] by hymn01.u.washington.edu via HTTP; Mon, 02 Jul 2007 17:09:19 PDT Date: Mon, 2 Jul 2007 17:09:19 -0700 (PDT) From: youshi10@u.washington.edu To: Pietro Cerutti In-Reply-To: <46898B4D.2070902@gahr.ch> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-PMX-Version: 5.3.2.304607, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.7.2.164533 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='SUPERLONG_LINE 0.05, NO_REAL_NAME 0, __CP_URI_IN_BODY 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' Cc: User Questions Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 00:09:20 -0000 >From http://www.emediawire.com/releases/2007/6/emw531216.htm, quoted in the News sections of freebsd.org: "Developers on the FreeBSD project worked with researchers from NTT to integrate their code, under a BSD license, into the CURRENT branch of FreeBSD, which will become the 7.0 release in the near future." Nothing's hinted, but yes 7.0 is in a code freeze for the most part (very minor touch-ups are going into CURRENT from what I can see in the Perforce commits), so here goes to 7 RELEASE in the next couple months :).. -Garrett On Tue, 3 Jul 2007, Pietro Cerutti wrote: > > matt donovan wrote: >> it's on the freebsd site but the code freeze has begun so some are guessing > /\/\ > > Did you mean "it isn't", right? Because I just can't find any infos > about the releng schedule for 7-RELEASE.. > >> around October or so >> >> On 7/2/07, Joe Vender wrote: >>> >>> Has a release date been set for FreeBSD 7.0-Release? If not, how about an >>> (educated guess) approximate date, month? >>> >>> Joe >>> >>> _______________________________________________ >>> 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" > > > -- > Pietro Cerutti > > PGP Public Key: > http://gahr.ch/pgp > From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:11:07 2007 Return-Path: X-Original-To: questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C544E16A468 for ; Tue, 3 Jul 2007 01:11:07 +0000 (UTC) (envelope-from yrao@force10networks.com) Received: from mx.force10networks.com (nat-eqx.force10networks.com [69.25.56.27]) by mx1.freebsd.org (Postfix) with ESMTP id AFD3A13C4AD for ; Tue, 3 Jul 2007 01:11:07 +0000 (UTC) (envelope-from yrao@force10networks.com) Received: from mx.force10networks.com ([10.11.0.215]) by mx.force10networks.com with Microsoft SMTPSVC(6.0.3790.0); Mon, 2 Jul 2007 17:59:20 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Mon, 2 Jul 2007 17:59:18 -0700 Message-ID: <9E2742C54E161041A53F36F9A8DC31BE070236@EXCH-CLUSTER-04.force10networks.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: SMP options and core dump failure Thread-Index: Ace9DWJ17tywCFqaSYORefnKhCvGjQ== From: "Yong Rao" To: X-OriginalArrivalTime: 03 Jul 2007 00:59:20.0325 (UTC) FILETIME=[6366BB50:01C7BD0D] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: SMP options and core dump failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 01:11:07 -0000 Hello, =20 We have a problem with SMP kernel. It could not dump out core when the crash happens. =20 I am able to isolate the problem to kernel configurations which have SMP enabled when used with 2 cpus.=20 With ONE cpu the core dump works ok. =20 I built the kernel with GENERIC, and deliberately crash the kernel (for testing purpose). The core dump works fine. Only added the "options SMP" and crashed the kernel, then prior to any pages being dumped out, it hangs there. =20 Has someone successfully core dumped on a system using SMP kernel with multiple CPUs? =20 I tried on two different boxes (different motherboards, CPUs and hard disks). Both got failed. =20 I tried to enable the DDB, but don't know what to look for when it goes into ddb. Appreciate any pointers. =20 a) The CPU information is=20 =20 CPU: Dual Core AMD Opteron(tm) Processor 280 (2405.47-MHz 686-class CPU) Origin =3D "AuthenticAMD" Id =3D 0x20f12 Stepping =3D 2 =20 Features=3D0x178bfbff Features2=3D0x1 AMD Features=3D0xe2500800 AMD Features2=3D0x3 Cores per package: 2 =20 =20 b) We also tried on another mother board, which has 2 CPUs. The CPU information is below. =20 CPU: Intel(R) Xeon(TM) CPU 2.80GHz (2800.11-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0xf29 Stepping =3D 9 =20 Features=3D0xbfebfbff Features2=3D0x4400> real memory =3D 2147418112 (2047 MB) avail memory =3D 2096300032 (1999 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 6 =20 =20 c) The following are the prints when the dump hung. =20 mem dump: start address =3D 0x4352, len=3D0x30 =20 =20 Fatal trap 12: page fault while in kernel mode cpuid =3D 1; apic id =3D 01 fault virtual address =3D 0x4352 fault code =3D supervisor read, page not present instruction pointer =3D 0x20:0xc9e9fc92 stack pointer =3D 0x28:0xebdbdbdc frame pointer =3D 0x28:0xebdbdbf8 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 74231 (pnicdbg) trap number =3D 12 panic: page fault cpuid =3D 1 Uptime: 1d18h27m42s Dumping 4030 MB (2 chunks) chunk 0: 1MB (154 pages) ... ok chunk 1: 4031MB (1031776 pages) (stopped and hung here) =20 =20 Thanks, =20 Yong Rao Force10 Networks Inc. 350 Holger Way San Jose, CA 95132 408 571 6317 =20 From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:22:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D24CF16A400 for ; Tue, 3 Jul 2007 01:22:44 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp1.utsp.utwente.nl [130.89.2.8]) by mx1.freebsd.org (Postfix) with ESMTP id 58D0C13C45E for ; Tue, 3 Jul 2007 01:22:43 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l631MWLr029970; Tue, 3 Jul 2007 03:22:32 +0200 From: Pieter de Goeje To: "Shawn O'Connor" Date: Tue, 3 Jul 2007 03:22:31 +0200 User-Agent: KMail/1.9.6 References: <4D15FF0C-0531-4455-9631-F60D939F9EB2@falconknight.com> <200706290141.07063.pieter@degoeje.nl> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707030322.32012.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: mdconfig using malloc() X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 01:22:44 -0000 On Friday 29 June 2007, Shawn O'Connor wrote: > On Jun 28, 2007, at 4:41 PM, Pieter de Goeje wrote: > > On Thursday 28 June 2007, Shawn O'Connor wrote: > >> Guys, > >> > >> I'm trying to do the following: > >> > >> mdconfig -a -t malloc -o reserve -s 2g > > > > You really don't want to do this. mdconfig will try to allocate 2G > > of wired > > memory, which will obviously fail, because you really don't have > > that much > > kernel memory available. This might work (with some tweaks) on a 64bit > > platform however. > > I have 8GB of RAM on this machine. Wouldn't allocating 2GB of it to > a RAM disk would be okay? It is an amd64. > > I found this options that I can change in the kernel config file. I > think if I set them, I'll have enough KVM for this command to be > performed. > > > options VM_KMEM_SIZE_MAX=2684354560 > options VM_KMEM_SIZE_SCALE=2 > > That should give me 2.5GB of KVM, from which I should be able to > safely allocate 2GB to a RAM disk, right? It allows FreeBSD to indeed allocate up to 2.5GB of KVM. But... there must ofcourse be enough kvm to begin with. If I'm completely wrong here please someone correct me. Check sysctl vm.kvm_size to see the limit. Changing the amount of kvm is not something that I know how to do. > > >> Which fails saying it can't: > >> > >> mdconfig: ioctl(/dev/mdctl): Cannot allocate memory > >> > >> I saw some old post advocated using -t swap instead, saying that swap > >> probably wouldn't be used until real memory was consumed. But, on my > >> 6.2 machine that immediately raises the swap usage to 2GB and does > >> use disk instead of RAM when I test using it. > > > > That's because you used -o reserve. Leave it out and it'll be fine. > > When using with -o reserve and swap it returns immediately, just like > with -t malloc without the -o reserve (except without the nasty > repercussions of running out of RAM). My problem isn't that it uses > the swap (nothing is using it anyway), but that it is using disk at > all, which is way to slow for what I'm trying to do. > > Thanks for the help! No problem :) > > -Shawn Cheers, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:31:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2EB2C16A41F for ; Tue, 3 Jul 2007 01:31:06 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id D8B2E13C43E for ; Tue, 3 Jul 2007 01:31:05 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 18304 invoked from network); 2 Jul 2007 20:31:06 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 20:31:05 -0500 Date: Tue, 3 Jul 2007 11:31:00 +1000 From: Norberto Meijome To: "Jeremy M. Kelley" Message-ID: <20070703113100.5bfd7a86@localhost> In-Reply-To: <18CA63479052974CB331D670E265E0480B23EB@polaris.MS.local> References: <18CA63479052974CB331D670E265E0480B23EB@polaris.MS.local> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org Subject: Re: Acronis TrueImage Enterprise Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 01:31:06 -0000 On Mon, 2 Jul 2007 12:05:18 -0700 "Jeremy M. Kelley" wrote: > I've setup linux binary compatibility, but the program never > runs. I can send strace's or whatever else is needed. Thank you and I > hope you to hear from you soon. any errors? post the *text* output of ktrace somewhere so we can see what happens. u run ktrace [your program]. a ktrace.out is created. then run kdump -f ktrace.out > somethingsomething.txt and post the .txt somewhere. Basically :) _________________________ {Beto|Norberto|Numard} Meijome Never take Life too seriously, no one gets out alive anyway. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:32:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 76B7F16A469 for ; Tue, 3 Jul 2007 01:32:49 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 2C70513C489 for ; Tue, 3 Jul 2007 01:32:49 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 18420 invoked from network); 2 Jul 2007 20:32:49 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 20:32:48 -0500 Date: Tue, 3 Jul 2007 11:32:43 +1000 From: Norberto Meijome To: "Jeremy M. Kelley" Message-ID: <20070703113243.5f80599b@localhost> In-Reply-To: <18CA63479052974CB331D670E265E0480B23EB@polaris.MS.local> References: <18CA63479052974CB331D670E265E0480B23EB@polaris.MS.local> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@FreeBSD.org Subject: Re: Acronis TrueImage Enterprise Server X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 01:32:49 -0000 On Mon, 2 Jul 2007 12:05:18 -0700 "Jeremy M. Kelley" wrote: > I've setup linux binary compatibility, but the program never > runs. sorry for the double posting. Make sure that - you DO have linux.ko loaded - you may want to try mount linprocfs on /usr/compat/linux/proc , just in case the linux software needs access to linux version of /proc - does ldd [prg] show any missing libraries? _________________________ {Beto|Norberto|Numard} Meijome "Caminante no hay camino, se hace camino al andar" Antonio Machado I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:40:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C8E316A468 for ; Tue, 3 Jul 2007 01:40:52 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 0A08413C44C for ; Tue, 3 Jul 2007 01:40:51 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 18860 invoked from network); 2 Jul 2007 20:40:52 -0500 Received: from unknown (HELO localhost) (210.84.50.231) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 20:40:51 -0500 Date: Tue, 3 Jul 2007 11:40:48 +1000 From: Norberto Meijome To: tundra@tundraware.com Message-ID: <20070703114048.637b0018@localhost> In-Reply-To: <46897B2F.1040700@tundraware.com> References: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> <46897B2F.1040700@tundraware.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, PU Subject: Re: Problem with a NIC in FBSD 6.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, 03 Jul 2007 01:40:52 -0000 On Mon, 02 Jul 2007 17:24:47 -0500 Tim Daneliuk wrote: > PU wrote: > > Hello, > > > > I have a bit of a problem I'm hoping someone here can help with. I built a > > 6.2 FBSD box and wound up with a bad NIC out of 3 and what I thought might > > have been a bad pci slot. I replaced the NIC with a new one, and moved the > > card to another slot just to make sure I took care of the problem. > > However, now when I boot up, my rl0 interface is recognized, but isn't > > 'initialized'. What I mean by that is that I see entries in dmesg, but an > > ifconfig does not show that interface. I can't even plumb the thing as the > > OS says it doesn't exist. What really throws me is that the other two NICs > > and a video card that were also moved are recognized with no problems at > > all. Problems just seem to follow the rl0 interface. > [....] > b) All NICs work in some slots but fail on others. This would hint > to one of two possibilities: A bad PCI slot or a motherboard > that does strange and perverse things by hardwiring certain > interrupts to certain slot positions (yes, I've seen this and > it's maddening). Remedy: Run over the motherboard with a large > tank. Before heading to your local military surplus shop for a second hand tank, you may want to have a play with the PCI IRQ settings in your motherboard : - Change them from auto to one different IRQ to each slot. - DISABLE devices you dont need. Do you need 2 COM ports + LPT + who knows what else? This is usually the problem - you're NIC, in a certain pci slot, conflicts with other devices. In most motherboards, the IRQ assignment is shown just after POST and just before the OS boots (best way to see it is to remove all bootable devices so it's stuck after POST). You *really* want to have individual IRQs for each NIC.\ I've had this problem with some ASUS motherboards, Award bios + 3+ fxp cards. [....] _________________________ {Beto|Norberto|Numard} Meijome Law of Conservation of Perversity: we can't make something simpler without making something else more complex I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 01:58:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD0C516A468 for ; Tue, 3 Jul 2007 01:58:18 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp2.utsp.utwente.nl [130.89.2.9]) by mx1.freebsd.org (Postfix) with ESMTP id 41CC913C458 for ; Tue, 3 Jul 2007 01:58:18 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l631w6Ug032410; Tue, 3 Jul 2007 03:58:07 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org, kramer@centtech.com Date: Tue, 3 Jul 2007 03:58:05 +0200 User-Agent: KMail/1.9.6 References: <46851860.1030401@centtech.com> <1183133636.1511.66.camel@localhost> <468534BF.2060004@centtech.com> In-Reply-To: <468534BF.2060004@centtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707030358.06347.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Tom Evans Subject: Re: 7-Current: turn off debugging (kqread?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 01:58:18 -0000 On Friday 29 June 2007, Kevin Kramer wrote: > yes. that is where I have started, but I cannot get buildkernel to build > with those commented out. the UPDATING file also lists heavy debugging > turned on in userland, which I can't track down to any config files. Add CFLAGS+= -DMALLOC_PRODUCTION to make.conf and rebuild world (or just libc). It boosted performance for my app (with a lot of embedded lua) by 20%. HTH, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 02:44:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB27E16A400 for ; Tue, 3 Jul 2007 02:44:29 +0000 (UTC) (envelope-from uthoffp@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.freebsd.org (Postfix) with ESMTP id 610BC13C447 for ; Tue, 3 Jul 2007 02:44:29 +0000 (UTC) (envelope-from uthoffp@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3421656pyb for ; Mon, 02 Jul 2007 19:44:28 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=RXdC+nzQMjeXnfdo3brOshdPzyOAsqi63zd/s1Wm52yTeJVh1KSIIQFyF/vaB6XQCt1pdYWnGAZZ/xr1db3IKiCYNNzFgvsbwbsJmvPfA921LohW1sqqJhIocdJMUbsBTBmMB4e5yFBOAw8WMhsU+yNWs6dnEpQwv9OiyngJRLA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Y9un3fN+3q2ycWc9a3GBqMeBsczt82OOKyUUTtue4krJlbklewAsHZFEUiqNNuOOjFdwujrkXdT4UL9EzoMsmFN+7PiiLm2jth0Wt24ps4tgKAAtFZvOWgLSjHHOAGI6rTqzxiUY0unGAk1j47LtAimC/ve6UYObX5rkg6rb+/k= Received: by 10.65.224.11 with SMTP id b11mr8095281qbr.1183430668293; Mon, 02 Jul 2007 19:44:28 -0700 (PDT) Received: by 10.64.204.8 with HTTP; Mon, 2 Jul 2007 19:44:28 -0700 (PDT) Message-ID: <7a49f37b0707021944j28146fboaeb31c4b0d349211@mail.gmail.com> Date: Mon, 2 Jul 2007 21:44:28 -0500 From: PU To: freebsd-questions@freebsd.org In-Reply-To: <20070703114048.637b0018@localhost> MIME-Version: 1.0 References: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> <46897B2F.1040700@tundraware.com> <20070703114048.637b0018@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Problem with a NIC in FBSD 6.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, 03 Jul 2007 02:44:29 -0000 Thank you all, for your replies. After messing around and trying a few things (including messing with the BIOS settings by disabling serial and parallel ports as well as manually setting IRQs), I ended up taking out one of the Netgear cards and putting in an old 3com 3c905 that I had sitting around. Once I did that, I was able to install with no problem and all the cards are recognized with no conflicts. And, to answer Iams question: It's for a firewall. :) Thanks much, Peter On 7/2/07, Norberto Meijome wrote: > > On Mon, 02 Jul 2007 17:24:47 -0500 > Tim Daneliuk wrote: > > > PU wrote: > > > Hello, > > > > > > I have a bit of a problem I'm hoping someone here can help with. I > built a > > > 6.2 FBSD box and wound up with a bad NIC out of 3 and what I thought > might > > > have been a bad pci slot. I replaced the NIC with a new one, and moved > the > > > card to another slot just to make sure I took care of the problem. > > > However, now when I boot up, my rl0 interface is recognized, but isn't > > > 'initialized'. What I mean by that is that I see entries in dmesg, but > an > > > ifconfig does not show that interface. I can't even plumb the thing as > the > > > OS says it doesn't exist. What really throws me is that the other two > NICs > > > and a video card that were also moved are recognized with no problems > at > > > all. Problems just seem to follow the rl0 interface. > > > > [....] > > b) All NICs work in some slots but fail on others. This would hint > > to one of two possibilities: A bad PCI slot or a motherboard > > that does strange and perverse things by hardwiring certain > > interrupts to certain slot positions (yes, I've seen this and > > it's maddening). Remedy: Run over the motherboard with a large > > tank. > > Before heading to your local military surplus shop for a second hand tank, > you > may want to have a play with the PCI IRQ settings in your motherboard : > - Change them from auto to one different IRQ to each slot. > > - DISABLE devices you dont need. Do you need 2 COM ports + LPT + who knows > what > else? This is usually the problem - you're NIC, in a certain pci slot, > conflicts with other devices. > > In most motherboards, the IRQ assignment is shown just after POST and just > before the OS boots (best way to see it is to remove all bootable devices > so > it's stuck after POST). You *really* want to have individual IRQs for each > NIC.\ > > I've had this problem with some ASUS motherboards, Award bios + 3+ fxp > cards. > > [....] > _________________________ > {Beto|Norberto|Numard} Meijome > > Law of Conservation of Perversity: > we can't make something simpler without making something else more > complex > > I speak for myself, not my employer. Contents may be hot. Slippery when > wet. > Reading disclaimers makes you go blind. Writing them is worse. You have > been > Warned. > From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 03:53:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 57AED16A400 for ; Tue, 3 Jul 2007 03:53:53 +0000 (UTC) (envelope-from ceo@l-i-e.com) Received: from o2.hostbaby.com (o2.hostbaby.com [67.139.134.202]) by mx1.freebsd.org (Postfix) with SMTP id 3220F13C48C for ; Tue, 3 Jul 2007 03:53:53 +0000 (UTC) (envelope-from ceo@l-i-e.com) Received: (qmail 59695 invoked by uid 98); 3 Jul 2007 03:53:59 -0000 Received: from 127.0.0.1 by o2.hostbaby.com (envelope-from , uid 1013) with qmail-scanner-2.01 (clamdscan: 0.88.7/3574. Clear:RC:1(127.0.0.1):. Processed in 0.0780380000000001 secs); 03 Jul 2007 03:53:59 -0000 Received: from localhost (HELO l-i-e.com) (127.0.0.1) by localhost with SMTP; 3 Jul 2007 03:53:58 -0000 Received: from 24.1.37.132 (SquirrelMail authenticated user ceo@l-i-e.com) by www.l-i-e.com with HTTP; Mon, 2 Jul 2007 22:53:58 -0500 (CDT) Message-ID: <3501.24.1.37.132.1183434838.squirrel@www.l-i-e.com> In-Reply-To: <20070613212824.GA1221@zednaught.net> References: <34588.216.230.84.67.1181749866.squirrel@www.l-i-e.com> <20070613212824.GA1221@zednaught.net> Date: Mon, 2 Jul 2007 22:53:58 -0500 (CDT) From: "Richard Lynch" To: "FreeBSD" User-Agent: Hostbaby Webmail MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: periodic.conf quieter X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ceo@l-i-e.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 03:53:53 -0000 > On Wed, Jun 13, 2007 at 10:51:06AM -0500, Richard Lynch wrote: >> Thanks to the fine folks here, I've gotten periodic.conf to only >> output messages I need to know, *except* for this one: >> >> Security check: >> (output mailed separately) >> >> I've looked through /et/defaults/periodic.conf, Google a fair >> amount, >> and am still coming up empty with a setting to suppress that one... >> >> I'm probably just being stupid (again) but what am I missing? On Wed, June 13, 2007 11:38 am, Brian A. Seklecki wrote: > > # 450.status-security > daily_status_security_enable="YES" # Security > check > > ...probably no. > On Wed, June 13, 2007 4:28 pm, Kelvin Woods wrote: > You could always re-direct the output to a file... > > daily_status_security_output="/var/log/security.log" [coming back after a suitable wait for a response, I hope...] My goal is not to stop paying attention to security issues, nor to log them into a file I'll forget to ever check... :-) My goal is to get FreeBSD to shut up unless I need to know something. But do email me when I need to know something. Right now, it's like a little kid telling me every time he went to pee or something... :-v I'm trying the "inline" setting to yes for the security, so at least I'll only get one pointless email per day instead of two, but I'd really appreciate any insight from anybody who shares similar goals. TIA -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some indie artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 03:57:02 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B094F16A468 for ; Tue, 3 Jul 2007 03:57:02 +0000 (UTC) (envelope-from ceo@l-i-e.com) Received: from o2.hostbaby.com (o2.hostbaby.com [67.139.134.202]) by mx1.freebsd.org (Postfix) with SMTP id 7436713C484 for ; Tue, 3 Jul 2007 03:57:02 +0000 (UTC) (envelope-from ceo@l-i-e.com) Received: (qmail 62292 invoked by uid 98); 3 Jul 2007 03:57:08 -0000 Received: from 127.0.0.1 by o2.hostbaby.com (envelope-from , uid 1013) with qmail-scanner-2.01 (clamdscan: 0.88.7/3574. Clear:RC:1(127.0.0.1):. Processed in 0.097937 secs); 03 Jul 2007 03:57:08 -0000 Received: from localhost (HELO l-i-e.com) (127.0.0.1) by localhost with SMTP; 3 Jul 2007 03:57:08 -0000 Received: from 24.1.37.132 (SquirrelMail authenticated user ceo@l-i-e.com) by www.l-i-e.com with HTTP; Mon, 2 Jul 2007 22:57:08 -0500 (CDT) Message-ID: <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> In-Reply-To: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> Date: Mon, 2 Jul 2007 22:57:08 -0500 (CDT) From: "Richard Lynch" To: freebsd-questions@freebsd.org User-Agent: Hostbaby Webmail MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ceo@l-i-e.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 03:57:02 -0000 On Sun, July 1, 2007 2:25 pm, kalin mintchev wrote: > and which port do i exactly install to be able to whach flash video? > i did the /usr/ports/www/flashplugin-mozilla - didn't work. the other > one > is marked as broken... > now that cnn moved to that i can't watch it anymore and i have never > been > able to see any of the videos on youtube.... what do i need? "Need" is relative, but personally, I stopped installing Flash even operating systems where it actually sort of works, albeit sucking down CPU and RAM like there's no tomorrow, and crashing on a semi-regular basis... I found my surfing experience vastly improved without Flash. Formerly dog-slow sites are much faster. And there isn't any content I've felt deprived to not get. Obviously, folks who spend their free time (or work-time :-)) watching youtube would feel differently, but... -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some indie artist. http://cdbaby.com/browse/from/lynch Yeah, I get a buck. So? From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 04:13:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 425A416A400 for ; Tue, 3 Jul 2007 04:13:10 +0000 (UTC) (envelope-from parv@pair.com) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.freebsd.org (Postfix) with ESMTP id F14AB13C465 for ; Tue, 3 Jul 2007 04:13:09 +0000 (UTC) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([24.126.17.68]) by mta9.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20070703041309.KMRJ6326.mta9.adelphia.net@default.chvlva.adelphia.net>; Tue, 3 Jul 2007 00:13:09 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 1D8DDB5E7; Tue, 3 Jul 2007 00:13:57 -0400 (EDT) Date: Tue, 3 Jul 2007 00:13:57 -0400 From: Parv To: Frank Bonnet Message-ID: <20070703041357.GB1979@holestein.holy.cow> Mail-Followup-To: Frank Bonnet , freebsd-questions@freebsd.org References: <46895359.4090503@esiee.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46895359.4090503@esiee.fr> Cc: freebsd-questions@freebsd.org Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: f-q List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 04:13:10 -0000 in message <46895359.4090503@esiee.fr>, wrote Frank Bonnet thusly... > > I tried twice starting from a fresh 6.2-R installed machine and > followed intructions of the updating file but it failed twice ... > Once Xorg has been upgraded I've never been able to start X > server again , I use KDE so I start X server with the kdm > command. I do not use kde. Anyway, what else to tell you as I too had no problems whilst not following the official directions. I de installed X 6.9.x & all the dependent software; installed X 7.x; rebuild+reinstalled the needed software. Somewhere in there set /usr/X11R6 symbolic link to $LOCALBASE, and set $X11BASE same as $LOCALBASE in /etc/make.conf. - Parv -- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 04:19:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8549516A468 for ; Tue, 3 Jul 2007 04:19:52 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 386DA13C4B9 for ; Tue, 3 Jul 2007 04:19:51 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 27167 invoked from network); 2 Jul 2007 23:19:52 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 23:19:51 -0500 Date: Tue, 3 Jul 2007 14:19:48 +1000 From: Norberto Meijome To: PU Message-ID: <20070703141948.4e013962@localhost> In-Reply-To: <7a49f37b0707021944j28146fboaeb31c4b0d349211@mail.gmail.com> References: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> <46897B2F.1040700@tundraware.com> <20070703114048.637b0018@localhost> <7a49f37b0707021944j28146fboaeb31c4b0d349211@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Problem with a NIC in FBSD 6.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, 03 Jul 2007 04:19:52 -0000 On Mon, 2 Jul 2007 21:44:28 -0500 PU wrote: > I ended up taking out one > of the Netgear cards and putting in an old 3com 3c905 that I had sitting > around. good to hear it works. FWIW, i've had weird issues with netgear NICs too (not only on FBSD) - sticking to intel / 3com / Bge from now on _________________________ {Beto|Norberto|Numard} Meijome "Some cause happiness wherever they go; others, whenever they go." Oscar Wilde I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 04:22:24 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DAB916A468 for ; Tue, 3 Jul 2007 04:22:24 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id D730F13C48C for ; Tue, 3 Jul 2007 04:22:23 +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; 03 Jul 2007 00:22:23 -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.8.3-GA) with ESMTP id NMZ38569; Tue, 3 Jul 2007 00:22:23 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 03 Jul 2007 00:22:18 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18057.52988.372199.686546@jerusalem.litteratus.org> Date: Tue, 3 Jul 2007 00:22:20 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> 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) Subject: Re: 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: Tue, 03 Jul 2007 04:22:24 -0000 Richard Lynch writes: > I found my surfing experience vastly improved without Flash. > > Formerly dog-slow sites are much faster. > > And there isn't any content I've felt deprived to not get. There are an increasing number of sites - including way too many companies who can afford to hire people who ought to know better - where the entry page is 100% Flash. Not even a button for [Skip Flash]. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 04:36:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D33616A468 for ; Tue, 3 Jul 2007 04:36:14 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 1D5F213C480 for ; Tue, 3 Jul 2007 04:36:13 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 27997 invoked from network); 2 Jul 2007 23:36:14 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 2 Jul 2007 23:36:13 -0500 Date: Tue, 3 Jul 2007 14:36:10 +1000 From: Norberto Meijome To: eculp@encontacto.net Message-ID: <20070703143610.44f4e539@localhost> In-Reply-To: <20070702181555.ddbcj2b7wg0oc44s@intranet.encontacto.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> <20070702181555.ddbcj2b7wg0oc44s@intranet.encontacto.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Re: 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: Tue, 03 Jul 2007 04:36:14 -0000 On Mon, 02 Jul 2007 18:15:55 -0500 eculp@encontacto.net wrote: > P.S. Need a trick to get folks to recognize it as flash9. I have an > idea, possibly incorrect, that most folks who are asking for flash8 or > higher will work with flash 7. I agree with you here, and I will test any possible hack :) _________________________ {Beto|Norberto|Numard} Meijome There are no stupid questions, but there are a LOT of inquisitive idiots. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 05:32:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D945316A400 for ; Tue, 3 Jul 2007 05:32:40 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 743D213C46C for ; Tue, 3 Jul 2007 05:32:40 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l635WV33060703 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Tue, 3 Jul 2007 00:32:33 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <4689DF6D.3090503@tundraware.com> Date: Tue, 03 Jul 2007 00:32:29 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Norberto Meijome , freebsd-questions@freebsd.org References: <7a49f37b0707021436p4e52e2e8mc165307ba610b5c7@mail.gmail.com> <46897B2F.1040700@tundraware.com> <20070703114048.637b0018@localhost> In-Reply-To: <20070703114048.637b0018@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: Subject: Re: Problem with a NIC in FBSD 6.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 05:32:40 -0000 Norberto Meijome wrote: > On Mon, 02 Jul 2007 17:24:47 -0500 > Tim Daneliuk wrote: > >> PU wrote: >>> Hello, >>> >>> I have a bit of a problem I'm hoping someone here can help with. I built a >>> 6.2 FBSD box and wound up with a bad NIC out of 3 and what I thought might >>> have been a bad pci slot. I replaced the NIC with a new one, and moved the >>> card to another slot just to make sure I took care of the problem. >>> However, now when I boot up, my rl0 interface is recognized, but isn't >>> 'initialized'. What I mean by that is that I see entries in dmesg, but an >>> ifconfig does not show that interface. I can't even plumb the thing as the >>> OS says it doesn't exist. What really throws me is that the other two NICs >>> and a video card that were also moved are recognized with no problems at >>> all. Problems just seem to follow the rl0 interface. > > [....] >> b) All NICs work in some slots but fail on others. This would hint >> to one of two possibilities: A bad PCI slot or a motherboard >> that does strange and perverse things by hardwiring certain >> interrupts to certain slot positions (yes, I've seen this and >> it's maddening). Remedy: Run over the motherboard with a large >> tank. > > Before heading to your local military surplus shop for a second hand tank, Personally, I keep a tank on hand at all times to "correct" misbehaving hardware. It's also useful for keeping the "Oh, you work on computers, could you fix my Windows laptop..." crowd away, particularly when the 50mm canons are aimed at their cars. But that's just me ... -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 07:15:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78E3116A400 for ; Tue, 3 Jul 2007 07:15:27 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id 39B5613C45E for ; Tue, 3 Jul 2007 07:15:27 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3514240pyb for ; Tue, 03 Jul 2007 00:15:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Uk/Tzq+ZvAVqrqx3SmRHmLXRt4RMkBEjj38twnjmX9Da5x1LNw7eXMueHCr7hOb5xTmi5nUPc3kmaYeCiTCkwLi75As4YdFq4k4oaMe5rPZbxhanVnDbcduO4X8k5Hw8yZXXlPcl8ATLcxnEwuMUEhDpU6R6w4tZB6l//mrmK7Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=BNmzLYNW+G/coTRIlt+KJ4NkDB54r4F+MPCZ2uwslrtjSgt7iIcfqO3LQ/cE44Ee/8OeudyH9Leqn7rguBnwlxn0yrNzlDsh59h+LmEPcumrLC6ZAq5tzTa+Q0F947oS9Pn0shJLsSNXCJrw0BQLmFplJRrnMRHSKcLbkgFXijE= Received: by 10.64.10.2 with SMTP id 2mr6192458qbj.1183446926339; Tue, 03 Jul 2007 00:15:26 -0700 (PDT) Received: by 10.65.239.1 with HTTP; Tue, 3 Jul 2007 00:15:26 -0700 (PDT) Message-ID: <37f72b1f0707030015l79325286jb42ecae32e17de91@mail.gmail.com> Date: Tue, 3 Jul 2007 03:15:26 -0400 From: "Jim Capozzoli" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: ndis(4) driven wifi bridge on 6.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, 03 Jul 2007 07:15:27 -0000 It's possible to build wireless bridges (on freebsd 6.2) using ndis(4) driven wireless devices, right? A quick search of "ndis freebsd wireless bridge" on google didn't seem to turn up anything, and the man page doesn't seem to say anything about whether it can or can't. I got some of those Linksys WMP11's, I thought It'd be cool to throw one in my shell server and make a wireless -> wired bridge. But I also don't want to rip the machine apart, plug this junk into it, just to find out it won't work. ;) Thanks. -- Jim Capozzoli D6499626857801B6065013E3645A6B75 From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 08:13:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A07BF16A468 for ; Tue, 3 Jul 2007 08:13:23 +0000 (UTC) (envelope-from freebsd@superhero.nl) Received: from superman.superhero.nl (superhero.nl [82.95.198.17]) by mx1.freebsd.org (Postfix) with ESMTP id EBDF013C43E for ; Tue, 3 Jul 2007 08:13:22 +0000 (UTC) (envelope-from freebsd@superhero.nl) Received: (qmail 75967 invoked by uid 80); 3 Jul 2007 08:13:25 -0000 Received: from robin.ad.superhero.nl ([10.202.77.103]) (SquirrelMail authenticated user gelsemap) by webmail.superhero.nl with HTTP; Tue, 3 Jul 2007 10:13:25 +0200 (CEST) Message-ID: <4355.10.202.77.103.1183450405.squirrel@webmail.superhero.nl> In-Reply-To: <46898B4D.2070902@gahr.ch> References: <46898B4D.2070902@gahr.ch> Date: Tue, 3 Jul 2007 10:13:25 +0200 (CEST) From: "Gelsema, P \(Patrick\) - FreeBSD" To: "Pietro Cerutti" User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: User Questions Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 08:13:23 -0000 On Tue, July 3, 2007 01:33, Pietro Cerutti wrote: > > matt donovan wrote: >> it's on the freebsd site but the code freeze has begun so some are >> guessing > /\/\ > > Did you mean "it isn't", right? Because I just can't find any infos > about the releng schedule for 7-RELEASE.. http://www.freebsd.org/releng Rgds, Patrick > >> around October or so >> >> On 7/2/07, Joe Vender wrote: >>> >>> Has a release date been set for FreeBSD 7.0-Release? If not, how about >>> an >>> (educated guess) approximate date, month? >>> >>> Joe >>> >>> _______________________________________________ >>> 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" > > > -- > Pietro Cerutti > > PGP Public Key: > http://gahr.ch/pgp > From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 08:23:35 2007 Return-Path: X-Original-To: questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0F9316A41F for ; Tue, 3 Jul 2007 08:23:35 +0000 (UTC) (envelope-from support@spaindreamproperty.com) Received: from smtpint.worldispnetwork.com (smtpint.worldispnetwork.com [216.218.232.134]) by mx1.freebsd.org (Postfix) with ESMTP id 90FFC13C44C for ; Tue, 3 Jul 2007 08:23:35 +0000 (UTC) (envelope-from support@spaindreamproperty.com) Received: from waltz.worldispnetwork.com (unknown [216.219.95.52]) by smtpint.worldispnetwork.com (Postfix) with SMTP id D00B3652362 for ; Tue, 3 Jul 2007 04:07:14 -0400 (EDT) Received: by waltz.worldispnetwork.com (sSMTP from uid: 398, site: /hsphere/local/home/kmonnery/spaindreamproperty.com/administrator ); Tue, 3 Jul 2007 01:07:15 -0700 Date: Tue, 3 Jul 2007 01:07:15 -0700 To: questions@FreeBSD.org X-PHP-Script: spaindreamproperty.com/administrator/linkmail.php for 213.149.163.18 From: Spain Dream Property Message-Id: <20070703080714.D00B3652362@smtpint.worldispnetwork.com> MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Your Website X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 08:23:35 -0000 Hi, This is Christian from [1]http://www.spaindreamproperty.com Today, I visited your web site and I like it. I am interested in your site because it looks like it's relevant to a site for which I am seeking links in our business directory. I have already added your web site link to our link exchange page at: [2]http://www.spaindreamproperty.com/directory/showcat.php?cat=1362 I would be very grateful if you could link back to us. Please use this information to link back to us: URL: http://www.spaindreamproperty.com Title: Buy Property in Almeria Description: Spanish Property management specialists. Buy your dream house, villa or apartment in Almeria from us, get purchasing advice and information online. or use the following html code Buy Property in Almeria - Buy your dream house, villa or apartment from us, get purchasing advice and information online. Best Regards C Groberty Email: support@spaindreamproperty.com PS. I have sent you this mail as a one-off e-mail. If you would like me to remove the link promoting your site, please let me know and I will do so. References 1. http://www.spaindreamproperty.com/ 2. http://www.spaindreamproperty.com/directory/showcat.php?cat=1362 From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 08:49:21 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 739C316A41F for ; Tue, 3 Jul 2007 08:49:21 +0000 (UTC) (envelope-from freebsd@superhero.nl) Received: from superman.superhero.nl (superhero.nl [82.95.198.17]) by mx1.freebsd.org (Postfix) with ESMTP id DC5A813C465 for ; Tue, 3 Jul 2007 08:49:20 +0000 (UTC) (envelope-from freebsd@superhero.nl) Received: (qmail 76379 invoked by uid 80); 3 Jul 2007 08:22:43 -0000 Received: from robin.ad.superhero.nl ([10.202.77.103]) (SquirrelMail authenticated user gelsemap) by webmail.superhero.nl with HTTP; Tue, 3 Jul 2007 10:22:43 +0200 (CEST) Message-ID: <4407.10.202.77.103.1183450963.squirrel@webmail.superhero.nl> In-Reply-To: <9E2742C54E161041A53F36F9A8DC31BE070236@EXCH-CLUSTER-04.force10network s.com> References: <9E2742C54E161041A53F36F9A8DC31BE070236@EXCH-CLUSTER-04.force10networks.com> Date: Tue, 3 Jul 2007 10:22:43 +0200 (CEST) From: "Gelsema, P \(Patrick\) - FreeBSD" To: "Yong Rao" User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: questions@freebsd.org Subject: Re: SMP options and core dump failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 08:49:21 -0000 On Tue, July 3, 2007 02:59, Yong Rao wrote: > Hello, > > > > We have a problem with SMP kernel. It could not dump out core when the > crash happens. Which version of FreeBSD? -Current? better ask in freebsd-current@freebsd.org or file a PR. http://www.freebsd.org/send-pr.html Rgds, Patrick > > > > I am able to isolate the problem to kernel configurations which have SMP > enabled when used with 2 cpus. > > With ONE cpu the core dump works ok. > > > > I built the kernel with GENERIC, and deliberately crash the kernel (for > testing purpose). The core dump works fine. > > Only added the "options SMP" and crashed the kernel, then prior to any > pages being dumped out, it hangs there. > > > > Has someone successfully core dumped on a system using SMP kernel with > multiple CPUs? > > > > I tried on two different boxes (different motherboards, CPUs and hard > disks). Both got failed. > > > > I tried to enable the DDB, but don't know what to look for when it goes > into ddb. Appreciate any pointers. > > > > a) The CPU information is > > > > CPU: Dual Core AMD Opteron(tm) Processor 280 (2405.47-MHz 686-class CPU) > > Origin = "AuthenticAMD" Id = 0x20f12 Stepping = 2 > > > Features=0x178bfbff ,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,S > > SE,SSE2,HTT> > > Features2=0x1 > > AMD Features=0xe2500800 > > AMD Features2=0x3 > > Cores per package: 2 > > > > > > b) We also tried on another mother board, which has 2 CPUs. The CPU > information is below. > > > > CPU: Intel(R) Xeon(TM) CPU 2.80GHz (2800.11-MHz 686-class CPU) > > Origin = "GenuineIntel" Id = 0xf29 Stepping = 9 > > > Features=0xbfebfbff ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > > Features2=0x4400> > > real memory = 2147418112 (2047 MB) > > avail memory = 2096300032 (1999 MB) > > ACPI APIC Table: > > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC > ID: 0 > > cpu1 (AP): APIC ID: 6 > > > > > > c) The following are the prints when the dump hung. > > > > mem dump: start address = 0x4352, len=0x30 > > > > > > > > > Fatal trap 12: page fault while in kernel mode > > > cpuid = 1; apic id = 01 > > > fault virtual address = 0x4352 > > > fault code = supervisor read, page not present > > > instruction pointer = 0x20:0xc9e9fc92 > > > stack pointer = 0x28:0xebdbdbdc > > > frame pointer = 0x28:0xebdbdbf8 > > > code segment = base 0x0, limit 0xfffff, type 0x1b > > > = DPL 0, pres 1, def32 1, gran 1 > > > processor eflags = interrupt enabled, resume, IOPL = 0 > > > current process = 74231 (pnicdbg) > > > trap number = 12 > > > panic: page fault > > > cpuid = 1 > > > Uptime: 1d18h27m42s > > > Dumping 4030 MB (2 chunks) > > > chunk 0: 1MB (154 pages) ... ok > > > chunk 1: 4031MB (1031776 pages) (stopped and hung here) > > > > > > Thanks, > > > > Yong Rao > > Force10 Networks Inc. > > 350 Holger Way > > San Jose, CA 95132 > > 408 571 6317 > > > > _______________________________________________ > 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 Jul 3 08:59:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C671F16A41F for ; Tue, 3 Jul 2007 08:59:44 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 8BA0813C4C7 for ; Tue, 3 Jul 2007 08:59:44 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l638xcxU024706; Tue, 3 Jul 2007 01:59:41 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Martin McCormick" , Date: Tue, 3 Jul 2007 02:01:02 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 In-Reply-To: <200707022011.l62KBu8I039211@dc.cis.okstate.edu> Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Tue, 03 Jul 2007 01:59:42 -0700 (PDT) Cc: Subject: RE: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 08:59:44 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Martin > McCormick > > Then, there is the ultimate, the "Check engine." light on the > modern car. Check engine - CEL > It would be so nice if it said some indication as to > the seriousness of the problem so that one knows whether to get > it fixed now and maybe save $5,000 worth of repair costs or let > it slide a few days until a better time. > Most people take the tack that if the CEL comes on and the engine is still running and the car still goes, that they can let it slide. Ted From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 09:03:31 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4678616A421 for ; Tue, 3 Jul 2007 09:03:31 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id D0AB913C4B9 for ; Tue, 3 Jul 2007 09:03:30 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from 80-218-187-205.dclient.hispeed.ch ([80.218.187.205] helo=gahrtop.localhost) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1I5eID-0001fT-N1; Tue, 03 Jul 2007 11:03:29 +0200 Message-ID: <468A10DC.9020307@gahr.ch> Date: Tue, 03 Jul 2007 11:03:24 +0200 From: Pietro Cerutti User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: "Gelsema, P \(Patrick\) - FreeBSD" References: <46898B4D.2070902@gahr.ch> <4355.10.202.77.103.1183450405.squirrel@webmail.superhero.nl> In-Reply-To: <4355.10.202.77.103.1183450405.squirrel@webmail.superhero.nl> X-Enigmail-Version: 0.95.0 OpenPGP: id=9571F78E; url=http://www.gahr.ch/pgp Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig63FE35EEFEFA387858B3B8DB" X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - gahr.ch X-Source: X-Source-Args: X-Source-Dir: Cc: User Questions Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 09:03:31 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig63FE35EEFEFA387858B3B8DB Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Gelsema, P (Patrick) - FreeBSD wrote: > On Tue, July 3, 2007 01:33, Pietro Cerutti wrote: >> matt donovan wrote: >>> it's on the freebsd site but the code freeze has begun so some are >>> guessing >> /\/\ >> >> Did you mean "it isn't", right? Because I just can't find any infos >> about the releng schedule for 7-RELEASE.. >=20 > http://www.freebsd.org/releng Can you see any release date there? It's just me, or there's only stated that the release process began in june? >=20 > Rgds, >=20 > Patrick >=20 >>> around October or so >>> >>> On 7/2/07, Joe Vender wrote: >>>> Has a release date been set for FreeBSD 7.0-Release? If not, how abo= ut >>>> an >>>> (educated guess) approximate date, month? >>>> >>>> Joe >>>> >>>> _______________________________________________ >>>> 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" >> >> -- >> Pietro Cerutti >> >> PGP Public Key: >> http://gahr.ch/pgp >> >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd= =2Eorg" --=20 Pietro Cerutti PGP Public Key: http://gahr.ch/pgp --------------enig63FE35EEFEFA387858B3B8DB Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGihDgwMJqmJVx944RCnPcAJ4lYeavazbECl+12XN6tsJFOiJSngCgv/YY OTbPuwBZ9fS0ssm124+i5hs= =K9qT -----END PGP SIGNATURE----- --------------enig63FE35EEFEFA387858B3B8DB-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 09:16:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4738616A41F for ; Tue, 3 Jul 2007 09:16:11 +0000 (UTC) (envelope-from jvender@owensboro.net) Received: from zoot.cinergycom.net (zoot.cinergycom.net [216.135.3.11]) by mx1.freebsd.org (Postfix) with ESMTP id 2437513C4AD for ; Tue, 3 Jul 2007 09:16:10 +0000 (UTC) (envelope-from jvender@owensboro.net) Received: from kntpin04-nas-03-s16.cinergycom.net ([216.135.25.16]) by zoot.cinergycom.net with esmtp (Exim 4.52) id 1I5eUS-0006d3-Or; Tue, 03 Jul 2007 04:16:10 -0500 From: Joe Vender To: "matt donovan" Date: Tue, 3 Jul 2007 04:15:49 -0500 User-Agent: KMail/1.9.4 References: <000301c7bcef$03549930$1c1987d8@joe> <28283d910707021616j5a6a4a5bs4373301de2c609c0@mail.gmail.com> In-Reply-To: <28283d910707021616j5a6a4a5bs4373301de2c609c0@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707030415.49625.jvender@owensboro.net> X-CCC-Cleanmail-Virus-Signature: d761c3778a34497d05f8666b4c9161bf Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 09:16:11 -0000 On Monday 02 July 2007 18:16, matt donovan wrote: > it's on the freebsd site but the code freeze has begun so some are guessing > around October or so > > On 7/2/07, Joe Vender wrote: > > Has a release date been set for FreeBSD 7.0-Release? If not, how about an > > (educated guess) approximate date, month? > > > > Joe Thanks. About 4 months from initial code freeze. That's about what I expected. Joe From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 09:40:04 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DA0916A400 for ; Tue, 3 Jul 2007 09:40:04 +0000 (UTC) (envelope-from nawcom@nawcom.com) Received: from flpi101.prodigy.net (flpi101.sbcis.sbc.com [207.115.20.70]) by mx1.freebsd.org (Postfix) with ESMTP id 426F813C447 for ; Tue, 3 Jul 2007 09:40:04 +0000 (UTC) (envelope-from nawcom@nawcom.com) X-ORBL: [68.255.232.220] Received: from fedex.nphreak.local (adsl-68-255-232-220.dsl.sfldmi.ameritech.net [68.255.232.220]) by flpi101.prodigy.net (8.13.8 out.dk.spool/8.13.8) with ESMTP id l639NkWI016654; Tue, 3 Jul 2007 02:23:47 -0700 Received: from nawcoms-computer.local (unknown [192.168.212.243]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by fedex.nphreak.local (Postfix) with ESMTP id A33A439823; Tue, 3 Jul 2007 05:26:13 -0400 (EDT) Message-ID: <468A15AF.1050600@nawcom.com> Date: Tue, 03 Jul 2007 05:23:59 -0400 From: nawcom User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: Ted Mittelstaedt References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 09:40:04 -0000 Reminds me of a typical windows user i dealt with who saw an error about explorer.exe and how it could not "be read" and let it slide. :-P using my wicked non user friendly skillz of the damned, i personally like the concept of a simple "pebkac error" when bind refuses to start due to a named.conf setting or similar. sortof creates a challenge, an adventure to find what's causing the issue yourself. wait. i shouldn't be promoting ideas on how make things worse off on freebsd-questions. pardon this useless email. -ben Ted Mittelstaedt wrote: > >> -----Original Message----- >> From: owner-freebsd-questions@freebsd.org >> [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Martin >> McCormick >> >> Then, there is the ultimate, the "Check engine." light on the >> modern car. >> > > Check engine - CEL > > >> It would be so nice if it said some indication as to >> the seriousness of the problem so that one knows whether to get >> it fixed now and maybe save $5,000 worth of repair costs or let >> it slide a few days until a better time. >> >> > > Most people take the tack that if the CEL comes on and the engine > is still running and the car still goes, that they can let it slide. > > Ted > _______________________________________________ > 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 Jul 3 10:18:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2BE116A400 for ; Tue, 3 Jul 2007 10:18:23 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.230]) by mx1.freebsd.org (Postfix) with ESMTP id 5595D13C45D for ; Tue, 3 Jul 2007 10:18:23 +0000 (UTC) (envelope-from joao.barros@gmail.com) Received: by wr-out-0506.google.com with SMTP id 69so1177572wra for ; Tue, 03 Jul 2007 03:18:22 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Qx/HB8XoCFj5F0UxSozF/63aX8p3gW71kP6+cYi6XMqoaHcLuhQvmwZIuxC+as5boXjTrzUYZMnKSqoOIxA8qhDRKvxt3mDiZzcXHG+yuZJJ5/Q9rJ89nYvBj5gaqUpnKWiT26uT9ea4mFTbcn1Nk2MwevxDQ7Qz6EeCJHjv7xI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=nJ+638cWINTMPckuLqBmctHkjzpppuz66cO/RCahodUSn8ABmW1aKt5mWKYE2uWbg8ixSAw/G6A7tjrF5UlU3sFZGUjcoyk7D24Y5xvRC6wxraD83E58D0vUltbZZw8hqM08G7lwsKGuJJcYIq2U2hjqG1c26L0yyYaOM7/HrlM= Received: by 10.78.136.9 with SMTP id j9mr3415070hud.1183456149892; Tue, 03 Jul 2007 02:49:09 -0700 (PDT) Received: by 10.78.190.11 with HTTP; Tue, 3 Jul 2007 02:49:09 -0700 (PDT) Message-ID: <70e8236f0707030249q1afb72cap1725d4d2a3693288@mail.gmail.com> Date: Tue, 3 Jul 2007 10:49:09 +0100 From: "Joao Barros" To: "Joe Vender" In-Reply-To: <200707030415.49625.jvender@owensboro.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000301c7bcef$03549930$1c1987d8@joe> <28283d910707021616j5a6a4a5bs4373301de2c609c0@mail.gmail.com> <200707030415.49625.jvender@owensboro.net> Cc: matt donovan , freebsd-questions@freebsd.org Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 10:18:23 -0000 On 7/3/07, Joe Vender wrote: > On Monday 02 July 2007 18:16, matt donovan wrote: > > it's on the freebsd site but the code freeze has begun so some are guessing > > around October or so > > > > On 7/2/07, Joe Vender wrote: > > > Has a release date been set for FreeBSD 7.0-Release? If not, how about an > > > (educated guess) approximate date, month? > > > > > > Joe > > > Thanks. About 4 months from initial code freeze. That's about what I expected. > > Joe Keep an eye here: http://www.freebsd.org/releases/7.0R/schedule.html -- Joao Barros From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 10:38:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F32E416A400 for ; Tue, 3 Jul 2007 10:38:52 +0000 (UTC) (envelope-from nejc@skoberne.net) Received: from svarun.infrax.si (84-255-241-13.static.dsl.t-2.net [84.255.241.13]) by mx1.freebsd.org (Postfix) with ESMTP id AFDE313C43E for ; Tue, 3 Jul 2007 10:38:52 +0000 (UTC) (envelope-from nejc@skoberne.net) Received: from localhost (localhost [127.0.0.1]) by svarun.infrax.si (Postfix) with ESMTP id 322FFDA88B for ; Tue, 3 Jul 2007 12:38:49 +0200 (CEST) Received: from svarun.infrax.si ([127.0.0.1]) by localhost (Svarun.infrax.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 55661-06 for ; Tue, 3 Jul 2007 12:38:41 +0200 (CEST) Received: from [192.168.15.2] (unknown [192.168.15.2]) by svarun.infrax.si (Postfix) with ESMTP id 4816CDA859 for ; Tue, 3 Jul 2007 12:38:41 +0200 (CEST) Message-ID: <468A2723.8020207@skoberne.net> Date: Tue, 03 Jul 2007 12:38:27 +0200 From: =?ISO-8859-2?Q?Nejc_=A9koberne?= User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: User Questions Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at infrax.si Subject: BIND to listen on all interfaces? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 10:38:53 -0000 Hello, I am running BIND (from base system) on my FreeBSD 5.3 machine. The box is connected to outer world via ADSL connection (tun0 device). If the named is started when the machine is connected to the internet, then everything is OK, I get this by saying netstat -n -a: udp4 0 0 X.X.X.X.53 *.* udp4 0 0 127.0.0.1.53 *.* udp4 0 0 10.0.1.3.53 *.* but at boot time, the named starts before the PPP connection is started, so the tun0 interface is not up yet. So that's why I get this: udp4 0 0 127.0.0.1.53 *.* udp4 0 0 10.0.1.3.53 *.* In BIND manual, it says: "If no listen-on is specified, the server will listen on port 53 on all interfaces." I also tried to specify the ADSL IP address in named.conf (it is static), but it is still a no go. I don't have such problems with other daemons! Any ideas? Thanks, Nejc From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 11:53:12 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1742816A468 for ; Tue, 3 Jul 2007 11:53:12 +0000 (UTC) (envelope-from bsdprakash@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.249]) by mx1.freebsd.org (Postfix) with ESMTP id B95AC13C4BE for ; Tue, 3 Jul 2007 11:53:11 +0000 (UTC) (envelope-from bsdprakash@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so436543anc for ; Tue, 03 Jul 2007 04:53:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=GuCMdtnsLU51JxwceY1XdP8xZB7wlFDi2FKDSHvuRzsJ8kcM3mE7syCfbvBSbbppotXHGq1R8wUIsu6Xr6h9aYzQreDD8vb95dOi8+lBhR9GKOd7ALJI6g4FOD72m167TrfTkq7cVgBRTNhjJOjG+35+nYdhQwMWafuG3IZYgxs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=oVPM1NmplWPzpiv+bLhHKpHGSLcRsVDPEaBO6md31PwaSPKnaBb/McCVq3F+9wBCRtg6y1yzivq+YQnUGeBA5HmjgmFkFWupOl/Zzw7SgKkwRyGYdpH3qD0dw/BJ3gxHQczW/Yb3WzJJrOipDn/O9pRml66j1WtjI9vAKgjCOMQ= Received: by 10.142.106.18 with SMTP id e18mr424952wfc.1183463590169; Tue, 03 Jul 2007 04:53:10 -0700 (PDT) Received: by 10.143.158.2 with HTTP; Tue, 3 Jul 2007 04:53:10 -0700 (PDT) Message-ID: <1428d0e80707030453s6b725ed5q9a1ed28f83e63360@mail.gmail.com> Date: Tue, 3 Jul 2007 17:38:10 +0545 From: "Prakash Poudyal" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Could not start GNOME or KDE in Freebsd 6.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, 03 Jul 2007 11:53:12 -0000 Hello everybody, I could not start install GNOME or KDE in Freebsd 6.2 If you have any idea or process please could you give suggestion for me to do it. Thank you Prakash From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 12:15:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F22E916A400 for ; Tue, 3 Jul 2007 12:15:15 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 58E8C13C4B9 for ; Tue, 3 Jul 2007 12:15:14 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (vader.bytemobile.ondsl.gr [83.235.244.135]) (authenticated bits=128) by igloo.linux.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l63CF1CX023708 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 3 Jul 2007 15:15:09 +0300 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.1/8.14.1) with ESMTP id l63CEjSk012647; Tue, 3 Jul 2007 15:15:00 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.1/8.14.1/Submit) id l63CEjw3012646; Tue, 3 Jul 2007 15:14:45 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Tue, 3 Jul 2007 15:14:44 +0300 From: Giorgos Keramidas To: Joe Vender Message-ID: <20070703121444.GA12577@kobe.laptop> References: <000301c7bcef$03549930$1c1987d8@joe> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000301c7bcef$03549930$1c1987d8@joe> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.752, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.65, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD 7.0-Release X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 12:15:16 -0000 On 2007-07-02 16:21, Joe Vender wrote: > Has a release date been set for FreeBSD 7.0-Release? If not, how about > an (educated guess) approximate date, month? The release schedules are posted online at: http://www.FreeBSD.org/releng/ If a date is not posted there, it's probably not official yet. Even if a date *IS* posted there, it is subject to change according to the plans of the Release Engineering team. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 12:21:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53FF016A421 for ; Tue, 3 Jul 2007 12:21:33 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 1919613C4B8 for ; Tue, 3 Jul 2007 12:21:32 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 69so1204546wra for ; Tue, 03 Jul 2007 05:21:32 -0700 (PDT) Received: by 10.90.54.4 with SMTP id c4mr5942343aga.1183465292268; Tue, 03 Jul 2007 05:21:32 -0700 (PDT) Received: from ?192.168.0.4? ( [67.189.184.224]) by mx.google.com with ESMTP id 71sm2797603wry.2007.07.03.05.21.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Jul 2007 05:21:31 -0700 (PDT) Date: Tue, 03 Jul 2007 08:21:38 -0400 To: User Questions Organization: Seibercom.net In-Reply-To: <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20070703081111.B306.GERARD-SEIBERT@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.31 [en] From: Gerard Subject: Re[2]: flash X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: User Questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 12:21:33 -0000 On July 02, 2007 at 11:57PM Richard Lynch wrote: > "Need" is relative, but personally, I stopped installing Flash even > operating systems where it actually sort of works, albeit sucking down > CPU and RAM like there's no tomorrow, and crashing on a semi-regular > basis... > > I found my surfing experience vastly improved without Flash. > > Formerly dog-slow sites are much faster. > > And there isn't any content I've felt deprived to not get. > > Obviously, folks who spend their free time (or work-time :-)) watching > youtube would feel differently, but... Personally, I disagree. Many sites that I use, including business sites, require the use of Flash. Your statement that Flash is only relevant for those who view 'YouTube' is grossly incorrect. It is due to the numerous problems of getting Flash to work correctly under FreeBSD, regardless of which browser the end user is employing, that I keep a Windows machine so as to facilitate the viewing of Flash content. IMHO, this is one of the reasons that more users do not use alternative operating systems like FBSD. I would love to see a simple procedure that would install Firefox or Opera, with Flash, Java and possibly PDF support installed and configured. I have seen too many individuals simply give up on the procedure and return to using Windows for browsing. A simple search of this forum will prove that point out. It just shouldn't have to be that complicated. -- Gerard From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 12:42:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 997CB16A47C for ; Tue, 3 Jul 2007 12:42:29 +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 50DD213C480 for ; Tue, 3 Jul 2007 12:42:29 +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 l63CE9xQ044497 for ; Tue, 3 Jul 2007 08:14:10 -0400 (EDT) (envelope-from paul+fbsd@it.ca) Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id l63CE9F1044496 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 08:14:09 -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: Tue, 3 Jul 2007 08:14:09 -0400 From: Paul Chvostek To: freebsd-questions@freebsd.org Message-ID: <20070703121408.GA357@it.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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]); Tue, 03 Jul 2007 08:14:10 -0400 (EDT) Subject: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 12:42:29 -0000 Hiya. I just did my Xorg upgrade, which included an upgrade of OpenOffice.org to version 2.2.1. Now, when I launch OO, it complains not at all, but opens no windows. It doesn't take much time: > time openoffice.org-2.2.1 0.727u 0.267s 0:02.06 47.5% 301+915k 1+0io 0pf+0w > The shell wrapper (/usr/local/openoffice.org-2.2.1/program/soffice) is definitely running soffice.bin. But the binary does nothing except return an exit value of 78, which is *not* trapped by the shell wrapper. And I don't know what 78 means. I've seen some hints in other operating systems' forums that OO does strange things when fonts with questionable metrics are installed, so I've uninstalled a bunch of things that I can probably do without, and replaced the rest with `portupgrade -fR xorg-fonts-7.2`, to no avail. Running soffice.bin in an strace produces gobs of output that I don't know how to interpret. The last few "useful" lines from strace refer to libraries like libglib, libiconv, etc, so I've reinstalled glib2 and libiconv and some others, also to no avail. I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF fonts work in other apps, and OO was built with these in /etc/make.conf: WITH_EVOLUTION2=yes WITH_TTF_BYTECODE_ENABLED=yes WITH_SYSTEM_FREETYPE=yes Any suggestions? Has anyone else seen and solved this? Thanks. -- Paul Chvostek From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:00:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67D6E16A46D for ; Tue, 3 Jul 2007 13:00:18 +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 20D1C13C45D for ; Tue, 3 Jul 2007 13:00:17 +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 l63D0Gjl047659; Tue, 3 Jul 2007 09:00:16 -0400 (EDT) (envelope-from paul+fbsd@it.ca) Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id l63D0EWw047658; Tue, 3 Jul 2007 09:00:14 -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: Tue, 3 Jul 2007 09:00:14 -0400 From: Paul Chvostek To: Martin McCormick Message-ID: <20070703130014.GB357@it.ca> References: <200707022011.l62KBu8I039211@dc.cis.okstate.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707022011.l62KBu8I039211@dc.cis.okstate.edu> 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]); Tue, 03 Jul 2007 09:00:16 -0400 (EDT) Cc: freebsd-questions@freebsd.org Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 13:00:18 -0000 On Mon, Jul 02, 2007 at 03:11:56PM -0500, Martin McCormick wrote: > > #! /bin/sh > a = 5 > > that's enough to make it happen. Run that, and you get: > > a: not found > > Interestingly enough, if you run that same script in a > Debian Linux environment, you get: > > ./testfile: line 2: a: command not found This is actually just the difference between sh and bash. You'll see the latter error if you type `a = 5` in bash in any OS. It just so happens that most Linux distributions don't have a real sh: [paul@ast1 ~]$ uname -s Linux [paul@ast1 ~]$ ls -l `which bash sh` -rwxr-xr-x 1 root root 616248 Aug 13 2006 /bin/bash lrwxrwxrwx 1 root root 4 Mar 25 20:36 /bin/sh -> bash -- Paul Chvostek From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:17:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42B1016A421 for ; Tue, 3 Jul 2007 13:17:29 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by mx1.freebsd.org (Postfix) with ESMTP id 088D113C483 for ; Tue, 3 Jul 2007 13:17:28 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wr-out-0506.google.com with SMTP id 69so1218412wra for ; Tue, 03 Jul 2007 06:17:28 -0700 (PDT) Received: by 10.90.36.3 with SMTP id j3mr6027662agj.1183468647596; Tue, 03 Jul 2007 06:17:27 -0700 (PDT) Received: from ?192.168.0.4? ( [67.189.184.224]) by mx.google.com with ESMTP id 8sm18290296wrl.2007.07.03.06.17.25 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 03 Jul 2007 06:17:25 -0700 (PDT) Date: Tue, 03 Jul 2007 09:17:33 -0400 To: User Questions Organization: Seibercom.net In-Reply-To: <1428d0e80707030453s6b725ed5q9a1ed28f83e63360@mail.gmail.com> References: <1428d0e80707030453s6b725ed5q9a1ed28f83e63360@mail.gmail.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20070703091318.CC7E.GERARD-SEIBERT@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.31 [en] From: Gerard Subject: Re: Could not start GNOME or KDE in Freebsd 6.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: User Questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 13:17:29 -0000 On July 03, 2007 at 07:53AM Prakash Poudyal wrote: > I could not start install GNOME or KDE in Freebsd 6.2 If you have any idea > or process please could you give suggestion for me to do it. Sorry, my crystal ball is out for cleaning today. Perhaps you might be kind enough to include the log file(s) that you have regarding this incident. Also post any error messages, etc. that you receive as well as any other additional relevant data. Read 'man script' if you need assistance on how to create a log file of your installation. -- Gerard From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:29:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2C8016A46B for ; Tue, 3 Jul 2007 13:29:49 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 4E4BC13C457 for ; Tue, 3 Jul 2007 13:29:49 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 03 Jul 2007 13:29:47 -0000 Received: from nat-wh-1.rz.uni-karlsruhe.de (EHLO mobileKamikaze.norad) [129.13.72.169] by mail.gmx.net (mp044) with SMTP; 03 Jul 2007 15:29:47 +0200 X-Authenticated: #5465401 X-Provags-ID: V01U2FsdGVkX1+o/OZA5kuoULrFTjZ1IMzsqVGSgRxihvrMjLBqqm yhMCxR/xmaTWXo Message-ID: <468A4F4A.1060500@gmx.de> Date: Tue, 03 Jul 2007 15:29:46 +0200 From: "[LoN]Kamikaze" User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20070703121408.GA357@it.ca> In-Reply-To: <20070703121408.GA357@it.ca> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 13:29:50 -0000 Paul Chvostek wrote: > Hiya. > > I just did my Xorg upgrade, which included an upgrade of OpenOffice.org > to version 2.2.1. > > Now, when I launch OO, it complains not at all, but opens no windows. > It doesn't take much time: > > > time openoffice.org-2.2.1 > 0.727u 0.267s 0:02.06 47.5% 301+915k 1+0io 0pf+0w > > > > The shell wrapper (/usr/local/openoffice.org-2.2.1/program/soffice) is > definitely running soffice.bin. But the binary does nothing except > return an exit value of 78, which is *not* trapped by the shell wrapper. > And I don't know what 78 means. > > I've seen some hints in other operating systems' forums that OO does > strange things when fonts with questionable metrics are installed, so > I've uninstalled a bunch of things that I can probably do without, and > replaced the rest with `portupgrade -fR xorg-fonts-7.2`, to no avail. > > Running soffice.bin in an strace produces gobs of output that I don't > know how to interpret. The last few "useful" lines from strace refer to > libraries like libglib, libiconv, etc, so I've reinstalled glib2 and > libiconv and some others, also to no avail. > > I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF > fonts work in other apps, and OO was built with these in /etc/make.conf: > WITH_EVOLUTION2=yes > WITH_TTF_BYTECODE_ENABLED=yes > WITH_SYSTEM_FREETYPE=yes > > Any suggestions? Has anyone else seen and solved this? > > Thanks. > Try env OO_FORCE_DESKTOP=none From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:44:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1532916A41F for ; Tue, 3 Jul 2007 13:44:15 +0000 (UTC) (envelope-from martin@dc.cis.okstate.edu) Received: from dc.cis.okstate.edu (dc.cis.okstate.edu [139.78.100.219]) by mx1.freebsd.org (Postfix) with ESMTP id C683213C4BD for ; Tue, 3 Jul 2007 13:44:14 +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.13.8/8.13.8) with ESMTP id l63DiEbo098703 for ; Tue, 3 Jul 2007 08:44:14 -0500 (CDT) (envelope-from martin@dc.cis.okstate.edu) Message-Id: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <98701.1183470254.1@dc.cis.okstate.edu> Date: Tue, 03 Jul 2007 08:44:14 -0500 From: Martin McCormick Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 13:44:15 -0000 Paul Chvostek writes: > This is actually just the difference between sh and bash. You'll see > the latter error if you type `a = 5` in bash in any OS. It just so > happens that most Linux distributions don't have a real sh: I kind of thought that was the real issue. While something like this is maybe slightly annoying at times, the differences in, say, arithmetic handling and loops can sometimes mean rewriting parts of shell scripts depending on whether it is going to run in BSD or Linux. Martin From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:46:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B90E316A46E for ; Tue, 3 Jul 2007 13:46:03 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 7698A13C45D for ; Tue, 3 Jul 2007 13:46:03 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 2A291519CC for ; Tue, 3 Jul 2007 09:46:02 -0400 (EDT) Date: Tue, 3 Jul 2007 14:45:58 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070703144558.36f87262@gumby.homeunix.com.> In-Reply-To: <20070703081111.B306.GERARD-SEIBERT@seibercom.net> References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> <20070703081111.B306.GERARD-SEIBERT@seibercom.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: 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: Tue, 03 Jul 2007 13:46:03 -0000 On Tue, 03 Jul 2007 08:21:38 -0400 Gerard wrote: > On July 02, 2007 at 11:57PM Richard Lynch wrote: > > > ... > > And there isn't any content I've felt deprived to not get. > > > > Obviously, folks who spend their free time (or work-time :-)) > > watching youtube would feel differently, but... > > Personally, I disagree. Many sites that I use, including business > sites, require the use of Flash. Your statement that Flash is only > relevant for those who view 'YouTube' is grossly incorrect. It is due > to the numerous problems of getting Flash to work correctly under > FreeBSD, regardless of which browser the end user is employing, that > I keep a Windows machine so as to facilitate the viewing of Flash > content. > > IMHO, this is one of the reasons that more users do not use > alternative operating systems like FBSD. ... Can anyone comment on how well Flash9 works in a real Linux distribution? In particular does it have the problem where the flash item turns into a blank box after a few seconds. If that problem exists in Linux there's a decent chance it will get fixed by Adobe. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 13:54:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81F8616A421 for ; Tue, 3 Jul 2007 13:54:22 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 5759313C465 for ; Tue, 3 Jul 2007 13:54:22 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 5002E51931 for ; Tue, 3 Jul 2007 09:54:21 -0400 (EDT) Date: Tue, 3 Jul 2007 14:54:18 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070703145418.330a044a@gumby.homeunix.com.> In-Reply-To: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 13:54:22 -0000 On Tue, 03 Jul 2007 08:44:14 -0500 Martin McCormick wrote: > Paul Chvostek writes: > > This is actually just the difference between sh and bash. You'll > > see the latter error if you type `a = 5` in bash in any OS. It > > just so happens that most Linux distributions don't have a real sh: > > I kind of thought that was the real issue. While > something like this is maybe slightly annoying at times, the > differences in, say, arithmetic handling and loops can sometimes > mean rewriting parts of shell scripts depending on whether it is > going to run in BSD or Linux. That's why there is a POSIX standard, and why many people think it's bad idea to get into the habit of using bash specific scripts. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:14:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 923B016A41F for ; Tue, 3 Jul 2007 14:14:11 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.freebsd.org (Postfix) with ESMTP id 3FDD013C45A for ; Tue, 3 Jul 2007 14:14:10 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from haiti.nepinc.com (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id l63EEC9g052298; Tue, 3 Jul 2007 10:14:12 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <468A59AF.1050604@voidmain.net> Date: Tue, 03 Jul 2007 10:14:07 -0400 From: Tom Grove User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: RW References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> <20070703081111.B306.GERARD-SEIBERT@seibercom.net> <20070703144558.36f87262@gumby.homeunix.com.> In-Reply-To: <20070703144558.36f87262@gumby.homeunix.com.> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 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: Tue, 03 Jul 2007 14:14:11 -0000 RW wrote: > On Tue, 03 Jul 2007 08:21:38 -0400 > Gerard wrote: > > >> On July 02, 2007 at 11:57PM Richard Lynch wrote: >> >> >>> ... >>> And there isn't any content I've felt deprived to not get. >>> >>> Obviously, folks who spend their free time (or work-time :-)) >>> watching youtube would feel differently, but... >>> >> Personally, I disagree. Many sites that I use, including business >> sites, require the use of Flash. Your statement that Flash is only >> relevant for those who view 'YouTube' is grossly incorrect. It is due >> to the numerous problems of getting Flash to work correctly under >> FreeBSD, regardless of which browser the end user is employing, that >> I keep a Windows machine so as to facilitate the viewing of Flash >> content. >> >> IMHO, this is one of the reasons that more users do not use >> alternative operating systems like FBSD. ... >> > > Can anyone comment on how well Flash9 works in a real Linux > distribution? > > In particular does it have the problem where the flash item turns > into a blank box after a few seconds. If that problem exists in Linux > there's a decent chance it will get fixed by Adobe. > > > > > _______________________________________________ > 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 will say that my limited use with Debian testing (Lenny) and Flash was actually quite pleasant. Flash worked on almost all sites very well. I'm not all that familiar with the process that the FreeBSD Foundation went through to get Java binaries but I am wondering if they could do something similar with Adobe to get a native Flash on FreeBSD. How possible is this? I know this probably goes against everything that BSD stands for but money talks in this day and age.' Would it be worth pursuing some kind of license agreement with Adobe so that the community or Adobe could start working on a native Flash for FreeBSD? -Tom From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:15:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55A8016A469 for ; Tue, 3 Jul 2007 14:15:06 +0000 (UTC) (envelope-from marcelosq28@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.freebsd.org (Postfix) with ESMTP id 157C413C465 for ; Tue, 3 Jul 2007 14:15:05 +0000 (UTC) (envelope-from marcelosq28@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so1007536wxd for ; Tue, 03 Jul 2007 07:15:05 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=RV40FWRSOvtCQmPXbZ1fzAXOy8DflkrnTvLwOra+MzSTOOsMQIcSchPJ5moMeLJ2S5ID9GiI7VEyzXTb6rEQmqykSgnvuC9lBstNA+DdHCvSz2p2NtyS1MhFN+xDN/MrUUZ3wn3tDl1POv7KElF4MQ+YZkvxlHP7vZU2Nazkqgw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Hqxjm+0urHb8BB9x2s6IaQXtsG+D9ENGHN4p/3iegHU+GAjBzyI0RY71whjmn71IPc/PMTxItfGCpHRHcdhcg30r/UAtfDEFGU8CpA01WzqSX8oNrJZV197nK181ymxNwNCHGVrV8Fyt9R9USLnQdf+x5ITZqj/pXjD+HBRCXck= Received: by 10.90.89.5 with SMTP id m5mr6074808agb.1183470457375; Tue, 03 Jul 2007 06:47:37 -0700 (PDT) Received: by 10.90.33.6 with HTTP; Tue, 3 Jul 2007 06:47:32 -0700 (PDT) Message-ID: <38d584980707030647v6ffea48aj7c97fe6a81f9b817@mail.gmail.com> Date: Tue, 3 Jul 2007 10:47:32 -0300 From: "Marcelo Vieira" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Maximun number of LUNs recognized by FreeBSD 6.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, 03 Jul 2007 14:15:06 -0000 Hi, I'm not having success to find which would be the maximum number of LUNs recognized by FreeBSD 6.2. I have an HBA Qlogix QLA2340 attached to an EMC Symmetrix and was not able to recognize any LUN higher that 7. Once I could not find any documentation informing that this really is the limit recognized by it I'm in doubt if I'm having an issue or it is working as expected. Could someone clarify this question ? Thanks, Marcelo From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:22:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C2C616A4CB for ; Tue, 3 Jul 2007 14:22:26 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.freebsd.org (Postfix) with ESMTP id 661BE13C46C for ; Tue, 3 Jul 2007 14:22:26 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1I5jGr-0000BB-3d for freebsd-questions@freebsd.org; Tue, 03 Jul 2007 10:22:25 -0400 Message-ID: <004b01c7bd7d$93802900$6501a8c0@GRANT> From: "Grant Peel" To: Date: Tue, 3 Jul 2007 10:22:24 -0400 Organization: The Net Now MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: MySQL Quotas X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 14:22:26 -0000 Hi, I am posting this here thinking this may be more of an OS thing than a = mysql thing... Since all mysql databases and tables need to be owned by the mysql user, = is there, er, has anyone figured out a way to impose disk quotas per = database for mysql? -Grant From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:29:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3714016A400 for ; Tue, 3 Jul 2007 14:29:49 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from nagual.nl (cc20684-a.assen1.dr.home.nl [82.74.10.158]) by mx1.freebsd.org (Postfix) with ESMTP id 7713913C4AE for ; Tue, 3 Jul 2007 14:29:47 +0000 (UTC) (envelope-from dick@nagual.nl) Received: from westmark.nagual.nl (westmark.nagual.nl [192.168.11.22]) by nagual.nl (8.13.8+Sun/8.13.8/yanta) with ESMTP id l63ETqx2018702 for ; Tue, 3 Jul 2007 16:29:52 +0200 (CEST) Received: (from dick@localhost) by westmark.nagual.nl (8.14.1+Sun/8.14.1/Submit) id l63ETe3M022990; Tue, 3 Jul 2007 16:29:40 +0200 (CEST) X-Authentication-Warning: westmark.nagual.nl: dick set sender to dick@nagual.nl using -f To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> <20070703081111.B306.GERARD-SEIBERT@seibercom.net> From: Dick Hoogendijk Date: Tue, 03 Jul 2007 16:29:40 +0200 In-Reply-To: <20070703081111.B306.GERARD-SEIBERT@seibercom.net> (gerard@seibercom.net's message of "Tue\, 03 Jul 2007 08\:21\:38 -0400") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (usg-unix-v) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.58 on 192.168.11.35 Subject: Re: 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: Tue, 03 Jul 2007 14:29:49 -0000 Gerard writes: > IMHO, this is one of the reasons that more users do not use > alternative operating systems like FBSD. FreeBSD needs native support from Adobe. Flash, although I dislike it, is needed in modern web experience. Flash works very well on windows, but also on linux and (luckely for me) solaris. No hassle, just download the right flash file for my OS and it works. I hope this day will come for FreeBSD too. I remember from my days using fbsd flash was one of the annoying items to get working. > I have seen too many individuals simply give up on the procedure and > return to using Windows for browsing. Hmm, that's their loss I guess. It won't take too long before browsing in this OS becomes a real pain in**** due to malware. I never was clean longer than a few minutes unprotected. > A simple search of this forum will prove that point out. It just > shouldn't have to be that complicated. It can ruin the experience. You're right about hat. -- Dick Hoogendijk -- PGP/GnuPG key: F86289CE ++ http://nagual.nl/ + Solaris 11 05/07 ++ From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:33:26 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 12E0216A469 for ; Tue, 3 Jul 2007 14:33:26 +0000 (UTC) (envelope-from yrao@force10networks.com) Received: from mx.force10networks.com (nat-eqx.force10networks.com [69.25.56.27]) by mx1.freebsd.org (Postfix) with ESMTP id F03BF13C43E for ; Tue, 3 Jul 2007 14:33:25 +0000 (UTC) (envelope-from yrao@force10networks.com) Received: from mx.force10networks.com ([10.11.0.215]) by mx.force10networks.com with Microsoft SMTPSVC(6.0.3790.0); Tue, 3 Jul 2007 07:33:26 -0700 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, 3 Jul 2007 07:33:36 -0700 Message-ID: <9E2742C54E161041A53F36F9A8DC31BE070257@EXCH-CLUSTER-04.force10networks.com> In-Reply-To: <4407.10.202.77.103.1183450963.squirrel@webmail.superhero.nl> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: SMP options and core dump failure Thread-Index: Ace9S1Q2zFwHfGn3RC2gdgCFxfHVqAAM7Dug References: <9E2742C54E161041A53F36F9A8DC31BE070236@EXCH-CLUSTER-04.force10networks.com> <4407.10.202.77.103.1183450963.squirrel@webmail.superhero.nl> From: "Yong Rao" To: "Gelsema, P \(Patrick\) - FreeBSD" X-OriginalArrivalTime: 03 Jul 2007 14:33:26.0987 (UTC) FILETIME=[1E47D9B0:01C7BD7F] Cc: questions@freebsd.org Subject: RE: SMP options and core dump failure X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 14:33:26 -0000 Thanks, Patrick! It is not the current version. It is FreeBSD localhost.localdomain 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jun 15 11:02:24 PDT 2007 =20 Thanks, Yong -----Original Message----- From: Gelsema, P (Patrick) - FreeBSD [mailto:freebsd@superhero.nl]=20 Sent: Tuesday, July 03, 2007 1:23 AM To: Yong Rao Cc: questions@freebsd.org Subject: Re: SMP options and core dump failure On Tue, July 3, 2007 02:59, Yong Rao wrote: > Hello, > > > > We have a problem with SMP kernel. It could not dump out core when the > crash happens. Which version of FreeBSD? -Current? better ask in freebsd-current@freebsd.org or file a PR. http://www.freebsd.org/send-pr.html Rgds, Patrick > > > > I am able to isolate the problem to kernel configurations which have SMP > enabled when used with 2 cpus. > > With ONE cpu the core dump works ok. > > > > I built the kernel with GENERIC, and deliberately crash the kernel (for > testing purpose). The core dump works fine. > > Only added the "options SMP" and crashed the kernel, then prior to any > pages being dumped out, it hangs there. > > > > Has someone successfully core dumped on a system using SMP kernel with > multiple CPUs? > > > > I tried on two different boxes (different motherboards, CPUs and hard > disks). Both got failed. > > > > I tried to enable the DDB, but don't know what to look for when it goes > into ddb. Appreciate any pointers. > > > > a) The CPU information is > > > > CPU: Dual Core AMD Opteron(tm) Processor 280 (2405.47-MHz 686-class CPU) > > Origin =3D "AuthenticAMD" Id =3D 0x20f12 Stepping =3D 2 > > > Features=3D0x178bfbff ,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,S > > SE,SSE2,HTT> > > Features2=3D0x1 > > AMD Features=3D0xe2500800 > > AMD Features2=3D0x3 > > Cores per package: 2 > > > > > > b) We also tried on another mother board, which has 2 CPUs. The CPU > information is below. > > > > CPU: Intel(R) Xeon(TM) CPU 2.80GHz (2800.11-MHz 686-class CPU) > > Origin =3D "GenuineIntel" Id =3D 0xf29 Stepping =3D 9 > > > Features=3D0xbfebfbff ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> > > Features2=3D0x4400> > > real memory =3D 2147418112 (2047 MB) > > avail memory =3D 2096300032 (1999 MB) > > ACPI APIC Table: > > FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC > ID: 0 > > cpu1 (AP): APIC ID: 6 > > > > > > c) The following are the prints when the dump hung. > > > > mem dump: start address =3D 0x4352, len=3D0x30 > > > > > > > > > Fatal trap 12: page fault while in kernel mode > > > cpuid =3D 1; apic id =3D 01 > > > fault virtual address =3D 0x4352 > > > fault code =3D supervisor read, page not present > > > instruction pointer =3D 0x20:0xc9e9fc92 > > > stack pointer =3D 0x28:0xebdbdbdc > > > frame pointer =3D 0x28:0xebdbdbf8 > > > code segment =3D base 0x0, limit 0xfffff, type 0x1b > > > =3D DPL 0, pres 1, def32 1, gran 1 > > > processor eflags =3D interrupt enabled, resume, IOPL =3D 0 > > > current process =3D 74231 (pnicdbg) > > > trap number =3D 12 > > > panic: page fault > > > cpuid =3D 1 > > > Uptime: 1d18h27m42s > > > Dumping 4030 MB (2 chunks) > > > chunk 0: 1MB (154 pages) ... ok > > > chunk 1: 4031MB (1031776 pages) (stopped and hung here) > > > > > > Thanks, > > > > Yong Rao > > Force10 Networks Inc. > > 350 Holger Way > > San Jose, CA 95132 > > 408 571 6317 > > > > _______________________________________________ > 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 Jul 3 14:45:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37B3B16A46E for ; Tue, 3 Jul 2007 14:45:42 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from farris.bafirst.com (adsl-065-081-102-002.sip.jan.bellsouth.net [65.81.102.2]) by mx1.freebsd.org (Postfix) with ESMTP id B101B13C4C3 for ; Tue, 3 Jul 2007 14:45:41 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by farris.bafirst.com with esmtp; Tue, 03 Jul 2007 09:45:39 -0500 id 0006D40C.468A6113.0000FA63 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Tue, 03 Jul 2007 09:45:39 -0500 id 0004AC0C.468A6113.00005963 Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Tue, 03 Jul 2007 09:45:38 -0500 Message-ID: <20070703094538.ch7zr9mpcowkg8k8@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Tue, 03 Jul 2007 09:45:38 -0500 From: eculp@encontacto.net To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> <18057.52988.372199.686546@jerusalem.litteratus.org> In-Reply-To: <18057.52988.372199.686546@jerusalem.litteratus.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.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: 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: Tue, 03 Jul 2007 14:45:42 -0000 Quoting Robert Huff : > Richard Lynch writes: > >> I found my surfing experience vastly improved without Flash. >> >> Formerly dog-slow sites are much faster. >> >> And there isn't any content I've felt deprived to not get. > > There are an increasing number of sites - including way too > many companies who can afford to hire people who ought to know > better - where the entry page is 100% Flash. Not even a button for > [Skip Flash]. Hopefully the iPhone will help that as it doesn't include flash. That, I assume is the reason for http://m.youtube.com/, at least reduce the flash menues. ed From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 14:56:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FDE716A41F for ; Tue, 3 Jul 2007 14:56:15 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 8031013C45B for ; Tue, 3 Jul 2007 14:56:14 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l63EuCFi033118; Tue, 3 Jul 2007 07:56:13 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "nawcom" Date: Tue, 3 Jul 2007 07:57:37 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <468A15AF.1050600@nawcom.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Tue, 03 Jul 2007 07:56:13 -0700 (PDT) Cc: freebsd-questions@freebsd.org Subject: RE: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 14:56:15 -0000 You could make it more zen-like, perhaps: "You are out of tune with the Universe, grasshopper. Continue your studies" And, if everything was correct it could issue: "awakening has been attained, entering zazen" Ted > -----Original Message----- > From: nawcom [mailto:nawcom@nawcom.com] > Sent: Tuesday, July 03, 2007 2:24 AM > To: Ted Mittelstaedt > Cc: freebsd-questions@freebsd.org > Subject: Re: The worst error message in history belongs to... BIND9! > > > Reminds me of a typical windows user i dealt with who saw an error about > explorer.exe and how it could not "be read" and let it slide. :-P > > using my wicked non user friendly skillz of the damned, i personally > like the concept of a simple "pebkac error" when bind refuses to start > due to a named.conf setting or similar. sortof creates a challenge, an > adventure to find what's causing the issue yourself. > > wait. i shouldn't be promoting ideas on how make things worse off on > freebsd-questions. > > pardon this useless email. > > -ben > > Ted Mittelstaedt wrote: > > > >> -----Original Message----- > >> From: owner-freebsd-questions@freebsd.org > >> [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Martin > >> McCormick > >> > >> Then, there is the ultimate, the "Check engine." light on the > >> modern car. > >> > > > > Check engine - CEL > > > > > >> It would be so nice if it said some indication as to > >> the seriousness of the problem so that one knows whether to get > >> it fixed now and maybe save $5,000 worth of repair costs or let > >> it slide a few days until a better time. > >> > >> > > > > Most people take the tack that if the CEL comes on and the engine > > is still running and the car still goes, that they can let it slide. > > > > Ted > > _______________________________________________ > > 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 Jul 3 14:56:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 631BD16A421 for ; Tue, 3 Jul 2007 14:56:38 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from farris.bafirst.com (adsl-065-081-102-002.sip.jan.bellsouth.net [65.81.102.2]) by mx1.freebsd.org (Postfix) with ESMTP id D7EA913C45E for ; Tue, 3 Jul 2007 14:56:37 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by farris.bafirst.com with esmtp; Tue, 03 Jul 2007 09:56:35 -0500 id 0006D40C.468A63A4.0000FA81 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Tue, 03 Jul 2007 09:56:35 -0500 id 0004AC0C.468A63A3.00005B4A Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Tue, 03 Jul 2007 09:56:35 -0500 Message-ID: <20070703095635.43ilcynuwww0c0w8@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Tue, 03 Jul 2007 09:56:35 -0500 From: eculp@encontacto.net To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> <20070702181555.ddbcj2b7wg0oc44s@intranet.encontacto.net> <20070703143610.44f4e539@localhost> In-Reply-To: <20070703143610.44f4e539@localhost> 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.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: Re: 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: Tue, 03 Jul 2007 14:56:38 -0000 Quoting Norberto Meijome : > On Mon, 02 Jul 2007 18:15:55 -0500 > eculp@encontacto.net wrote: > >> P.S. Need a trick to get folks to recognize it as flash9. I have an >> idea, possibly incorrect, that most folks who are asking for flash8 or >> higher will work with flash 7. > > I agree with you here, and I will test any possible hack :) When you finish your tests, I would appreciate your adding my email, eculp@encontacto.net to the list. When I get behind, I often suspend freebsd-questions. Thanks, ed From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:18:46 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B33416A468 for ; Tue, 3 Jul 2007 15:18:46 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 8A32013C44C for ; Tue, 3 Jul 2007 15:18: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.13.8/8.13.8) with ESMTP id l63FIZgx018539; Tue, 3 Jul 2007 17:18:35 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l63FIXwK018536; Tue, 3 Jul 2007 17:18:34 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 3 Jul 2007 17:18:33 +0200 (CEST) From: Wojciech Puchar To: Chuck Swiger In-Reply-To: <46885761.9050302@mac.com> Message-ID: <20070703171811.B18529@wojtek.tensor.gdynia.pl> References: <20070701203720.X64116@wojtek.tensor.gdynia.pl> <46885761.9050302@mac.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: large pages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 15:18:46 -0000 >> with 1536MB AMD64 machine it would be nice for FreeBSD to boot seeing 256 >> megs for itself and allowing 1280 megs to be mapped&locked to just one >> program. > > Hmm. Doesn't FreeBSD's default VM behavior do just fine dealing with one > large active process without any unusual tuning? > what version? 6.2 will? From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:20:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3A5B16A46C for ; Tue, 3 Jul 2007 15:20:21 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 24F1F13C44B for ; Tue, 3 Jul 2007 15:20: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.13.8/8.13.8) with ESMTP id l63FKGQX018562; Tue, 3 Jul 2007 17:20:16 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l63FKGlh018559; Tue, 3 Jul 2007 17:20:16 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 3 Jul 2007 17:20:16 +0200 (CEST) From: Wojciech Puchar To: Chuck Swiger In-Reply-To: <46885761.9050302@mac.com> Message-ID: <20070703171849.R18529@wojtek.tensor.gdynia.pl> References: <20070701203720.X64116@wojtek.tensor.gdynia.pl> <46885761.9050302@mac.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: large pages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 15:20:21 -0000 how can i check in program that the region is mapped using huge pages? i use mmap with address padded to 4M and mlock. On Sun, 1 Jul 2007, Chuck Swiger wrote: > Wojciech Puchar wrote: >> does FreeBSD {can,will,patch exist} supports using huge pages? i mean 2M >> pages on AMD64 and 2/4M pages on i386 > > I believe so, yes-- isn't this what the PAE kernel option does? > >> i need freebsd just for running one program needing about 1280 megs of data >> space (+1-2 meg of code stacks etc. can be normally mapped). everything >> else is just using less than 1% of power. >> >> with 1536MB AMD64 machine it would be nice for FreeBSD to boot seeing 256 >> megs for itself and allowing 1280 megs to be mapped&locked to just one >> program. > > Hmm. Doesn't FreeBSD's default VM behavior do just fine dealing with one > large active process without any unusual tuning? > > -- > -Chuck > > From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:21:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5435516A468 for ; Tue, 3 Jul 2007 15:21:50 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (chylonia.3miasto.net [83.12.228.78]) by mx1.freebsd.org (Postfix) with ESMTP id 9CF9213C45E for ; Tue, 3 Jul 2007 15:21: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.13.8/8.13.8) with ESMTP id l63FLhsE018576; Tue, 3 Jul 2007 17:21:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.13.8/8.13.8/Submit) with ESMTP id l63FLhqZ018573; Tue, 3 Jul 2007 17:21:43 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Tue, 3 Jul 2007 17:21:42 +0200 (CEST) From: Wojciech Puchar To: Frank Bonnet In-Reply-To: <46895359.4090503@esiee.fr> Message-ID: <20070703172039.J18529@wojtek.tensor.gdynia.pl> References: <46895359.4090503@esiee.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 15:21:50 -0000 > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > actually i just installed new system in subdirectory with usr/ports and after chown built everything from scratch, then just copied my configs in /etc, important things in var moved /home and kernel and moved everything to / :) From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:36:12 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1834A16A46B for ; Tue, 3 Jul 2007 15:36:12 +0000 (UTC) (envelope-from dave@raven.za.net) Received: from elektra.opteqint.net (elektra.opteqint.net [209.25.178.105]) by mx1.freebsd.org (Postfix) with ESMTP id 0208713C468 for ; Tue, 3 Jul 2007 15:36:11 +0000 (UTC) (envelope-from dave@raven.za.net) Received: from [41.242.12.201] (helo=DHA12123) by elektra.opteqint.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.66 (FreeBSD)) (envelope-from ) id 1I5k4Y-000Jxw-Cj for freebsd-questions@freebsd.org; Tue, 03 Jul 2007 08:13:48 -0700 From: "Dave Raven" To: Date: Tue, 3 Jul 2007 17:09:33 +0200 Message-ID: <010501c7bd84$2dc311c0$89493540$@za.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Ace9hClA3Q9/vVoXTu2u8kBQecQH0w== Content-Language: en-us Subject: 2TB (and above) Disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 15:36:12 -0000 Hi all, Firstly I am using FreeBSD 4, I know it's not supported but hopefully someone has some experience with large disks on 4. I have a box with 6x 500gig drives, configured in raid 5 which comes out around 2.3 terabytes of space. With that, the system picks up the drive (da0) as 0MB in size. I haven't been able to solve that, but took one drive out (moving it to 1.9gig) and it works fine... However, when I try to use /stand/sysinstall I get tons of drive geometry errors, and can't create more than a 1TB slice. If I use "A" to use whole disk, it goes through with a negative number but then the labeling part of the process gives a " paritions are larger than actual chunk " error. I then ran "dd if=/dev/zero of=/dev/da0 bs=1m count=1" and "disklabel -wr da0 auto". This seems to setup a working paritition table, but any attempts on the drive after that to do a newfs result in: "newfs preposterous size" and a negative number... Any ideas or is it even possible? Thanks in advance Dave From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:47:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74AC316A41F for ; Tue, 3 Jul 2007 15:47:36 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id 455B613C468 for ; Tue, 3 Jul 2007 15:47:36 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 616855D82; Tue, 3 Jul 2007 11:47:35 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nIh+jXQbpY6O; Tue, 3 Jul 2007 11:47:32 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 3C9FC5D41; Tue, 3 Jul 2007 11:47:32 -0400 (EDT) Message-ID: <468A6F8E.8030808@mac.com> Date: Tue, 03 Jul 2007 11:47:26 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Wojciech Puchar References: <20070701203720.X64116@wojtek.tensor.gdynia.pl> <46885761.9050302@mac.com> <20070703171849.R18529@wojtek.tensor.gdynia.pl> In-Reply-To: <20070703171849.R18529@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: large pages X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 15:47:36 -0000 Wojciech Puchar wrote: > how can i check in program that the region is mapped using huge pages? I am not entirely sure from within userland, but I believe the kernel boot messages will indicate the status of PAE. > i use mmap with address padded to 4M and mlock. Note that there is a separate tunable for the maximum # of pages that a process or user can lock down; you'll probably need to increate that value. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 15:59:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EBEEE16A41F for ; Tue, 3 Jul 2007 15:59:57 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id C166813C43E for ; Tue, 3 Jul 2007 15:59:57 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 4B99F5C9A; Tue, 3 Jul 2007 11:59:57 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YhIkXhIj07yj; Tue, 3 Jul 2007 11:59:54 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id 807E45EBD; Tue, 3 Jul 2007 11:59:54 -0400 (EDT) Message-ID: <468A7274.2040607@mac.com> Date: Tue, 03 Jul 2007 11:59:48 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Grant Peel References: <004b01c7bd7d$93802900$6501a8c0@GRANT> In-Reply-To: <004b01c7bd7d$93802900$6501a8c0@GRANT> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: MySQL Quotas X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 15:59:58 -0000 Grant Peel wrote: > I am posting this here thinking this may be more of an OS thing than a mysql thing... > > Since all mysql databases and tables need to be owned by the mysql user, is > there, er, has anyone figured out a way to impose disk quotas per database > for mysql? Databases tend to lose pending commits if they no longer can expand and use more space; most people do not attempt to use disk quotas with a database because new transactions are highly important. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 16:12:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380E716A468 for ; Tue, 3 Jul 2007 16:12:57 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from mh1.centtech.com (moat3.centtech.com [64.129.166.50]) by mx1.freebsd.org (Postfix) with ESMTP id F409B13C465 for ; Tue, 3 Jul 2007 16:12:56 +0000 (UTC) (envelope-from kramer@centtech.com) Received: from [10.177.171.221] (roddick.centtech.com [10.177.171.221]) by mh1.centtech.com (8.13.8/8.13.8) with ESMTP id l63GCaqi096612; Tue, 3 Jul 2007 11:12:38 -0500 (CDT) (envelope-from kramer@centtech.com) Message-ID: <468A7574.4000808@centtech.com> Date: Tue, 03 Jul 2007 11:12:36 -0500 From: Kevin Kramer User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: Pieter de Goeje References: <46851860.1030401@centtech.com> <1183133636.1511.66.camel@localhost> <468534BF.2060004@centtech.com> <200707030358.06347.pieter@degoeje.nl> In-Reply-To: <200707030358.06347.pieter@degoeje.nl> X-Virus-Scanned: ClamAV 0.88.4/3584/Tue Jul 3 02:44:39 2007 on mh1.centtech.com X-Virus-Status: Clean X-Spam-Status: No, score=-2.1 required=8.0 tests=AWL,BAYES_00,HTML_40_50, HTML_MESSAGE,HTML_TITLE_EMPTY autolearn=ham version=3.1.6 X-Spam-Checker-Version: SpamAssassin 3.1.6 (2006-10-03) on mh1.centtech.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Tom Evans , freebsd-questions@freebsd.org Subject: Re: 7-Current: turn off debugging (kqread?) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 16:12:57 -0000 thanks. I rebuild this morning with this and still no change. I can't even find any info on these flags... Pieter de Goeje wrote: > On Friday 29 June 2007, Kevin Kramer wrote: > >> yes. that is where I have started, but I cannot get buildkernel to build >> with those commented out. the UPDATING file also lists heavy debugging >> turned on in userland, which I can't track down to any config files. >> > Add CFLAGS+= -DMALLOC_PRODUCTION to make.conf and rebuild world (or just > libc). It boosted performance for my app (with a lot of embedded lua) by 20%. > > HTH, > Pieter de Goeje > _______________________________________________ > 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 Jul 3 16:19:21 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4056916A469 for ; Tue, 3 Jul 2007 16:19:21 +0000 (UTC) (envelope-from davemac11@yahoo.com) Received: from web32803.mail.mud.yahoo.com (web32803.mail.mud.yahoo.com [68.142.206.33]) by mx1.freebsd.org (Postfix) with SMTP id E184B13C43E for ; Tue, 3 Jul 2007 16:19:20 +0000 (UTC) (envelope-from davemac11@yahoo.com) Received: (qmail 80324 invoked by uid 60001); 3 Jul 2007 15:52:39 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=Ns38YikcHbULSqs/oI6oZBqxpuWjw9jHBX7L4gNXoMAYheL5ufrMIbZLhVFKrSuEpoUv7sKs8W7OF0NwY/VBl+2L9labpU/CPvAKX0YdWIoUqfSuuMsIKuyxWVwhAi1/XHU4wHzor5m6MDvkNhJ+Sf7vzZkePMlLd7mBNwpVcOU=; X-YMail-OSG: rMd17nsVM1kI46rKIbMpGzWvz9mT5Pc59pIEE0uER8zHyEyxuDmYxrKHCfGxySGYwGRIAYJ_PuSIDgW46kmglFhYsyjvfuYE1pmK_UBdjG9Wad1zwPPSsuydiL5EI3ri4QZQgbI6RROOPEAwaf8k5NWV Received: from [157.91.16.21] by web32803.mail.mud.yahoo.com via HTTP; Tue, 03 Jul 2007 08:52:39 PDT X-Mailer: YahooMailRC/651.38 YahooMailWebService/0.7.41.16 Date: Tue, 3 Jul 2007 08:52:39 -0700 (PDT) From: Dave McCammon To: questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ascii Message-ID: <531110.80275.qm@web32803.mail.mud.yahoo.com> Cc: Subject: if_bridge and ipfw X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 16:19:21 -0000 I can't seem to grasp why this is working differently. FreeBSD 6.2 using ipfw + if_bridge LAN -- em1(if_bridge + ipfw)em0 -- internet so I am at 10.10.16.6 and try to ping say www.yahoo.com in ruleset: 1100 allow icmp from any to 10.10.16.0/27{1-10,13,14,19,22,23} icmptypes 0,3,11,12,13,14 2100 allow ip from 10.10.16.0/27 to any in via em1 gets dropped by following rule as shown in logs: 4700 deny log ip from any to any Log entry: ipfw: 4700 Deny ICMP:8.0 10.10.16.6 69.147.114.210 out via em0 If I add this rule all works great: 2101 allow icmp from 10.10.16.6 to any icmptypes 8 My confusion is shouldn't the icmp be allowed in rule 2100? Or is it with if_bridge I have to make a rule for both interfaces. The rule "2100 allow ip from 10.10.16.0/27 to any in via em1" allowed the icmp passage, out of em0 through the bridge in 6.2 using bridge(4). This entire ruleset is the same with if_bridge as has been working with bridge(4). I just moved to if_bridge since the bridge(4) is obsolete. Thanks for your help. dave ____________________________________________________________________________________ Get the Yahoo! toolbar and be alerted to new email wherever you're surfing. http://new.toolbar.yahoo.com/toolbar/features/mail/index.php From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 16:33:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FD9916A421 for ; Tue, 3 Jul 2007 16:33:40 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from ayn.mi.celestial.com (hayek.celestial.com [192.136.111.12]) by mx1.freebsd.org (Postfix) with ESMTP id 1FA5A13C455 for ; Tue, 3 Jul 2007 16:33:39 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from localhost (localhost [127.0.0.1]) by ayn.mi.celestial.com (Postfix) with ESMTP id E6BC96854F081; Tue, 3 Jul 2007 09:36:10 -0700 (PDT) X-Virus-Scanned: amavisd-new at mi.celestial.com Received: from ayn.mi.celestial.com ([127.0.0.1]) by localhost (ayn.mi.celestial.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nZEr2d0lug2h; Tue, 3 Jul 2007 09:36:10 -0700 (PDT) Received: by ayn.mi.celestial.com (Postfix, from userid 203) id CB8926854F080; Tue, 3 Jul 2007 09:36:10 -0700 (PDT) Date: Tue, 3 Jul 2007 09:36:10 -0700 From: Bill Campbell To: freebsd-questions@freebsd.org Message-ID: <20070703163610.GA6012@ayn.mi.celestial.com> Mail-Followup-To: freebsd-questions@freebsd.org References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> User-Agent: Mutt/1.5.11 OpenPKG/2.5 Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@celestial.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 16:33:40 -0000 On Tue, Jul 03, 2007, Martin McCormick wrote: >Paul Chvostek writes: >> This is actually just the difference between sh and bash. You'll see >> the latter error if you type `a = 5` in bash in any OS. It just so >> happens that most Linux distributions don't have a real sh: > > I kind of thought that was the real issue. While >something like this is maybe slightly annoying at times, the >differences in, say, arithmetic handling and loops can sometimes >mean rewriting parts of shell scripts depending on whether it is >going to run in BSD or Linux. That's a major argument for doing things in python or perl as they are consistent across all platforms. While perl has a well deserved reputation for looking like modem noise, it's certainly no worse than shell scripts. Pure /bin/sh is very limited in its constructs compared to other shells such as ksh, bash, etc. Bill -- INTERNET: bill@Celestial.COM Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way FAX: (206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 Marijuana will be legal some day, because the many law students who now smoke pot will someday become congressmen and legalize it in order to protect themselves. -- Lenny Bruce From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 17:00:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C314216A473 for ; Tue, 3 Jul 2007 17:00:55 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 5771613C46E for ; Tue, 3 Jul 2007 17:00:55 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: by ug-out-1314.google.com with SMTP id o4so152382uge for ; Tue, 03 Jul 2007 10:00:54 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=iX2bJxGeC4P6xMnRYeVBICIfxb0MmEMoX9apwZoEnq+OfzK16k64/PKwm9hiL15vl3M8jHMuHHN4Wv+TjwQ7iHBsSgRYd12ZbqO4uVPljb1jGkelSwhDtxqISg7j9KOMQ7MbLcQvhWTDUQwq+rl4IKRWKfKg5dh6GC1nmSI1B3s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=REigjWKbjd9CDSrKKCfDCtXWzM9daofkOHEVW+MwYkukg12Y+ynE/x+rBXuCI0XCmaoNk90AoR4XKLmPgvNHzkVpLESpvb1O6w5eXkzZaDDS+FTAAR6n/ugqzwaWT4seHwZTcGtoJwDvgasp7WYucyd3TRT+8lET03de4IiHkWE= Received: by 10.82.136.4 with SMTP id j4mr15809117bud.1183482053600; Tue, 03 Jul 2007 10:00:53 -0700 (PDT) Received: from ?IPv6:::ffff:127.0.0.1%709431296? ( [217.206.187.79]) by mx.google.com with ESMTP id d23sm2569881nfh.2007.07.03.10.00.51 (version=SSLv3 cipher=RC4-MD5); Tue, 03 Jul 2007 10:00:52 -0700 (PDT) From: Tom Evans To: freebsd@celestial.com In-Reply-To: <20070703163610.GA6012@ayn.mi.celestial.com> References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Yvl+WPG0q36Rj68FF6Cj" Date: Tue, 03 Jul 2007 18:00:50 +0100 Message-Id: <1183482050.1213.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Cc: freebsd-questions@freebsd.org Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 17:00:55 -0000 --=-Yvl+WPG0q36Rj68FF6Cj Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2007-07-03 at 09:36 -0700, Bill Campbell wrote: > On Tue, Jul 03, 2007, Martin McCormick wrote: > >Paul Chvostek writes: > >> This is actually just the difference between sh and bash. You'll see > >> the latter error if you type `a =3D 5` in bash in any OS. It just so > >> happens that most Linux distributions don't have a real sh: > > > > I kind of thought that was the real issue. While > >something like this is maybe slightly annoying at times, the > >differences in, say, arithmetic handling and loops can sometimes > >mean rewriting parts of shell scripts depending on whether it is > >going to run in BSD or Linux. >=20 > That's a major argument for doing things in python or perl as > they are consistent across all platforms. While perl has a well > deserved reputation for looking like modem noise, it's certainly > no worse than shell scripts. >=20 > Pure /bin/sh is very limited in its constructs compared to other > shells such as ksh, bash, etc. >=20 > Bill > -- > INTERNET: bill@Celestial.COM Bill Campbell; Celestial Software LLC > URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way > FAX: (206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1= 676 >=20 > Marijuana will be legal some day, because the many law students > who now smoke pot will someday become congressmen and legalize > it in order to protect themselves. > -- Lenny Bruce sh should always be sh compatible on every platform (surprisingly). It may even be defined in one of the POSIX standards. This is why you write shell scripts in sh, even if you prefer csh, ksh or bash as your actual shell. Tom --=-Yvl+WPG0q36Rj68FF6Cj Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGioC+lcRvFfyds/cRAt4sAKCsdoNeiQNlUk0KFiWmEIWNlg0jWQCeIZma TJ+ejW28tS8Axw+veQx6KGM= =s6rD -----END PGP SIGNATURE----- --=-Yvl+WPG0q36Rj68FF6Cj-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 17:11:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A134916A41F for ; Tue, 3 Jul 2007 17:11:38 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 8097313C455 for ; Tue, 3 Jul 2007 17:11:38 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 83610 invoked from network); 3 Jul 2007 17:06:52 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 3 Jul 2007 17:06:52 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l63HBaNY036850 for ; Tue, 3 Jul 2007 11:11:36 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l63HBZR5036849 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 11:11:35 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Tue, 3 Jul 2007 11:11:35 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070703171135.GA36807@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> User-Agent: Mutt/1.4.2.2i Subject: Re: 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: Tue, 03 Jul 2007 17:11:38 -0000 On Mon, Jul 02, 2007 at 10:57:08PM -0500, Richard Lynch wrote: > > "Need" is relative, but personally, I stopped installing Flash even > operating systems where it actually sort of works, albeit sucking down > CPU and RAM like there's no tomorrow, and crashing on a semi-regular > basis... > > I found my surfing experience vastly improved without Flash. > > Formerly dog-slow sites are much faster. > > And there isn't any content I've felt deprived to not get. > > Obviously, folks who spend their free time (or work-time :-)) watching > youtube would feel differently, but... Actually, you don't need a Flash plugin for YouTube. Just install MPlayer with the win32-codecs port, and use youtube-dl (in the youtube_dl port, of course) to grab the video you want. The only reason I recently installed Flash was to make use of the Buell website (they make great motorcycles, but apparently have no idea how to make an accessible website). Of course, with the xpi-flashblock port installed, it's almost exactly like not having Flash installed at all, most of the time. I consider that a feature, of course. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Rudy Giuliani: "You have free speech so I can be heard." From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 18:10:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B915416A41F for ; Tue, 3 Jul 2007 18:10:44 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from mail.jellico.com (mail.jellico.com [207.191.185.6]) by mx1.freebsd.org (Postfix) with ESMTP id 7A8A213C483 for ; Tue, 3 Jul 2007 18:10:44 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from lisac (lisa.jellico.com [207.191.185.213]) (authenticated bits=0) by mail.jellico.com (8.12.6/8.12.6) with ESMTP id l63I9nIG010844 for ; Tue, 3 Jul 2007 14:09:49 -0400 Message-ID: <000301c7bd9d$72740630$d5b9bfcf@lisac> From: "Lisa Casey" To: Date: Tue, 3 Jul 2007 14:10:24 -0400 Organization: Netlink 2000, Inc. MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Scanned-By: MIMEDefang 2.48 on 127.0.0.1 Subject: Problem installing FreeBSD 5.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: Tue, 03 Jul 2007 18:10:44 -0000 Hi, I am attempting to install FreeBSD 5.3 (because that's the latest distro I have CD's for) on a brand new system with a 80 G harddrive and 2 G RAM. I boot from Disk 1 of the 5.3 disk set and choose to begin a standard installation. Next is the fdisk utility to partition the drive. The first thing I get is a message which states: WARNING: A geometry of 155061/16/63 for ad0 is incorrect. Using a more likely geometry. If this geometry is incorrect or if you are unsure whether or not it's correct, please consult the hardware guide in the documentation submenu or use the (G)eometry command to change it now. Even if I go to bios and use the values bios gives for the harddrive (38309/16/255) I still get the same message about incorrect geometry. I can choose OK and get past this. I choose to devote the entire disk to FreeBSD, and install the FreeBSD boot manager. Next I need to partition my drive. The defaults won't do at all (this machine is to be a radius server & mail server and the default size of /var is too small). I chose 2000M for /, 4000M for swap (using 2 x RAM), 200M for /tmp, 20,000M for /usr and the remainder for /var. Next I chose to install full sources, binaries & docs and to install the Ports collection. I chose to install from CD then hit OK to start copying files but I get this error: Unable to find device node for /dev/ad0s1b in /dev. The creation of file systems will be aborted. ad0s1b is my swap partition. I changed the size of swap to 2000M thinking perhaps it was too large but I get the same error about unable to find device node..... I've googled this but haven't found anything that helped me resolve this. Any body on this list know what I need to do to get FreeBSD installed on this drive? Thanks, Lisa Casey From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 18:44:39 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 780BE16A469 for ; Tue, 3 Jul 2007 18:44:39 +0000 (UTC) (envelope-from emss@free.fr) Received: from kellthuzad.dmz.nerim.net (smtp-dmz-232-tuesday.dmz.nerim.net [195.5.254.232]) by mx1.freebsd.org (Postfix) with ESMTP id E053513C48A for ; Tue, 3 Jul 2007 18:44:38 +0000 (UTC) (envelope-from emss@free.fr) Received: from kraid.nerim.net (smtp-102-tuesday.nerim.net [62.4.16.102]) by kellthuzad.dmz.nerim.net (Postfix) with ESMTP id 326FE14110 for ; Tue, 3 Jul 2007 20:14:28 +0200 (CEST) Received: from srvbsdnanssv.interne.kisoft-services.com (kisoft.net1.nerim.net [62.212.107.51]) by kraid.nerim.net (Postfix) with ESMTP id 9A2AACF0AE for ; Tue, 3 Jul 2007 20:14:33 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by srvbsdnanssv.interne.kisoft-services.com (Postfix) with ESMTP id 27EA2DCB4 for ; Tue, 3 Jul 2007 20:14:33 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.kisoft-services.com Received: from srvbsdnanssv.interne.kisoft-services.com ([127.0.0.1]) by localhost (srvbsdnanssv.interne.kisoft-services.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YAyGZ0lir0KP for ; Tue, 3 Jul 2007 20:14:25 +0200 (CEST) Received: by srvbsdnanssv.interne.kisoft-services.com (Postfix, from userid 1001) id 7EC02DCAA; Tue, 3 Jul 2007 20:14:25 +0200 (CEST) To: Mailing List FreeBSD Questions From: Eric Masson X-Operating-System: FreeBSD 6.2-RELEASE-p5 i386 Date: Tue, 03 Jul 2007 20:14:25 +0200 Message-ID: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: Subject: pam_ldap 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: Tue, 03 Jul 2007 18:44:39 -0000 --=-=-= Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit Hello, I'm trying to setup authentication via a ldap directory on a 6.2-p5 box. id queries regarding a ldap defined user using root or a local defined user work fine : admin@box:~> id testuser uid=2000(testuser) gid=2000(test) groups=2000(test) root@box:~> id testuser uid=2000(testuser) gid=2000(test) groups=2000(test) testuser can't log on the box (authentication failed). The following message pops on the console : Jul 3 19:08:03 box login: pam_ldap: error trying to bind as user "cn=testuser,ou=people,dc=interne,dc=example,dc=org" (Invalid credentials) Openldap logs an error 49 (see attached file). It seems that nss works but not pam. ldap related configuration follows : base dc=interne,dc=example,dc=org uri ldap://127.0.0.1:389/ logdir /var/log/ldap #debug 256 timeout 5 bind_timeout 5 bind_policy soft rootbinddn cn=Manager,dc=interne,dc=example,dc=org nss_base_passwd ou=people,dc=interne,dc=example,dc=org?one nss_base_group ou=groups,dc=interne,dc=example,dc=org?one include /usr/local/etc/openldap/schema/core.schema include /usr/local/etc/openldap/schema/cosine.schema include /usr/local/etc/openldap/schema/inetorgperson.schema include /usr/local/etc/openldap/schema/nis.schema include /usr/local/etc/openldap/schema/samba.schema pidfile /var/run/openldap/slapd.pid argsfile /var/run/openldap/slapd.args modulepath /usr/local/libexec/openldap moduleload back_bdb access to dn.base="" by self write by * auth access to attrs=userPassword by self write by * auth access to attrs=shadowLastChange by self write by * auth access to * by * read by anonymous auth schemacheck on idletimeout 30 backend bdb database bdb suffix "dc=interne, dc=example, dc=org" rootdn "cn=Manager, dc=interne, dc=example, dc=org" rootpw password checkpoint 1024 5 cachesize 10000 directory /var/db/openldap-data # Indices to maintain index objectClass eq index cn pres,sub,eq index sn pres,sub,eq index uid pres,sub,eq index displayName pres,sub,eq index uidNumber eq index gidNumber eq index memberUID eq index sambaSID eq index sambaPrimaryGroupSID eq index sambaDomainName eq index default sub # # $FreeBSD: src/etc/pam.d/system,v 1.1 2003/06/14 12:35:05 des Exp $ # # System-wide defaults # # auth auth sufficient pam_opie.so no_warn no_fake_prompts auth requisite pam_opieaccess.so no_warn allow_local #auth sufficient pam_krb5.so no_warn try_first_pass #auth sufficient pam_ssh.so no_warn try_first_pass auth sufficient /usr/local/lib/pam_ldap.so no_warn try_first_pass auth required pam_unix.so no_warn try_first_pass nullok # account #account required pam_krb5.so account required pam_login_access.so account required pam_unix.so # session #session optional pam_ssh.so session required pam_lastlog.so no_fail # password #password sufficient pam_krb5.so no_warn try_first_pass password required pam_unix.so no_warn try_first_pass group: files ldap group_compat: nis hosts: files dns networks: files passwd: files ldap passwd_compat: nis shells: files Directory has been initialized with the following ldif file dn: dc=interne,dc=example,dc=org dc: interne objectClass: top objectClass: domain objectClass: domainRelatedObject associatedDomain: interne.example.fr structuralObjectClass: domain dn: ou=groups,dc=interne,dc=example,dc=org objectClass: top objectClass: organizationalUnit ou: groups structuralObjectClass: organizationalUnit dn: ou=people,dc=interne,dc=example,dc=org objectClass: top objectClass: organizationalUnit ou: people structuralObjectClass: organizationalUnit dn: cn=testuser,ou=people,dc=interne,dc=example,dc=org cn: testuser sn: Dummy objectClass: top objectClass: person objectClass: posixAccount objectClass: shadowAccount uid: testuser userPassword: testuser uidNumber: 2000 gidNumber: 2000 gecos: Test User loginShell: /bin/csh homeDirectory: /home/test structuralObjectClass: person dn: cn=test,ou=groups,dc=interne,dc=example,dc=org objectClass: top objectClass: posixGroup cn: test gidNumber: 2000 memberUid: test structuralObjectClass: posixGroup This is driving me nuts. Has anyone an idea ? TIA Regards -- JMM> (padfonetik) sauf erreur de ma part, nous ne sommes pas sur IRC j'ai ma fiancée qui veut que j'évite d'écrire sur l'ordi alors je le fais en cachette ou en tous cas le plus rapidement possible -+- JC in www.le-gnu.net : Trop au lit pour être au net -+- --=-=-= Content-Disposition: attachment; filename=ldap.log Jul 3 19:01:00 box slapd[1414]: slapd starting Jul 3 19:01:05 box slapd[1414]: conn=0 fd=11 ACCEPT from IP=127.0.0.1:50293 (IP=0.0.0.0:389) Jul 3 19:01:05 box slapd[1414]: conn=0 op=0 BIND dn="" method=128 Jul 3 19:01:05 box slapd[1414]: conn=0 op=0 RESULT tag=97 err=0 text= Jul 3 19:01:05 box slapd[1414]: conn=0 op=1 SRCH base="ou=People,dc=interne,dc=example,dc=org" scope=1 deref=0 filter="(&(objectClass=posixAccount)(uid=testuser))" Jul 3 19:01:05 box slapd[1414]: conn=0 op=1 SRCH attr=uid userPassword uidNumber gidNumber cn homeDirectory loginShell gecos description objectClass shadowLastChange shadowMax shadowExpire Jul 3 19:01:05 box slapd[1414]: conn=0 op=1 SEARCH RESULT tag=101 err=0 nentries=1 text= Jul 3 19:01:05 box slapd[1414]: conn=0 op=2 SRCH base="ou=People,dc=interne,dc=example,dc=org" scope=1 deref=0 filter="(&(objectClass=posixAccount)(uid=testuser))" Jul 3 19:01:05 box slapd[1414]: conn=0 op=2 SRCH attr=uid userPassword uidNumber gidNumber cn homeDirectory loginShell gecos description objectClass shadowLastChange shadowMax shadowExpire Jul 3 19:01:05 box slapd[1414]: conn=0 op=2 SEARCH RESULT tag=101 err=0 nentries=1 text= Jul 3 19:01:05 box slapd[1414]: conn=0 op=3 SRCH base="ou=People,dc=interne,dc=example,dc=org" scope=1 deref=0 filter="(&(objectClass=posixAccount)(uid=testuser))" Jul 3 19:01:05 box slapd[1414]: conn=0 op=3 SRCH attr=uid userPassword uidNumber gidNumber cn homeDirectory loginShell gecos description objectClass shadowLastChange shadowMax shadowExpire Jul 3 19:01:05 box slapd[1414]: conn=0 op=3 SEARCH RESULT tag=101 err=0 nentries=1 text= Jul 3 19:01:05 box slapd[1414]: conn=1 fd=14 ACCEPT from IP=127.0.0.1:62723 (IP=0.0.0.0:389) Jul 3 19:01:05 box slapd[1414]: conn=1 op=0 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" method=128 Jul 3 19:01:05 box slapd[1414]: conn=1 op=0 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" mech=SIMPLE ssf=0 Jul 3 19:01:05 box slapd[1414]: conn=1 op=0 RESULT tag=97 err=0 text= Jul 3 19:01:05 box slapd[1414]: conn=1 op=1 SRCH base="ou=People,dc=interne,dc=example,dc=org" scope=1 deref=0 filter="(uid=testuser)" Jul 3 19:01:05 box slapd[1414]: conn=1 op=1 SEARCH RESULT tag=101 err=0 nentries=1 text= Jul 3 19:01:05 box slapd[1414]: conn=1 op=2 BIND anonymous mech=implicit ssf=0 Jul 3 19:01:05 box slapd[1414]: conn=1 op=2 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" method=128 Jul 3 19:01:05 box slapd[1414]: conn=1 op=2 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" mech=SIMPLE ssf=0 Jul 3 19:01:05 box slapd[1414]: conn=1 op=2 RESULT tag=97 err=0 text= Jul 3 19:01:06 box slapd[1414]: conn=1 op=3 BIND anonymous mech=implicit ssf=0 Jul 3 19:01:06 box slapd[1414]: conn=1 op=3 BIND dn="cn=testuser,ou=people,dc=interne,dc=example,dc=org" method=128 Jul 3 19:01:06 box slapd[1414]: conn=1 op=3 RESULT tag=97 err=49 text= Jul 3 19:01:06 box slapd[1414]: conn=1 op=4 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" method=128 Jul 3 19:01:06 box slapd[1414]: conn=1 op=4 BIND dn="cn=Manager,dc=interne,dc=example,dc=org" mech=SIMPLE ssf=0 Jul 3 19:01:06 box slapd[1414]: conn=1 op=4 RESULT tag=97 err=0 text= Jul 3 19:01:06 box slapd[1414]: conn=0 op=4 SRCH base="ou=People,dc=interne,dc=example,dc=org" scope=1 deref=0 filter="(&(objectClass=posixAccount)(uid=testuser))" Jul 3 19:01:06 box slapd[1414]: conn=0 op=4 SRCH attr=uid userPassword uidNumber gidNumber cn homeDirectory loginShell gecos description objectClass shadowLastChange shadowMax shadowExpire Jul 3 19:01:06 box slapd[1414]: conn=0 op=4 SEARCH RESULT tag=101 err=0 nentries=1 text= Jul 3 19:01:06 box slapd[1414]: conn=1 op=5 UNBIND Jul 3 19:01:06 box slapd[1414]: conn=1 fd=14 closed Jul 3 19:01:44 box slapd[1414]: conn=0 fd=11 closed (idletimeout) --=-=-=-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 18:51:55 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0228C16A46B for ; Tue, 3 Jul 2007 18:51:55 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (bewilderbeast.blackhelicopters.org [198.22.63.8]) by mx1.freebsd.org (Postfix) with ESMTP id BDCE413C4D3 for ; Tue, 3 Jul 2007 18:51:54 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (localhost [127.0.0.1]) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8) with ESMTP id l63IZGfa071003 for ; Tue, 3 Jul 2007 14:35:16 -0400 (EDT) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: (from mwlucas@localhost) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8/Submit) id l63IZGq6071002 for questions@freebsd.org; Tue, 3 Jul 2007 14:35:16 -0400 (EDT) (envelope-from mwlucas) Date: Tue, 3 Jul 2007 14:35:16 -0400 From: "Michael W. Lucas" To: questions@freebsd.org Message-ID: <20070703183516.GA70961@bewilderbeast.blackhelicopters.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (bewilderbeast.blackhelicopters.org [127.0.0.1]); Tue, 03 Jul 2007 14:35:16 -0400 (EDT) Cc: Subject: if_lagg(4) and rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 18:51:55 -0000 Hi, I'm trying to configure a lagg(4) interface out of rc.conf. FreeBSD doesn't want to initialize the interface at boot. I'm obviously missing some little thing. I'm successfully loading if_lagg into the kernel, so that's not the problem. I can configure the interface at the command line if I do a "ifconfig lagg0 create" and then enter the configuration, but there doesn't seem to be a rc.conf flag to tell the system to create an interface? Here's my rc.conf for these interfaces: ifconfig_em3="up" ifconfig_em7="up" ifconfig_lagg0="laggproto lacp laggport em3 laggport em7 10.184.1.19 netmask 0xffff0000" Any suggestions? Thanks, ==ml -- Michael W. Lucas mwlucas@BlackHelicopters.org, mwlucas@FreeBSD.org http://www.BlackHelicopters.org/~mwlucas/ Coming Soon: "Absolute FreeBSD" -- http://www.AbsoluteFreeBSD.com On 5/4/2007, the TSA kept 3 pairs of my soiled undies "for security reasons." From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 18:53:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90F2B16A41F for ; Tue, 3 Jul 2007 18:53:54 +0000 (UTC) (envelope-from erik@cepheid.org) Received: from mail.cepheid.org (wintermute.cepheid.org [64.92.165.98]) by mx1.freebsd.org (Postfix) with ESMTP id CD33C13C4BB for ; Tue, 3 Jul 2007 18:53:54 +0000 (UTC) (envelope-from erik@cepheid.org) Received: by mail.cepheid.org (Postfix, from userid 1006) id BFBC0170CE; Tue, 3 Jul 2007 13:36:07 -0500 (CDT) Date: Tue, 3 Jul 2007 13:36:07 -0500 From: Erik Osterholm To: RW Message-ID: <20070703183607.GA10612@idoru.cepheid.org> Mail-Followup-To: Erik Osterholm , RW , freebsd-questions@freebsd.org References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <3507.24.1.37.132.1183435028.squirrel@www.l-i-e.com> <20070703081111.B306.GERARD-SEIBERT@seibercom.net> <20070703144558.36f87262@gumby.homeunix.com.> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070703144558.36f87262@gumby.homeunix.com.> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: 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: Tue, 03 Jul 2007 18:53:56 -0000 On Tue, Jul 03, 2007 at 02:45:58PM +0100, RW wrote: > Can anyone comment on how well Flash9 works in a real Linux > distribution? > > In particular does it have the problem where the flash item turns > into a blank box after a few seconds. If that problem exists in Linux > there's a decent chance it will get fixed by Adobe. I get this occasionally, usually when I have multiple tabs open with Flash items on each page. Of course, I usually run Firefox with Flash Block, so I don't tend to see this frequently in that browser--only when I forget to close tabs when I'm done with them. In Opera, it's much more common, because I don't have that plugin. Erik From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:01:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6863516A46C for ; Tue, 3 Jul 2007 19:01:40 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.freebsd.org (Postfix) with ESMTP id 1D1FF13C48C for ; Tue, 3 Jul 2007 19:01:39 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from localhost (localhost [127.0.0.1]) by pi.codefab.com (Postfix) with ESMTP id 6F6ED5F87; Tue, 3 Jul 2007 15:01:39 -0400 (EDT) X-Virus-Scanned: amavisd-new at codefab.com Received: from pi.codefab.com ([127.0.0.1]) by localhost (pi.codefab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bF-7exPpfhbI; Tue, 3 Jul 2007 15:01:37 -0400 (EDT) Received: from [192.168.1.130] (pool-96-224-41-41.nycmny.east.verizon.net [96.224.41.41]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pi.codefab.com (Postfix) with ESMTP id CFEC75EB8; Tue, 3 Jul 2007 15:01:36 -0400 (EDT) Message-ID: <468A9D0C.5040001@mac.com> Date: Tue, 03 Jul 2007 15:01:32 -0400 From: Chuck Swiger User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Lisa Casey References: <000301c7bd9d$72740630$d5b9bfcf@lisac> In-Reply-To: <000301c7bd9d$72740630$d5b9bfcf@lisac> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Problem installing FreeBSD 5.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: Tue, 03 Jul 2007 19:01:40 -0000 Hello-- Lisa Casey wrote: > I am attempting to install FreeBSD 5.3 (because that's the latest distro > I have CD's for) on a brand new system with a 80 G harddrive and 2 G RAM. If you're having problems with 5.3, it might be better to try 6.2 or maybe 5.5 than to spend too much time playing with a version that you're going to have to update immediately before using, anyway. Note that you can simply burn a new FreeBSD image from the ones on ftp.freebsd.org or the mirrors mentioned in the fine manual... :-) > I boot from Disk 1 of the 5.3 disk set and choose to begin a standard > installation. Next is the fdisk utility to partition the drive. The > first thing I get is a message which states: > > WARNING: A geometry of 155061/16/63 for ad0 is incorrect. Using a more > likely geometry. If this geometry is incorrect or if you are unsure > whether or not it's correct, please consult the hardware guide in the > documentation submenu or use the (G)eometry command to change it now. > > Even if I go to bios and use the values bios gives for the harddrive > (38309/16/255) I still get the same message about incorrect geometry. You might try updating your machine's BIOS, if anything is available, and you might try entering the disk configuration settings and try to make sure the BIOS is set to LBA mode rather than C/H/S or some manual geometry. Usually the default/auto setting ends up in LBA mode, anyway, unless your BIOS is old or flaky. > I can choose OK and get past this. I choose to devote the entire disk > to FreeBSD, and install the FreeBSD boot manager. Next I need to > partition my drive. The defaults won't do at all (this machine is to be > a radius server & mail server and the default size of /var is too > small). I chose 2000M for /, 4000M for swap (using 2 x RAM), 200M for > /tmp, 20,000M for /usr and the remainder for /var. > > Next I chose to install full sources, binaries & docs and to install the > Ports collection. > > I chose to install from CD then hit OK to start copying files but I get > this error: > > Unable to find device node for /dev/ad0s1b in /dev. The creation of file > systems will be aborted. > > ad0s1b is my swap partition. I changed the size of swap to 2000M > thinking perhaps it was too large but I get the same error about unable > to find device node..... This implies a problem writing out the partition table. Make sure the IDE cables are OK and that the disk drive and CD-ROM drive have the IDE master/slave setting jumpers properly configured. You might have a BIOS setting about "boot sector virus protection"; if so, turn that off or your BIOS might have prevented FreeBSD from writing the bootstrap info/MBR out to disk. You might also try using a DOS or Windows version of FDISK to create a small bootable partition (a Win 98/ME recovery floppy works good for this), and see whether that is bootable. If it is, then try installing FreeBSD to the remainder of the disk space. -- -Chuck From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:03:41 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D7AF16A421 for ; Tue, 3 Jul 2007 19:03:41 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr2.xs4all.nl (smtp-vbr2.xs4all.nl [194.109.24.22]) by mx1.freebsd.org (Postfix) with ESMTP id F03C313C45A for ; Tue, 3 Jul 2007 19:03:40 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr2.xs4all.nl (8.13.8/8.13.8) with ESMTP id l63J3c8a014227; Tue, 3 Jul 2007 21:03:39 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 944DBB82A; Tue, 3 Jul 2007 21:03:38 +0200 (CEST) Date: Tue, 3 Jul 2007 21:03:38 +0200 From: Roland Smith To: Lisa Casey Message-ID: <20070703190338.GA50127@slackbox.xs4all.nl> Mail-Followup-To: Lisa Casey , freebsd-questions@freebsd.org References: <000301c7bd9d$72740630$d5b9bfcf@lisac> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline In-Reply-To: <000301c7bd9d$72740630$d5b9bfcf@lisac> 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.16 (2007-06-09) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: Problem installing FreeBSD 5.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: Tue, 03 Jul 2007 19:03:41 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jul 03, 2007 at 02:10:24PM -0400, Lisa Casey wrote: > Hi, >=20 > I am attempting to install FreeBSD 5.3 (because that's the latest distro = I=20 > have CD's for) on a brand new system with a 80 G harddrive and 2 G RAM. Since 5.3 is no supported anymore, I suggest that you download 6.2 images. =20 > I boot from Disk 1 of the 5.3 disk set and choose to begin a standard=20 > installation. Next is the fdisk utility to partition the drive. The first= =20 > thing I get is a message which states: >=20 > WARNING: A geometry of 155061/16/63 for ad0 is incorrect. Using a more=20 > likely geometry. If this geometry is incorrect or if you are unsure wheth= er=20 > or not it's correct, please consult the hardware guide in the documentati= on=20 > submenu or use the (G)eometry command to change it now. I've ignored this every time I saw it without adverse results. > I can choose OK and get past this. I choose to devote the entire disk to= =20 > FreeBSD, and install the FreeBSD boot manager. Next I need to partition m= y=20 > drive. The defaults won't do at all (this machine is to be a radius serv= er=20 > & mail server and the default size of /var is too small). I chose 2000M f= or=20 > /, 4000M for swap (using 2 x RAM), 200M for /tmp, 20,000M for /usr and th= e=20 > remainder for /var. 2000M for / is quite a lot. On my system, root gets 200M. It only uses about 90M currently. =20 > Unable to find device node for /dev/ad0s1b in /dev. The creation of file= =20 > systems will be aborted. >=20 > ad0s1b is my swap partition. I changed the size of swap to 2000M thinking= =20 > perhaps it was too large but I get the same error about unable to find=20 > device node..... >=20 > I've googled this but haven't found anything that helped me resolve this.= =20 > Any body on this list know what I need to do to get FreeBSD installed on= =20 > this drive? If it still fails the same way with 6.2, I'd submit a problem report. 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) --EVF5PPMfhYS0aIcm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGip2KEnfvsMMhpyURAjEgAKCADMexeueTvdlYSdprb0Qv0V1yAwCdEDlV Zavp8Y6+O5PoF1PX45OeDQc= =q+g+ -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:10:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 970A716A400 for ; Tue, 3 Jul 2007 19:10:50 +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 7ADB413C489 for ; Tue, 3 Jul 2007 19:10:50 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l63JAUpT065322; Tue, 3 Jul 2007 15:10:31 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Tue, 3 Jul 2007 15:10:05 -0400 User-Agent: KMail/1.9.6 References: <20070703183516.GA70961@bewilderbeast.blackhelicopters.org> In-Reply-To: <20070703183516.GA70961@bewilderbeast.blackhelicopters.org> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707031510.05713.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: "Michael W. Lucas" Subject: Re: if_lagg(4) and rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 19:10:50 -0000 On Tuesday 03 July 2007 02:35:16 pm Michael W. Lucas wrote: > I'm trying to configure a lagg(4) interface out of rc.conf. FreeBSD > doesn't want to initialize the interface at boot. I'm obviously > missing some little thing. I'm successfully loading if_lagg into the > kernel, so that's not the problem. > > I can configure the interface at the command line if I do a "ifconfig > lagg0 create" and then enter the configuration, but there doesn't seem > to be a rc.conf flag to tell the system to create an interface? > > Here's my rc.conf for these interfaces: > > ifconfig_em3="up" > ifconfig_em7="up" > ifconfig_lagg0="laggproto lacp laggport em3 laggport em7 10.184.1.19 > netmask 0xffff0000" I haven't played with if_lagg yet, but you should be able to use the cloned_interfaces knob in /etc/rc.conf to create the interface. e.g.: cloned_interfaces="lagg0" ifconfig_em3="up" ifconfig_em7="up" ifconfig_lagg0="laggproto lacp laggport em3 laggport em7 10.184.1.19 \ netmask 0xffff0000" if_lagg(4) mentions this briefly (at the end before the examples), and if_bridge(4) has a pretty good example (you'd substitute lagg for bridge, of course). JN From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:10:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B6AF316A47F for ; Tue, 3 Jul 2007 19:10:55 +0000 (UTC) (envelope-from epf1@cec.wustl.edu) Received: from express.cec.wustl.edu (express.cec.wustl.edu [128.252.21.16]) by mx1.freebsd.org (Postfix) with ESMTP id 7FCE613C457 for ; Tue, 3 Jul 2007 19:10:55 +0000 (UTC) (envelope-from epf1@cec.wustl.edu) Received: from hive.cec.wustl.edu (hive.cec.wustl.edu [128.252.21.14]) by express.cec.wustl.edu (8.13.6/8.12.5) with ESMTP id l63Is9Fe010859 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 3 Jul 2007 13:54:09 -0500 (CDT) Received: from hive.cec.wustl.edu (localhost.localdomain [127.0.0.1]) by hive.cec.wustl.edu (8.13.1/8.13.1) with ESMTP id l63Is98a008658 for ; Tue, 3 Jul 2007 13:54:09 -0500 Received: (from nobody@localhost) by hive.cec.wustl.edu (8.13.1/8.13.1/Submit) id l63Is9DO008657; Tue, 3 Jul 2007 13:54:09 -0500 X-Authentication-Warning: hive.cec.wustl.edu: nobody set sender to epf1@cec.wustl.edu using -f Received: from 209.145.181.6 (SquirrelMail authenticated user epf1) by hive.cec.wustl.edu with HTTP; Tue, 3 Jul 2007 13:54:09 -0500 (CDT) Message-ID: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> Date: Tue, 3 Jul 2007 13:54:09 -0500 (CDT) From: epf1@cec.wustl.edu To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.8-4.el4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: can't build /graphics/poppler-qt after recent cvsup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 19:10:55 -0000 Hi all, I'm having an odd proble getting poppler-qt to build after my latest cvsup. I use portmanager to update my ports and when I ran it today I got the following failure as the poppler-qt port was doing it's configure: ---Snip------ checking for ftell64... no checking for inflate in -lz... yes checking zlib.h usability... yes checking zlib.h presence... yes checking for zlib.h... yes checking for libjpeg6b... no checking for libjpeg... -ljpeg checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for FREETYPE... yes checking for FONTCONFIG... yes checking for CAIRO... yes checking for POPPLER_GLIB... yes checking for glib-mkenums... /usr/local/bin/glib-mkenums checking for Qt headers... /usr/local/include checking for Qt libraries... /usr/local/lib test: xyes: unexpected operator configure: error: Qt development libraries not found See `config.log' for more details. ===> Script "configure" failed unexpectedly. Please run the gnomelogalyzer, available from "http://www.freebsd.org/gnome/gnomelogalyzer.sh", which will diagnose the ----Snip---- I rebuilt & reinstalled Qt to insure that it was reinstalled properly but that had no effect. Please advise! -Will From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 19:52:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEF4A16A47F for ; Tue, 3 Jul 2007 19:52:48 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.freebsd.org (Postfix) with ESMTP id 87CAB13C4C2 for ; Tue, 3 Jul 2007 19:52:47 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.1/8.13.8) id l63JqMCC095427; Tue, 3 Jul 2007 14:52:22 -0500 (CDT) (envelope-from dan) Date: Tue, 3 Jul 2007 14:52:22 -0500 From: Dan Nelson To: epf1@cec.wustl.edu Message-ID: <20070703195222.GB1289@dan.emsphone.com> References: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> X-OS: FreeBSD 7.0-CURRENT User-Agent: Mutt/1.5.15 (2007-04-06) Cc: freebsd-questions@freebsd.org Subject: Re: can't build /graphics/poppler-qt after recent cvsup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 19:52:49 -0000 In the last episode (Jul 03), epf1@cec.wustl.edu said: > > Hi all, > > I'm having an odd proble getting poppler-qt to build after my latest cvsup. > > I use portmanager to update my ports and when I ran it today I got the > following failure as the poppler-qt port was doing it's configure: > > ---Snip------ > checking for Qt headers... /usr/local/include > checking for Qt libraries... /usr/local/lib > test: xyes: unexpected operator > configure: error: Qt development libraries not found It looks like QT's autoconf test is buggy. work/poppler-0.5.4/configure script, line 25757: if test "x$have_qt4" == "xyes"; then "==" is not a valid comparison operator for the test command. It must be "=". -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 20:10:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F8EF16A41F for ; Tue, 3 Jul 2007 20:10:07 +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 0204813C457 for ; Tue, 3 Jul 2007 20:10:06 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l63KA2pT093361; Tue, 3 Jul 2007 16:10:03 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Tue, 3 Jul 2007 16:09:37 -0400 User-Agent: KMail/1.9.6 References: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> <20070703195222.GB1289@dan.emsphone.com> In-Reply-To: <20070703195222.GB1289@dan.emsphone.com> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707031609.37422.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: gnome@freebsd.org, epf1@cec.wustl.edu, Dan Nelson Subject: Re: can't build /graphics/poppler-qt after recent cvsup X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 20:10:07 -0000 [cc-ing gnome@ as port maintainer] On Tuesday 03 July 2007 03:52:22 pm Dan Nelson wrote: > In the last episode (Jul 03), epf1@cec.wustl.edu said: > > I'm having an odd proble getting poppler-qt to build after my latest > > cvsup. > > > > I use portmanager to update my ports and when I ran it today I got the > > following failure as the poppler-qt port was doing it's configure: > > > > ---Snip------ > > checking for Qt headers... /usr/local/include > > checking for Qt libraries... /usr/local/lib > > test: xyes: unexpected operator > > configure: error: Qt development libraries not found > > It looks like QT's autoconf test is buggy. > work/poppler-0.5.4/configure script, line 25757: > > if test "x$have_qt4" == "xyes"; then > > "==" is not a valid comparison operator for the test command. It must > be "=". I was having the same problem as the OP. After Dan's post I did a "make patch", then modified the configure script replacing two instances of == with = on these two lines: 25851:if test "x$have_qt" == "xyes"; then 26033:if test "x$have_qt" == "xyes"; then After that I was able to make and install the port. gnome@ folks, should I submit a PR or will you guys just take this upstream directly? JN From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 20:42:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D510516A469 for ; Tue, 3 Jul 2007 20:42:27 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.234]) by mx1.freebsd.org (Postfix) with ESMTP id 95ED813C480 for ; Tue, 3 Jul 2007 20:42:27 +0000 (UTC) (envelope-from saltmiser@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so1146190nzf for ; Tue, 03 Jul 2007 13:42:26 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Zv6FCn1yVk3M7r8A9bnjYUbVVRbpQe9m1jQG6f33y9zzt8CUWXGeueGqPUQ5BYCppvqdepiAzs90FZOUEi73G6iKv1r30M+w3eJo6AKL6goeayOdbgBbLB/wZM3+fQGXcrSrBca2pKXnRUB3K+xi5LxeFgywMEBa/gruMm8tW7Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=m2HOfBNUplH6ZL5R+20gFIDuU2rsyeFeSUAG84vTYwd2nT2g5BHqJlk8JZb+UWPwwcCRr+L74okUDlkhFNFHlb3xytWn2KcjVrlVg+NBPRHloLT33odrBLpZbHaPlv0/FWJc9OXx+pQTQSrGXYLWuRR/AnqZDW1YFcLE/qm+ils= Received: by 10.65.23.7 with SMTP id a7mr11747422qbj.1183495346749; Tue, 03 Jul 2007 13:42:26 -0700 (PDT) Received: by 10.65.239.1 with HTTP; Tue, 3 Jul 2007 13:42:26 -0700 (PDT) Message-ID: <37f72b1f0707031342v3dbd541y27419e5a9804dcd4@mail.gmail.com> Date: Tue, 3 Jul 2007 16:42:26 -0400 From: "Jim Capozzoli" To: freebsd-questions@freebsd.org In-Reply-To: <46895359.4090503@esiee.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46895359.4090503@esiee.fr> Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 20:42:27 -0000 On 7/2/07, Frank Bonnet wrote: > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > > Thanks a lot for any help > > Frank > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > I wasn't in the mood for screwing around, so I just rebuilt everything on my system after grabbing a ports tree with 7.2 in it. pkg_delete -af cd /usr/ports/ports-mgmt/portupgrade && make install clean portupgrade -N x11/xorg x11/kde3 ... Probably the least efficient way, but it got the job done. ;) -- Jim Capozzoli D6499626857801B6065013E3645A6B75 From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 21:01:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB11616A421 for ; Tue, 3 Jul 2007 21:01:05 +0000 (UTC) (envelope-from pergesu@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 3398613C4C2 for ; Tue, 3 Jul 2007 21:01:04 +0000 (UTC) (envelope-from pergesu@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so199881uge for ; Tue, 03 Jul 2007 14:01:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=bsysx6EqqicWfx3y2kCGGhfChjH3fehwjF8ifcGxujgmiRmekJ43jGimUbeSu1TYszGUwGPXsM6nu5J1cn88dKO3+s/igq39qr/jxGMb3wc8i/1aqbOLQVKTM5mSh8lVsAXh2yMbcAYVtXdwJYxYmyD1J5O6lc0lea3yhay4k+I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=oR8Y/oxxjmujzLXXJyGpgtlejaVT3V3r7IwFJoyw6xvRsUStqKvAhwGzw5dktUEKm4mdg57T4Im+5Czjgy3TSdThZciL6S8/+/oUkE4wav1HqT3/+yEiIvXqt3ZzwmFtIuOcLz+1CWw95+SnvrTJjx3cYJu//yh+81sctqM+Xg0= Received: by 10.78.131.8 with SMTP id e8mr3790117hud.1183494837996; Tue, 03 Jul 2007 13:33:57 -0700 (PDT) Received: by 10.78.200.15 with HTTP; Tue, 3 Jul 2007 13:33:57 -0700 (PDT) Message-ID: <810a540e0707031333s46118166nbeb33b871938fa2c@mail.gmail.com> Date: Tue, 3 Jul 2007 14:33:57 -0600 From: "Pat Maddox" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Losing connections/performance with PF turned on X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 21:01:05 -0000 We're doing some stress testing on our server, and noticed that when we turn PF on, we lose connections and have a drastic reduction in performance. We used SIEGE for 120 seconds, 50 connections, on req/conn Firewall On: Num Users: 50 Availability: 97.23 % Transaction rate: 58.02 trans/sec Concurrency: 3.80 Successful: 6994 Failed: 198 Longest Req: 9.06s Firewall Off: Num Users: 50 Availability: 100 % Transaction rate: 94.62 trans/sec Concurrency: 1.76 Successful: 11342 Failed: 0 Longest Req: 0.51s You'll notice that with the firewall off, we don't lose any connections. We also have a 60% increase in tx/sec, and the longest request takes 1/20 of the time. I'm including my complete pf.conf file in the hopes that something will jump out at someone. Thanks, Pat # ------- pf.conf skeleton for server # # --------------- MACRO Section ----------------- EXT_IF="em0" PING = "echoreq" # --- allowed incoming services initiated by clients TCP_IN = "{ http, 8080, nrpe }" #UDP_IN = "{ }" SSH_IN = "{ xxx.xxx.xxx.xxx }" # --- allowed services initiated by server TCP_OUT = "{ ssh, smtp, domain, ntp, 3690, 2222, http, ftp, 29125 }" UDP_OUT = "{ domain, ntp }" ORIGINS = "{ xxx.xxx.xxx.xxx }" # ------------------ TABLE Section -------------- # ------------------ OPTIONS Section set loginterface $EXT_IF set block-policy return # --------- TRAFFIC NORMALIZATION ---------------- scrub in all antispoof for $EXT_IF # ---------- TRANSLATION Section (NAT/RDR) # ---------- FILTER section # --- DEFAULT POLICY block log all # --- LOOPBACK pass quick on lo0 all # --- BRUTE FORCE TABLE table persist block quick from # ======================= INCOMING ================ # ----------- EXTERNAL INTERFACE # --- TCP pass in quick on $EXT_IF inet proto tcp from any to $EXT_IF port $TCP_IN flags S/SA keep state # Allow postgres connection from db server pass in quick on $EXT_IF inet proto tcp from xxx.xxx.xxx.xxx to $EXT_IF port 5432 flags S/SA keep state # --- SSH with brute force blocking pass in quick on $EXT_IF inet proto { tcp, udp } from any to $SSH_IN port ssh flags S/SA keep state (max-src-conn 25, max-src-conn-rate 5/3, overload flush global) # --- UDP #pass in quick on $EXT_IF inet proto udp from any to $EXT_IF port $UDP_IN keep state # --- ICMP pass in quick on $EXT_IF inet proto icmp from any to $EXT_IF icmp-type $PING keep state # ======================= OUTGOING ================ # ----------- EXTERNAL INTERFACE # --- TCP pass out quick on $EXT_IF inet proto tcp from $EXT_IF to any port $TCP_OUT flags S/SA keep state # Allow postgres connection to db server pass out quick on $EXT_IF inet proto tcp from $EXT_IF to xxx.xxx.xxx.xxx port 5432 flags S/SA keep state # Allow any connection to uploaders pass out quick on $EXT_IF inet proto tcp from $EXT_IF to $ORIGINS flags S/SA keep state # --- UDP pass out quick on $EXT_IF inet proto udp from $EXT_IF to any port $UDP_OUT keep state # --- ICMP pass out quick on $EXT_IF inet proto icmp from $EXT_IF to any icmp-type $PING keep state # ----------------- end of pf.conf From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 21:03:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9C0E16A468 for ; Tue, 3 Jul 2007 21:03:10 +0000 (UTC) (envelope-from pergesu@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 8B8C013C4B7 for ; Tue, 3 Jul 2007 21:03:10 +0000 (UTC) (envelope-from pergesu@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so3942380pyb for ; Tue, 03 Jul 2007 14:03:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=aTWV1CP1DGsmLApdb3HFjt4tWs0VYOyVGpUpTpUh239GRL23abC1n0F6CmqPVL4sXkAu5gzhUwXRtwoQPae+M6b8Jw4Qdf8LcRsrZLrv3FJgP5J78yT4qUpU4gVUkx2fx/Bn1ZJVUeNVeK1q0vJg7ShfiCQh38VTpj/RrzloSqY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=L9bEc0svOXZ/CpK/gV1Oy/hw9D2Sd3V7Jjxih6LmvUz8YwqJT/uTraNNQUapPyPKcXaKQFxHL1WDOSRqU4dcLrDE6UC897dr9ENd2xxR6RgzGwU9pkpkUGBO5NQFY41mZn/e0Kz4cwJO00lWHstcQVX4yzFPGiL2EsI2D5kqfxE= Received: by 10.78.132.2 with SMTP id f2mr3793077hud.1183494839985; Tue, 03 Jul 2007 13:33:59 -0700 (PDT) Received: by 10.78.200.15 with HTTP; Tue, 3 Jul 2007 13:33:59 -0700 (PDT) Message-ID: <810a540e0707031333m1f3ca4d9l64e813c069af7aef@mail.gmail.com> Date: Tue, 3 Jul 2007 14:33:59 -0600 From: "Pat Maddox" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Losing connections/performance with PF turned on X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 21:03:10 -0000 We're doing some stress testing on our server, and noticed that when we turn PF on, we lose connections and have a drastic reduction in performance. We used SIEGE for 120 seconds, 50 connections, on req/conn Firewall On: Num Users: 50 Availability: 97.23 % Transaction rate: 58.02 trans/sec Concurrency: 3.80 Successful: 6994 Failed: 198 Longest Req: 9.06s Firewall Off: Num Users: 50 Availability: 100 % Transaction rate: 94.62 trans/sec Concurrency: 1.76 Successful: 11342 Failed: 0 Longest Req: 0.51s You'll notice that with the firewall off, we don't lose any connections. We also have a 60% increase in tx/sec, and the longest request takes 1/20 of the time. I've included my complete pf.conf file, hopefully something will jump out at someone. Thanks, Pat # ------- pf.conf skeleton for server # # --------------- MACRO Section ----------------- EXT_IF="em0" PING = "echoreq" # --- allowed incoming services initiated by clients TCP_IN = "{ http, 8080, nrpe }" #UDP_IN = "{ }" SSH_IN = "{ xxx.xxx.xxx.xxx }" # --- allowed services initiated by server TCP_OUT = "{ ssh, smtp, domain, ntp, 3690, 2222, http, ftp, 29125 }" UDP_OUT = "{ domain, ntp }" ORIGINS = "{ xxx.xxx.xxx.xxx }" # ------------------ TABLE Section -------------- # ------------------ OPTIONS Section set loginterface $EXT_IF set block-policy return # --------- TRAFFIC NORMALIZATION ---------------- scrub in all antispoof for $EXT_IF # ---------- TRANSLATION Section (NAT/RDR) # ---------- FILTER section # --- DEFAULT POLICY block log all # --- LOOPBACK pass quick on lo0 all # --- BRUTE FORCE TABLE table persist block quick from # ======================= INCOMING ================ # ----------- EXTERNAL INTERFACE # --- TCP pass in quick on $EXT_IF inet proto tcp from any to $EXT_IF port $TCP_IN flags S/SA keep state # Allow postgres connection from db server pass in quick on $EXT_IF inet proto tcp from xxx.xxx.xxx.xxx to $EXT_IF port 5432 flags S/SA keep state # --- SSH with brute force blocking pass in quick on $EXT_IF inet proto { tcp, udp } from any to $SSH_IN port ssh flags S/SA keep state (max-src-conn 25, max-src-conn-rate 5/3, overload flush global) # --- UDP #pass in quick on $EXT_IF inet proto udp from any to $EXT_IF port $UDP_IN keep state # --- ICMP pass in quick on $EXT_IF inet proto icmp from any to $EXT_IF icmp-type $PING keep state # ======================= OUTGOING ================ # ----------- EXTERNAL INTERFACE # --- TCP pass out quick on $EXT_IF inet proto tcp from $EXT_IF to any port $TCP_OUT flags S/SA keep state # Allow postgres connection to db server pass out quick on $EXT_IF inet proto tcp from $EXT_IF to xxx.xxx.xxx.xxx port 5432 flags S/SA keep state # Allow any connection to uploaders pass out quick on $EXT_IF inet proto tcp from $EXT_IF to $ORIGINS flags S/SA keep state # --- UDP pass out quick on $EXT_IF inet proto udp from $EXT_IF to any port $UDP_OUT keep state # --- ICMP pass out quick on $EXT_IF inet proto icmp from $EXT_IF to any icmp-type $PING keep state # ----------------- end of pf.conf From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 21:06:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0635816A41F for ; Tue, 3 Jul 2007 21:06:56 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from strange.locolomo.org (97.pool85-48-194.static.orange.es [85.48.194.97]) by mx1.freebsd.org (Postfix) with ESMTP id B6E0513C484 for ; Tue, 3 Jul 2007 21:06:55 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from photon.locolomo.org (unknown [10.35.4.65]) by strange.locolomo.org (Postfix) with ESMTP id 1BDE42E01E; Tue, 3 Jul 2007 23:06:54 +0200 (CEST) Message-ID: <468ABA6D.1010708@locolomo.org> Date: Tue, 03 Jul 2007 23:06:53 +0200 From: Erik Norgaard User-Agent: Thunderbird 2.0.0.0 (X11/20070522) MIME-Version: 1.0 To: kalin@el.net References: <54007.74.64.6.149.1183316422.squirrel@mail.el.net> In-Reply-To: <54007.74.64.6.149.1183316422.squirrel@mail.el.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: dv1394 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 21:06:56 -0000 kalin mintchev wrote: > hi all... > > what wold be the the device that is equivalent of /dev/dv1394/0? > it's for kino's install... You shouldn't need that to install kino. I haven't tried to transfer directly using kino, instead use fwcontrol to transfer to a file, kino can read that file just fine. Cheers, Erik -- Ph: +34.666334818 web: http://www.locolomo.org From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 21:46:01 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC3F116A400 for ; Tue, 3 Jul 2007 21:46:01 +0000 (UTC) (envelope-from lacoste@miage.univ-paris12.fr) Received: from smtp23.orange.fr (smtp23.orange.fr [193.252.22.126]) by mx1.freebsd.org (Postfix) with ESMTP id 47F5E13C448 for ; Tue, 3 Jul 2007 21:46:01 +0000 (UTC) (envelope-from lacoste@miage.univ-paris12.fr) Received: from smtp23.orange.fr (mwinf2311 [10.232.4.39]) by mwinf2325.orange.fr (SMTP Server) with ESMTP id 001981C00EFA for ; Tue, 3 Jul 2007 23:43:59 +0200 (CEST) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf2311.orange.fr (SMTP Server) with ESMTP id CAF7E7000089 for ; Tue, 3 Jul 2007 23:43:58 +0200 (CEST) Received: from [192.168.1.24] (ASte-Genev-Bois-151-1-101-139.w90-3.abo.wanadoo.fr [90.3.182.139]) by mwinf2311.orange.fr (SMTP Server) with ESMTP id 74F2A7000086; Tue, 3 Jul 2007 23:43:58 +0200 (CEST) X-ME-UUID: 20070703214358479.74F2A7000086@mwinf2311.orange.fr From: Thierry Lacoste Organization: MIAGE To: freebsd-questions@freebsd.org Date: Tue, 3 Jul 2007 23:42:30 +0200 User-Agent: KMail/1.9.5 References: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> In-Reply-To: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707032342.31435.lacoste@miage.univ-paris12.fr> Cc: Eric Masson Subject: Re: pam_ldap 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: Tue, 03 Jul 2007 21:46:01 -0000 I have a very similar setting on 6.1 Maybe you have an ACL problem (see below). What does the following command give? ldapsearch -x -D "cn=testuser,ou=people,dc=interne,dc=example,dc=org" -W > > base dc=interne,dc=example,dc=org > uri ldap://127.0.0.1:389/ > > logdir /var/log/ldap > #debug 256 > > timeout 5 > bind_timeout 5 > bind_policy soft > > rootbinddn cn=Manager,dc=interne,dc=example,dc=org BTW I think you can remove this one > > nss_base_passwd ou=people,dc=interne,dc=example,dc=org?one > nss_base_group ou=groups,dc=interne,dc=example,dc=org?one > > > > include /usr/local/etc/openldap/schema/core.schema > include /usr/local/etc/openldap/schema/cosine.schema > include /usr/local/etc/openldap/schema/inetorgperson.schema > include /usr/local/etc/openldap/schema/nis.schema > include /usr/local/etc/openldap/schema/samba.schema > > pidfile /var/run/openldap/slapd.pid > argsfile /var/run/openldap/slapd.args > > modulepath /usr/local/libexec/openldap > moduleload back_bdb > > access to dn.base="" > by self write > by * auth > > access to attrs=userPassword > by self write > by * auth Replace this one with by anonymous auth > > access to attrs=shadowLastChange > by self write > by * auth > > access to * > by * read > by anonymous auth I think you sould also remove all the other above lines containing auth. > > schemacheck on > idletimeout 30 > backend bdb > database bdb > > suffix "dc=interne, dc=example, dc=org" > rootdn "cn=Manager, dc=interne, dc=example, dc=org" > > rootpw password > > checkpoint 1024 5 > cachesize 10000 > > directory /var/db/openldap-data > > # Indices to maintain > index objectClass eq > index cn pres,sub,eq > index sn pres,sub,eq > index uid pres,sub,eq > index displayName pres,sub,eq > index uidNumber eq > index gidNumber eq > index memberUID eq > index sambaSID eq > index sambaPrimaryGroupSID eq > index sambaDomainName eq > index default sub > HTH, Thierry. From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 22:24:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEE3016A469 for ; Tue, 3 Jul 2007 22:24:59 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.freebsd.org (Postfix) with ESMTP id 60E0313C4E1 for ; Tue, 3 Jul 2007 22:24:59 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.8/8.13.1) with ESMTP id l63MOvNT083754; Tue, 3 Jul 2007 15:24:57 -0700 (PDT) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.8/8.13.1/Submit) id l63MOvEO083753; Tue, 3 Jul 2007 15:24:57 -0700 (PDT) (envelope-from kline) Date: Tue, 3 Jul 2007 15:24:56 -0700 From: Gary Kline To: "[LoN]Kamikaze" Message-ID: <20070703222456.GA83628@thought.org> References: <20070703121408.GA357@it.ca> <468A4F4A.1060500@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468A4F4A.1060500@gmx.de> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: freebsd-questions@freebsd.org Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 22:25:00 -0000 On Tue, Jul 03, 2007 at 03:29:46PM +0200, [LoN]Kamikaze wrote: > Paul Chvostek wrote: > > Hiya. > > > > I just did my Xorg upgrade, which included an upgrade of OpenOffice.org > > to version 2.2.1. > > > > Now, when I launch OO, it complains not at all, but opens no windows. > > It doesn't take much time: > > > > > time openoffice.org-2.2.1 > > 0.727u 0.267s 0:02.06 47.5% 301+915k 1+0io 0pf+0w > > > > > > > The shell wrapper (/usr/local/openoffice.org-2.2.1/program/soffice) is > > definitely running soffice.bin. But the binary does nothing except > > return an exit value of 78, which is *not* trapped by the shell wrapper. > > And I don't know what 78 means. > > > > I've seen some hints in other operating systems' forums that OO does > > strange things when fonts with questionable metrics are installed, so > > I've uninstalled a bunch of things that I can probably do without, and > > replaced the rest with `portupgrade -fR xorg-fonts-7.2`, to no avail. > > > > Running soffice.bin in an strace produces gobs of output that I don't > > know how to interpret. The last few "useful" lines from strace refer to > > libraries like libglib, libiconv, etc, so I've reinstalled glib2 and > > libiconv and some others, also to no avail. > > > > I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF > > fonts work in other apps, and OO was built with these in /etc/make.conf: > > WITH_EVOLUTION2=yes > > WITH_TTF_BYTECODE_ENABLED=yes > > WITH_SYSTEM_FREETYPE=yes > > > > Any suggestions? Has anyone else seen and solved this? > > > > Thanks. > > > > Try env OO_FORCE_DESKTOP=none Setting this does almost nothing, running even as root. When a file finally does open, setecting All -- or any other command -- causes an immediate crash. Not even a core file to look at. ... . -- Gary Kline kline@thought.org www.thought.org Public Service Unix From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 23:11:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5658A16A421 for ; Tue, 3 Jul 2007 23:11:09 +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 10C0313C448 for ; Tue, 3 Jul 2007 23:11:08 +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 l63NB7CQ091728; Tue, 3 Jul 2007 19:11:08 -0400 (EDT) (envelope-from paul+fbsd@it.ca) Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id l63NB7F7091727; Tue, 3 Jul 2007 19:11:07 -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: Tue, 3 Jul 2007 19:11:07 -0400 From: Paul Chvostek To: "[LoN]Kamikaze" Message-ID: <20070703231107.GA83811@it.ca> References: <20070703121408.GA357@it.ca> <468A4F4A.1060500@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468A4F4A.1060500@gmx.de> 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]); Tue, 03 Jul 2007 19:11:08 -0400 (EDT) Cc: freebsd-questions@freebsd.org Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-questions@freebsd.org List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 23:11:09 -0000 On Tue, Jul 03, 2007 at 03:29:46PM +0200, [LoN]Kamikaze wrote: > > > Now, when I launch OO, it complains not at all, but opens no windows. ... > > The shell wrapper (/usr/local/openoffice.org-2.2.1/program/soffice) is > > definitely running soffice.bin. But the binary does nothing except > > return an exit value of 78, which is *not* trapped by the shell wrapper. > > And I don't know what 78 means. > > Try env OO_FORCE_DESKTOP=none Set as an environment variable, that appears to make no difference. Also tried with the variable OOO_FORCE_DESKTOP, which is mentioned in a number of mailing list and forum posts for other operating systems. But thanks for the suggestion. Hrm, I just realized there's a freebsd-openoffice@ list. Perhaps I'll look there. p -- Paul Chvostek From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 23:47:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4384916A400 for ; Tue, 3 Jul 2007 23:47:23 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.freebsd.org (Postfix) with ESMTP id 072A013C44C for ; Tue, 3 Jul 2007 23:47:22 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ozlabs.org (Postfix) with ESMTP id 9E083DDE3F; Wed, 4 Jul 2007 09:29:35 +1000 (EST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 67B861A988D; Wed, 4 Jul 2007 08:59:35 +0930 (CST) Date: Wed, 4 Jul 2007 08:59:35 +0930 From: Greg 'groggy' Lehey To: Dave Raven Message-ID: <20070703232935.GG38710@wantadilla.lemis.com> References: <010501c7bd84$2dc311c0$89493540$@za.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8S1fMsFYqgBC+BN/" Content-Disposition: inline In-Reply-To: <010501c7bd84$2dc311c0$89493540$@za.net> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: freebsd-questions@freebsd.org Subject: Re: 2TB (and above) Disk X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2007 23:47:23 -0000 --8S1fMsFYqgBC+BN/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tuesday, 3 July 2007 at 17:09:33 +0200, Dave Raven wrote: > Hi all, > Firstly I am using FreeBSD 4, I know it's not supported but > hopefully someone has some experience with large disks on 4. Yes. Various geometry issues limit them to 1 TB in size. Greg -- When replying to this message, please copy the original recipients. If you don't, I may ignore the reply or reply to the original recipients. For more information, see http://www.lemis.com/questions.html See complete headers for address and phone numbers. --8S1fMsFYqgBC+BN/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFGitvfIubykFB6QiMRAlwtAJsE7fXjM6espWpmQKwerXC3HVvPvgCeKz5J Et0CoIEriRm9sBec1A3t6Y4= =SMfN -----END PGP SIGNATURE----- --8S1fMsFYqgBC+BN/-- From owner-freebsd-questions@FreeBSD.ORG Tue Jul 3 23:48:04 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 099E416A400 for ; Tue, 3 Jul 2007 23:48:04 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id CA2FE13C448 for ; Tue, 3 Jul 2007 23:48:03 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 27353 invoked from network); 3 Jul 2007 18:48:03 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 3 Jul 2007 18:48:03 -0500 Date: Wed, 4 Jul 2007 09:47:55 +1000 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20070704094755.43c6b7fd@localhost> In-Reply-To: <20070703121408.GA357@it.ca> References: <20070703121408.GA357@it.ca> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: paul+fbsd@it.ca Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 03 Jul 2007 23:48:04 -0000 On Tue, 3 Jul 2007 08:14:09 -0400 Paul Chvostek wrote: > Hiya. > > I just did my Xorg upgrade, which included an upgrade of OpenOffice.org > to version 2.2.1. > > Now, when I launch OO, it complains not at all, but opens no windows. > It doesn't take much time: > > > time openoffice.org-2.2.1 > 0.727u 0.267s 0:02.06 47.5% 301+915k 1+0io 0pf+0w > > > > The shell wrapper (/usr/local/openoffice.org-2.2.1/program/soffice) is > definitely running soffice.bin. But the binary does nothing except > return an exit value of 78, which is *not* trapped by the shell wrapper. > And I don't know what 78 means. > > I've seen some hints in other operating systems' forums that OO does > strange things when fonts with questionable metrics are installed, so > I've uninstalled a bunch of things that I can probably do without, and > replaced the rest with `portupgrade -fR xorg-fonts-7.2`, to no avail. > > Running soffice.bin in an strace produces gobs of output that I don't > know how to interpret. The last few "useful" lines from strace refer to > libraries like libglib, libiconv, etc, so I've reinstalled glib2 and > libiconv and some others, also to no avail. > > I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF > fonts work in other apps, and OO was built with these in /etc/make.conf: > WITH_EVOLUTION2=yes > WITH_TTF_BYTECODE_ENABLED=yes > WITH_SYSTEM_FREETYPE=yes What X toolkit? QT / KDE? GTK? > > Any suggestions? Has anyone else seen and solved this? > yes, see http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/151700.html and the thread it belongs to. _________________________ {Beto|Norberto|Numard} Meijome "Religion is what the common people see als true, the wise see as false, and the rulers see as useful." Seneca I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 01:43:02 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C61A516A400 for ; Wed, 4 Jul 2007 01:43:02 +0000 (UTC) (envelope-from rich@pencil.math.missouri.edu) Received: from pencil.math.missouri.edu (pencil.math.missouri.edu [128.206.184.195]) by mx1.freebsd.org (Postfix) with ESMTP id 9858013C489 for ; Wed, 4 Jul 2007 01:43:02 +0000 (UTC) (envelope-from rich@pencil.math.missouri.edu) Received: from pencil.math.missouri.edu (localhost [127.0.0.1]) by pencil.math.missouri.edu (8.13.6/8.13.6) with ESMTP id l6416O60090058 for ; Tue, 3 Jul 2007 20:06:24 -0500 (CDT) (envelope-from rich@pencil.math.missouri.edu) Received: (from rich@localhost) by pencil.math.missouri.edu (8.13.6/8.13.6/Submit) id l6416Od0090057 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 20:06:24 -0500 (CDT) (envelope-from rich) Date: Tue, 3 Jul 2007 20:06:24 -0500 From: Rich Winkel To: freebsd-questions@freebsd.org Message-ID: <20070704010624.GP33399@pencil.math.missouri.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on pencil.math.missouri.edu X-Virus-Scanned: ClamAV 0.88.3/3588/Tue Jul 3 15:51:31 2007 on pencil.math.missouri.edu X-Virus-Status: Clean Subject: Matlab 6.5 under linux_base-fc-4_9 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 01:43:02 -0000 Hi, since updating linux_base from RH to linux_base-fc-4_9, I'm getting the following error when I run matlab: Warning: Unable to load Java Runtime Environment: /usr/local/matlab/sys/java/jre/glnx86/jre/lib/i386/native_threads/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference. Warning: Disabling Java support. Has anyone seen this before? Any ideas? Thanks!!! Rich From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 01:59:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DD0016A400 for ; Wed, 4 Jul 2007 01:59:07 +0000 (UTC) (envelope-from chris@chrismaness.com) Received: from nlpi029.prodigy.net (nlpi029.sbcis.sbc.com [207.115.36.58]) by mx1.freebsd.org (Postfix) with ESMTP id E0E7A13C45A for ; Wed, 4 Jul 2007 01:59:06 +0000 (UTC) (envelope-from chris@chrismaness.com) X-ORBL: [75.28.106.168] Received: from [192.168.4.2] (adsl-75-28-106-168.dsl.irvnca.sbcglobal.net [75.28.106.168]) by nlpi029.prodigy.net (8.13.8 out.dk.spool/8.13.8) with ESMTP id l641iBwL022627 for ; Tue, 3 Jul 2007 20:44:12 -0500 Message-ID: <468AFB9D.8090302@chrismaness.com> Date: Tue, 03 Jul 2007 18:45:01 -0700 From: Chris Maness User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: index.php not being pulled up? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 01:59:07 -0000 I have these directives in my httpd.conf file, but index.php is not being pulled up like index.html. This worked before I upgraded apache and php5. Any suggestions? DirectoryIndex index.php index.php3 index.html DirectoryIndex index.php3 index.html DirectoryIndex index.php index.html DirectoryIndex index.html DirectoryIndex index.php index.html DirectoryIndex index.html -- Chris Maness (909) 223-9179 http://www.chrismaness.com From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 02:10:25 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C73216A400 for ; Wed, 4 Jul 2007 02:10:25 +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 AD79413C46A for ; Wed, 4 Jul 2007 02:10:24 +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.12.11) with ESMTP id l642AMlK082016 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 4 Jul 2007 09:10:23 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l642AMWQ084133; Wed, 4 Jul 2007 09:10:22 +0700 (ICT) Date: Wed, 4 Jul 2007 09:10:22 +0700 (ICT) Message-Id: <200707040210.l642AMWQ084133@banyan.cs.ait.ac.th> From: Olivier Nicole To: questions@freebsd.org X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: Subject: Migration from 5.5 to 6.2 without single user access X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 02:10:25 -0000 Hi, I am upgrading a remote server (very remote, 10,000 km) and I have no way to access the machine in single user mode. Is there a recommended way to do the upgrade from 5.5 to 6.2? Do everything in multi-user, but kill all services but sshd? Thanks, Olivier From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 02:36:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 233AE16A468 for ; Wed, 4 Jul 2007 02:36:18 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id CB10413C448 for ; Wed, 4 Jul 2007 02:36:17 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 5210 invoked from network); 3 Jul 2007 21:36:18 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 3 Jul 2007 21:36:17 -0500 Date: Wed, 4 Jul 2007 12:36:14 +1000 From: Norberto Meijome To: Chris Maness Message-ID: <20070704123614.7dae8b44@localhost> In-Reply-To: <468AFB9D.8090302@chrismaness.com> References: <468AFB9D.8090302@chrismaness.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: index.php not being pulled up? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 02:36:18 -0000 On Tue, 03 Jul 2007 18:45:01 -0700 Chris Maness wrote: > I have these directives in my httpd.conf file, but index.php is not > being pulled up like index.html. This worked before I upgraded apache > and php5. Any suggestions? > > > > > DirectoryIndex index.php index.php3 index.html > > > DirectoryIndex index.php3 index.html > > > > > DirectoryIndex index.php index.html > > > DirectoryIndex index.html > > ################################# > > > DirectoryIndex index.php index.html > ################################# Spot the problem :) > > DirectoryIndex index.html > > > > _________________________ {Beto|Norberto|Numard} Meijome Windows caters to everyone as though they are idiots. UNIX makes no such assumption. It assumes you know what you are doing, and presents the challenge of figuring it out for yourself if you don't. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 02:37:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 730FE16A41F for ; Wed, 4 Jul 2007 02:37:57 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.freebsd.org (Postfix) with ESMTP id 552FC13C457 for ; Wed, 4 Jul 2007 02:37:57 +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 l642bsHe097517 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 3 Jul 2007 19:37:55 -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 l642bsJN097516; Tue, 3 Jul 2007 19:37:54 -0700 (PDT) Received: from fbsd61 ([192.168.200.61]) by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA25361; Tue, 3 Jul 07 19:31:35 PDT Date: Tue, 03 Jul 2007 19:34:20 -0700 From: perryh@pluto.rain.com To: freebsd@celestial.com Message-Id: <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> In-Reply-To: <20070703163610.GA6012@ayn.mi.celestial.com> 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: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 02:37:57 -0000 > >> This is actually just the difference between sh and bash ... > > > >differences in, say, arithmetic handling and loops can sometimes > >mean rewriting parts of shell scripts depending on whether it is > >going to run in BSD or Linux. > > That's a major argument for doing things in python or perl as > they are consistent across all platforms ... If one is going to require the installation of something that may not be part of a base system, that something might as well be bash :) From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 03:04:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFDC416A421 for ; Wed, 4 Jul 2007 03:04:38 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.freebsd.org (Postfix) with ESMTP id BE99B13C459 for ; Wed, 4 Jul 2007 03:04:38 +0000 (UTC) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) by smarthost2.sentex.ca (8.14.1/8.13.8) with ESMTP id l6434bIj066330 for ; Tue, 3 Jul 2007 23:04:38 -0400 (EDT) (envelope-from mike@sentex.net) Received: from mdt-xp.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.13.8/8.13.3) with ESMTP id l6434bHE018425 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 3 Jul 2007 23:04:37 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <200707040304.l6434bHE018425@lava.sentex.ca> X-Mailer: QUALCOMM Windows Eudora Version 7.1.0.9 Date: Tue, 03 Jul 2007 23:03:54 -0400 To: freebsd-questions@freebsd.org From: Mike Tancsa Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: nanobsd and mount 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: Wed, 04 Jul 2007 03:04:39 -0000 I have an odd situation where /etc and /var seem to be mounted twice now for some reason. # df Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s1a 245239 98076 127544 43% / devfs 1 1 0 100% /dev /dev/md0 4526 1784 2380 43% /etc /dev/md1 27990 124 25628 0% /var /dev/md2 4526 1788 2376 43% /etc /dev/md3 27990 436 25316 2% /var Any idea why this might be happening ? Its nanobsd off RELENG_6 on a Soekris 4511. ---Mike -------------------------------------------------------------------- Mike Tancsa, tel +1 519 651 3400 Sentex Communications, mike@sentex.net Providing Internet since 1994 www.sentex.net Cambridge, Ontario Canada www.sentex.net/mike From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 03:08:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2096116A41F for ; Wed, 4 Jul 2007 03:08:56 +0000 (UTC) (envelope-from chris@chrismaness.com) Received: from nlpi029.prodigy.net (nlpi029.sbcis.sbc.com [207.115.36.58]) by mx1.freebsd.org (Postfix) with ESMTP id E168713C448 for ; Wed, 4 Jul 2007 03:08:55 +0000 (UTC) (envelope-from chris@chrismaness.com) X-ORBL: [75.28.106.168] Received: from [192.168.4.2] (adsl-75-28-106-168.dsl.irvnca.sbcglobal.net [75.28.106.168]) by nlpi029.prodigy.net (8.13.8 out.dk.spool/8.13.8) with ESMTP id l64383X2021599; Tue, 3 Jul 2007 22:08:03 -0500 Message-ID: <468B0F46.1000508@chrismaness.com> Date: Tue, 03 Jul 2007 20:08:54 -0700 From: Chris Maness User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Norberto Meijome , freebsd-questions@freebsd.org References: <468AFB9D.8090302@chrismaness.com> <20070704123614.7dae8b44@localhost> In-Reply-To: <20070704123614.7dae8b44@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: index.php not being pulled up? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 03:08:56 -0000 Norberto Meijome wrote: > On Tue, 03 Jul 2007 18:45:01 -0700 > Chris Maness wrote: > > >> I have these directives in my httpd.conf file, but index.php is not >> being pulled up like index.html. This worked before I upgraded apache >> and php5. Any suggestions? >> >> >> >> >> DirectoryIndex index.php index.php3 index.html >> >> >> DirectoryIndex index.php3 index.html >> >> >> >> >> DirectoryIndex index.php index.html >> >> >> DirectoryIndex index.html >> >> >> > > ################################# > >> >> >> DirectoryIndex index.php index.html >> >> > ################################# > Spot the problem :) > > > Does the following 3 lines negate the previous 3 lines? >> >> DirectoryIndex index.html >> >> >> >> >> > > > _________________________ > {Beto|Norberto|Numard} Meijome > > Windows caters to everyone as though they are idiots. UNIX makes no such assumption. > It assumes you know what you are doing, and presents the challenge of figuring it out for yourself if you don't. > > I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. > I added the following lines to the end of my httpd.conf file (but before the virtual host directives) before I recieved your e-mail and it fixed the problem: DirectoryIndex index.php index.html -- Chris Maness (909) 223-9179 http://www.chrismaness.com From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 03:15:02 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD44B16A400 for ; Wed, 4 Jul 2007 03:15:02 +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 87AF313C4CA for ; Wed, 4 Jul 2007 03:15:02 +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 l643F18f004467; Tue, 3 Jul 2007 23:15:01 -0400 (EDT) (envelope-from paul+fbsd@it.ca) Received: (from paul@localhost) by mail.it.ca (8.13.3/8.13.3/Submit) id l643F1e4004466; Tue, 3 Jul 2007 23:15:01 -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: Tue, 3 Jul 2007 23:15:01 -0400 From: Paul Chvostek To: Norberto Meijome Message-ID: <20070704031501.GB83811@it.ca> References: <20070703121408.GA357@it.ca> <20070704094755.43c6b7fd@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070704094755.43c6b7fd@localhost> 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]); Tue, 03 Jul 2007 23:15:01 -0400 (EDT) Cc: freebsd-questions@freebsd.org Subject: Re: OpenOffice.org 2.2.1 quits on launch 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, 04 Jul 2007 03:15:02 -0000 On Wed, Jul 04, 2007 at 09:47:55AM +1000, Norberto Meijome wrote: > Paul Chvostek wrote: > > > > Now, when I launch OO, it complains not at all, but opens no windows. ... > > I'm in 6.1-RELEASE-p17. Java (diablo-jdk1.5.0) works standalone, TTF > > fonts work in other apps, and OO was built with these in /etc/make.conf: > > WITH_EVOLUTION2=yes > > WITH_TTF_BYTECODE_ENABLED=yes > > WITH_SYSTEM_FREETYPE=yes > > What X toolkit? QT / KDE? GTK? GTK2, I'm running in Gnome. For reference, this also happens when I try to run OO from twm with no desktop manager. I normally have $LANG set for other reasons, but I also noticed that without it set, I see an error: I18N: Operating system doesn't support locale "en_US" Presumably, OO was built with that as a default. When I set LANG="en_CA.UTF-8", the error doesn't show ... but it's notable that this error is from /usr/local/openoffice.org-2.2.1/program/soffice.bin, so I know the binary is running. I still don't know why soffice.bin exits with a return value of 78. > yes, see > http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/151700.html and > the thread it belongs to. An interesting thread, but my symptoms are different from yours. I get no crash. I get no quick flahes of a window on the screen. Setting the OOO_FORCE_DESKTOP env var changes OO's behaviour not at all. p -- Paul Chvostek From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 03:17:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D7B116A469 for ; Wed, 4 Jul 2007 03:17:20 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 3C9D413C4CC for ; Wed, 4 Jul 2007 03:17:20 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 89290 invoked from network); 4 Jul 2007 03:12:33 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 03:12:33 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l643HHXo039533 for ; Tue, 3 Jul 2007 21:17:17 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l643HGfH039532 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 21:17:16 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Tue, 3 Jul 2007 21:17:16 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070704031716.GB39459@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> User-Agent: Mutt/1.4.2.2i Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 03:17:20 -0000 On Tue, Jul 03, 2007 at 07:34:20PM -0700, perryh@pluto.rain.com wrote: > > >> This is actually just the difference between sh and bash ... > > > > > >differences in, say, arithmetic handling and loops can sometimes > > >mean rewriting parts of shell scripts depending on whether it is > > >going to run in BSD or Linux. > > > > That's a major argument for doing things in python or perl as > > they are consistent across all platforms ... > > If one is going to require the installation of something that may > not be part of a base system, that something might as well be bash :) Isn't Perl part of the base system these days? -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Amazon.com interview candidate: "When C++ is your hammer, everything starts to look like your thumb." From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 03:41:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7082316A46E for ; Wed, 4 Jul 2007 03:41:15 +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 3402513C46C for ; Wed, 4 Jul 2007 03:41:14 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 03 Jul 2007 23:41:14 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id IVX64370; Tue, 3 Jul 2007 23:41:14 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 03 Jul 2007 23:41:12 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18059.5849.930990.765261@jerusalem.litteratus.org> Date: Tue, 3 Jul 2007 23:41:13 -0400 To: freebsd-questions@freebsd.org In-Reply-To: <20070704031716.GB39459@demeter.hydra> References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> <20070704031716.GB39459@demeter.hydra> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 03:41:15 -0000 Chad Perrin writes: > Isn't Perl part of the base system these days? Perl has not been part of the base system for several years and was deprecated for some time before that. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 04:05:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4933816A480 for ; Wed, 4 Jul 2007 04:05:53 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 2886813C448 for ; Wed, 4 Jul 2007 04:05:53 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 43104 invoked from network); 4 Jul 2007 04:01:06 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 04:01:06 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l6445pxi039729 for ; Tue, 3 Jul 2007 22:05:51 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l6445p6Q039728 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 22:05:51 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Tue, 3 Jul 2007 22:05:50 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070704040550.GC39459@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> <20070704031716.GB39459@demeter.hydra> <18059.5849.930990.765261@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18059.5849.930990.765261@jerusalem.litteratus.org> User-Agent: Mutt/1.4.2.2i Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 04:05:53 -0000 On Tue, Jul 03, 2007 at 11:41:13PM -0400, Robert Huff wrote: > > Chad Perrin writes: > > > Isn't Perl part of the base system these days? > > Perl has not been part of the base system for several years and > was deprecated for some time before that. Is it part of the default install without being part of the base system, then? I don't recall needing to install it after system install on this laptop (using FreeBSD 6.2-RELEASE). -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Baltasar Gracian: "A wise man gets more from his enemies than a fool from his friends." From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 04:13:37 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBC0216A421 for ; Wed, 4 Jul 2007 04:13:37 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 6F97C13C448 for ; Wed, 4 Jul 2007 04:13:37 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 11092 invoked from network); 3 Jul 2007 23:13:37 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 3 Jul 2007 23:13:37 -0500 Date: Wed, 4 Jul 2007 14:13:33 +1000 From: Norberto Meijome To: Chris Maness Message-ID: <20070704141333.61d029b7@localhost> In-Reply-To: <468B0F46.1000508@chrismaness.com> References: <468AFB9D.8090302@chrismaness.com> <20070704123614.7dae8b44@localhost> <468B0F46.1000508@chrismaness.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: index.php not being pulled up? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 04:13:37 -0000 On Tue, 03 Jul 2007 20:08:54 -0700 Chris Maness wrote: > >> Enter this section ONLY if NOT being parsed by mod_php5 > >> Enter this section ONLY if being parsed by mod_php5. It'll never happen. > >> DirectoryIndex index.php index.html > >> > >> > > ################################# > > Spot the problem :) adding the lines by themselves like you did is just fine (the other is over complicating things) _________________________ {Beto|Norberto|Numard} Meijome "A fanatic is one who can't change his mind and won't change the subject." Sir Winston Churchill I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 04:14:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33E8E16A46C for ; Wed, 4 Jul 2007 04:14:53 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id DC22913C4B8 for ; Wed, 4 Jul 2007 04:14:52 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 11207 invoked from network); 3 Jul 2007 23:14:53 -0500 Received: from 203-214-135-190.perm.iinet.net.au (HELO localhost) (203.214.135.190) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 3 Jul 2007 23:14:52 -0500 Date: Wed, 4 Jul 2007 14:14:48 +1000 From: Norberto Meijome To: freebsd-questions@freebsd.org Message-ID: <20070704141448.2962df8c@localhost> In-Reply-To: <20070704031501.GB83811@it.ca> References: <20070703121408.GA357@it.ca> <20070704094755.43c6b7fd@localhost> <20070704031501.GB83811@it.ca> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: paul+fbsd@it.ca Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 04:14:53 -0000 On Tue, 3 Jul 2007 23:15:01 -0400 Paul Chvostek wrote: > I still don't know why soffice.bin exits with a return value of 78. > > > yes, see > > http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/151700.html and > > the thread it belongs to. > > An interesting thread, but my symptoms are different from yours. I get > no crash. I get no quick flahes of a window on the screen. Setting the > OOO_FORCE_DESKTOP env var changes OO's behaviour not at all. gotcha. you may want to try in the OO specific lists (@freebsd.org or @ OOO's own site) _________________________ {Beto|Norberto|Numard} Meijome Before you criticize someone, walk a mile in his shoes. That way, if he gets angry, he'll be a mile away - and barefoot I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 04:26:30 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20DB316A400 for ; Wed, 4 Jul 2007 04:26:30 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from ayn.mi.celestial.com (hayek.celestial.com [192.136.111.12]) by mx1.freebsd.org (Postfix) with ESMTP id E911613C465 for ; Wed, 4 Jul 2007 04:26:29 +0000 (UTC) (envelope-from bill@ayn.mi.celestial.com) Received: from localhost (localhost [127.0.0.1]) by ayn.mi.celestial.com (Postfix) with ESMTP id 6C76E6854F081; Tue, 3 Jul 2007 21:29:03 -0700 (PDT) X-Virus-Scanned: amavisd-new at mi.celestial.com Received: from ayn.mi.celestial.com ([127.0.0.1]) by localhost (ayn.mi.celestial.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id qcDlkmIqHE76; Tue, 3 Jul 2007 21:29:03 -0700 (PDT) Received: by ayn.mi.celestial.com (Postfix, from userid 203) id 4A0D16854F080; Tue, 3 Jul 2007 21:29:03 -0700 (PDT) Date: Tue, 3 Jul 2007 21:29:03 -0700 From: Bill Campbell To: freebsd@celestial.com, freebsd-questions@freebsd.org Message-ID: <20070704042903.GB3594@ayn.mi.celestial.com> Mail-Followup-To: freebsd@celestial.com, freebsd-questions@freebsd.org References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> User-Agent: Mutt/1.5.11 OpenPKG/2.5 Cc: Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@celestial.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 04:26:30 -0000 On Tue, Jul 03, 2007, perryh@pluto.rain.com wrote: >> >> This is actually just the difference between sh and bash ... >> > >> >differences in, say, arithmetic handling and loops can sometimes >> >mean rewriting parts of shell scripts depending on whether it is >> >going to run in BSD or Linux. >> >> That's a major argument for doing things in python or perl as >> they are consistent across all platforms ... > >If one is going to require the installation of something that may >not be part of a base system, that something might as well be bash :) One of the reasons I started using perl almost 20 years ago was that it was cleaner and more consistent than tying a bunch of utilities together with the shell (not to mention only having to master one type of regular expressions :-). I now use python for the vast majority of my development work instead of perl as I find it much cleaner with better object oriented features. When I write shell scripts, I use a very limited set of features which are /bin/sh compatible. As soon as I start having to do anything much more than run a program against a list of files, I switch to python. Bill -- INTERNET: bill@Celestial.COM Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way FAX: (206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 ``Intellectually, teachers fall between education theorists and bright cocker spaniels. (Probably closer to the education theorists. The AKC has been doing wonders with spaniels.) If you think I'm kidding look at the GREs for education majors, whose scores are the lowest of all fields, and remember that these are the smart ones.'' -- http://www.FredOnEverything.net From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 05:22:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 40ED016A400 for ; Wed, 4 Jul 2007 05:22:42 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 20CEB13C44C for ; Wed, 4 Jul 2007 05:22:42 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 99073 invoked from network); 4 Jul 2007 05:17:55 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 05:17:55 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l645MemY040057; Tue, 3 Jul 2007 23:22:40 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l645MdN2040056; Tue, 3 Jul 2007 23:22:39 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Tue, 3 Jul 2007 23:22:39 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070704052239.GA40018@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org, freebsd@celestial.com References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> <20070704042903.GB3594@ayn.mi.celestial.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070704042903.GB3594@ayn.mi.celestial.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd@celestial.com Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 05:22:42 -0000 On Tue, Jul 03, 2007 at 09:29:03PM -0700, Bill Campbell wrote: > On Tue, Jul 03, 2007, perryh@pluto.rain.com wrote: > >> >> This is actually just the difference between sh and bash ... > >> > > >> >differences in, say, arithmetic handling and loops can sometimes > >> >mean rewriting parts of shell scripts depending on whether it is > >> >going to run in BSD or Linux. > >> > >> That's a major argument for doing things in python or perl as > >> they are consistent across all platforms ... > > > >If one is going to require the installation of something that may > >not be part of a base system, that something might as well be bash :) > > One of the reasons I started using perl almost 20 years ago was > that it was cleaner and more consistent than tying a bunch of > utilities together with the shell (not to mention only having to > master one type of regular expressions :-). > > I now use python for the vast majority of my development work > instead of perl as I find it much cleaner with better object > oriented features. I'm of a similar mind, except that for OOP stuff I prefer Ruby, and for non-OOP stuff I still generally use Perl. Python doesn't really whet my whistle, so to speak. > > When I write shell scripts, I use a very limited set of features > which are /bin/sh compatible. As soon as I start having to do > anything much more than run a program against a list of files, I > switch to python. $language =~ s/python/Perl/ Otherwise, ditto what you said. Much like PHP, I find that shell languages as scripting syntaxes don't really scale well in terms of maintainability. YMMV, of course. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Baltasar Gracian: "A wise man gets more from his enemies than a fool from his friends." From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 05:27:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96C5B16A400 for ; Wed, 4 Jul 2007 05:27:39 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 7949E13C457 for ; Wed, 4 Jul 2007 05:27:39 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 1957 invoked from network); 4 Jul 2007 05:22:52 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 05:22:52 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l645RcL1040081 for ; Tue, 3 Jul 2007 23:27:38 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l645RbLH040080 for freebsd-questions@freebsd.org; Tue, 3 Jul 2007 23:27:37 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Tue, 3 Jul 2007 23:27:37 -0600 From: Chad Perrin To: FreeBSD Questions Message-ID: <20070704052737.GB40018@demeter.hydra> Mail-Followup-To: FreeBSD Questions Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 05:27:39 -0000 I have a couple of niggling little, er, "quirks" that I'd like to get sorted out on my FreeBSD Thinkpad. 1. During boot, if I'm booting up anywhere but at home (where my static IP address configuration applies), the startup messages pause for a few long seconds at a message that says "Mounting late filesystems". When plugged into the network at home, though, using my static IP configuration, it swoops past that pretty quickly. Can someone tell me what that's about? 2. For some reason, if I use DHCP at all then want to switch back to my static IP setup, I have to restart the computer to get it to access the Internet. I haven't been able to figure out why. If I recall correctly, I can switch to static IP on bge0 and access other systems on the network, but I can't do anything related to the Internet. Yes, by the way, I am checking to make sure the contents of resolv.conf are correct. Any ideas about how to figure out what's going on in either case would be welcome. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Brian K. Reid: "In computer science, we stand on each other's feet." From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 05:31:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4070F16A46E for ; Wed, 4 Jul 2007 05:31:45 +0000 (UTC) (envelope-from mikhailg@webanoide.org) Received: from smtp.vap.navalradio.cl (smtp.vap.navalradio.cl [201.236.67.147]) by mx1.freebsd.org (Postfix) with ESMTP id BD87E13C4AD for ; Wed, 4 Jul 2007 05:31:44 +0000 (UTC) (envelope-from mikhailg@webanoide.org) Received: from maxito.hba.navalradio.cl (maxito.hba.navalradio.cl [172.26.4.34]) (authenticated bits=0) by smtp.vap.navalradio.cl (8.13.8/8.13.8) with ESMTP id l645EZ7D003814 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 4 Jul 2007 05:14:53 GMT (envelope-from mikhailg@webanoide.org) Message-ID: <468B2CB4.80605@webanoide.org> Date: Wed, 04 Jul 2007 15:14:28 +1000 From: Mikhail Goriachev Organization: Webanoide User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: =?ISO-8859-2?Q?Nejc_=A9koberne?= References: <468A2723.8020207@skoberne.net> In-Reply-To: <468A2723.8020207@skoberne.net> Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 8bit Cc: User Questions Subject: Re: BIND to listen on all interfaces? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 05:31:45 -0000 Nejc ©koberne wrote: > Hello, > > I am running BIND (from base system) on my FreeBSD 5.3 machine. The box is > connected to outer world via ADSL connection (tun0 device). If the named is > started when the machine is connected to the internet, then everything is OK, > I get this by saying netstat -n -a: > > udp4 0 0 X.X.X.X.53 *.* > udp4 0 0 127.0.0.1.53 *.* > udp4 0 0 10.0.1.3.53 *.* > > but at boot time, the named starts before the PPP connection is started, so > the tun0 interface is not up yet. So that's why I get this: > > udp4 0 0 127.0.0.1.53 *.* > udp4 0 0 10.0.1.3.53 *.* > > In BIND manual, it says: > > "If no listen-on is specified, the server will listen on port 53 on all interfaces." > > I also tried to specify the ADSL IP address in named.conf (it is static), but it is > still a no go. I don't have such problems with other daemons! Any ideas? An idea: Assuming you're using ppp, let it restart named after it connects to the Internet. Have a /etc/ppp/ppp.linkup and put the following or similar into it: adsl: ! /etc/rc.d/named restart Read the ppp man pages for further details. Regards, Mikhail. -- Mikhail Goriachev Webanoide Telephone: +61 (0)3 62252501 Mobile Phone: +61 (0)4 38255158 E-Mail: mikhailg@webanoide.org Web: www.webanoide.org From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 06:05:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0F4716A421 for ; Wed, 4 Jul 2007 06:05:39 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.77]) by mx1.freebsd.org (Postfix) with ESMTP id 173CB13C44B for ; Wed, 4 Jul 2007 06:05:38 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atlantis.dyndns.org (athedsl-90424.home.otenet.gr [87.203.106.134]) by kane.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l6465WeJ005532; Wed, 4 Jul 2007 09:05:34 +0300 Message-ID: <468B38AC.7000706@otenet.gr> Date: Wed, 04 Jul 2007 09:05:32 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.4 (X11/20070615) MIME-Version: 1.0 To: Chad Perrin References: <20070704052737.GB40018@demeter.hydra> In-Reply-To: <20070704052737.GB40018@demeter.hydra> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-questions@freebsd.org" Subject: Re: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 06:05:39 -0000 Chad Perrin wrote: > I have a couple of niggling little, er, "quirks" that I'd like to get > sorted out on my FreeBSD Thinkpad. > > 1. During boot, if I'm booting up anywhere but at home (where my static > IP address configuration applies), the startup messages pause for a few > long seconds at a message that says "Mounting late filesystems". When > plugged into the network at home, though, using my static IP > configuration, it swoops past that pretty quickly. Can someone tell me > what that's about? > > 2. For some reason, if I use DHCP at all then want to switch back to my > static IP setup, I have to restart the computer to get it to access the > Internet. I haven't been able to figure out why. If I recall > correctly, I can switch to static IP on bge0 and access other systems > on the network, but I can't do anything related to the Internet. Yes, > by the way, I am checking to make sure the contents of resolv.conf are > correct. > > Any ideas about how to figure out what's going on in either case would be > welcome. > > For #2 (maybe a long shot): Just recently I needed to change on the fly the IP address of one machine, and after a /etc/rc.d/netif restart, I lost Internet connectivity. Access to the local network was normal. This machine is behind an ADSL router (IP 192.168.0.250) which acts as the gateway. The problem was, after the IP address change the default gateway was lost. defaultrouter was present in rc.conf but was not applied again after the netif restart. A quick route add default 192.168.0.250 fixed it. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 06:13:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B43F16A46E for ; Wed, 4 Jul 2007 06:13:50 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id DD6A413C458 for ; Wed, 4 Jul 2007 06:13:48 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id 2F7D71D85AD for ; Wed, 4 Jul 2007 14:14:04 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02004-17 for ; Wed, 4 Jul 2007 14:13:58 +0800 (CST) Received: from [218.193.55.202] (unknown [125.77.224.188]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by bossdog.realss.com (Postfix) with ESMTP id 12B6B1D858F for ; Wed, 4 Jul 2007 14:13:32 +0800 (CST) From: Zhang Weiwu To: freebsd-questions@freebsd.org Content-Type: multipart/mixed; boundary="=-sG/YJx46JFPT6PZ48S14" Organization: Real Softservice Date: Wed, 04 Jul 2007 14:13:02 +0800 Message-Id: <1183529582.4965.18.camel@esmeralda> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 X-Virus-Scanned: amavisd-new at bossdog.realss.com Subject: only first PCMCIA card works X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 06:13:50 -0000 --=-sG/YJx46JFPT6PZ48S14 Content-Type: text/plain Content-Transfer-Encoding: 7bit Dear list Running FreeBSD-6.1 RELEASE on Thinkpad 380XD, I have been using this notebook for many years (and used FreeBSD from 4.7 to 6.1). An ethernet card is plugged on the first PCMCIA slot and I inserted my FC card reader (PCMCIA card produced by Hitachi) and noticed it's not detected (no message about it in dmesg) Later I discovered any card in the first PCMCIA slot works, any card in second slot, be it ethernet card or FC card adapter, doesn't work. I have pccard_enable="YES" in my rc.conf. dmesg told me this: # dmesg | grep pccard pccard0: <16-bit PCCard bus> on cbb0 pccard1: <16-bit PCCard bus> on cbb1 ep0: <3Com Corporation 3C589D> at port 0x100-0x10f irq 11 function 0 config 1 on pccard0 Actually I am not sure what to do next. I checked dmesg and found irq 11 is used by uchi0, as well as ep0, surprisingly both works, maybe my knowledge of IRQ is outdated. I also checked that my IRQ 3, 4 and 10 are not used (3 & 4 are free because my sio hardware is borken so I disabled it in /boot/devices.hint), so I write /etc/pccard.conf which says: irq 3 4 10 But after reboot the ep0 device still get 10 (I suspect it can get 3?) Then I go to added this to /boot/devices: hint.uhci.0.at="pci" hint.uhci.0.irq="3" After reboot uchi0 is still at irq 11. Strange. I attached both of my dmesg and kernel config file. Thanks for suggestions and hints on hardware knowledge to me! --=-sG/YJx46JFPT6PZ48S14 Content-Disposition: attachment; filename=QUASIMODO Content-Type: text/plain; name=QUASIMODO; charset=UTF-8 Content-Transfer-Encoding: 7bit # # GENERIC -- Generic kernel configuration file for FreeBSD/i386 # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ../../conf/NOTES and NOTES files. # If you are in doubt as to the purpose or necessity of a line, check first # in NOTES. # # $FreeBSD: src/sys/i386/conf/GENERIC,v 1.429.2.7.2.2 2006/05/01 00:15:12 scottl Exp $ machine i386 cpu I586_CPU ident QUASIMODO # To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" # Default places to look for devices. makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols options VESA options VGA_WIDTH90 options SC_PIXEL_MODE #options SCHED_ULE # ULE scheduler options SCHED_4BSD # 4BSD scheduler options PREEMPTION # Enable kernel thread preemption options INET # InterNETworking options INET6 # IPv6 communications protocols options FFS # Berkeley Fast Filesystem options SOFTUPDATES # Enable FFS soft updates support options UFS_ACL # Support for access control lists options UFS_DIRHASH # Improve performance on big directories options MD_ROOT # MD is a potential root device options NFSCLIENT # Network Filesystem Client options NFSSERVER # Network Filesystem Server options NFS_ROOT # NFS usable as /, requires NFSCLIENT options MSDOSFS # MSDOS Filesystem options CD9660 # ISO 9660 Filesystem options PROCFS # Process filesystem (requires PSEUDOFS) options PSEUDOFS # Pseudo-filesystem framework options GEOM_GPT # GUID Partition Tables. options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!] options COMPAT_FREEBSD4 # Compatible with FreeBSD4 options COMPAT_FREEBSD5 # Compatible with FreeBSD5 options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI options KTRACE # ktrace(1) support options SYSVSHM # SYSV-style shared memory options SYSVMSG # SYSV-style message queues options SYSVSEM # SYSV-style semaphores options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions options KBD_INSTALL_CDEV # install a CDEV entry in /dev options AHC_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~128k to driver. options AHD_REG_PRETTY_PRINT # Print register bitfields in debug # output. Adds ~215k to driver. options ADAPTIVE_GIANT # Giant mutex is adaptive. device apic # I/O APIC # Bus support. device eisa device pci # Floppy drives device fdc # ATA and ATAPI devices device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives device atapicd # ATAPI CDROM drives device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives options ATA_STATIC_ID # Static device numbering # SCSI Controllers device ahb # EISA AHA1742 family device ahc # AHA2940 and onboard AIC7xxx devices device ahd # AHA39320/29320 and onboard AIC79xx devices device amd # AMD 53C974 (Tekram DC-390(T)) device isp # Qlogic family #device ispfw # Firmware for QLogic HBAs- normally a module device mpt # LSI-Logic MPT-Fusion #device ncr # NCR/Symbios Logic device sym # NCR/Symbios Logic (newer chipsets + those of `ncr') device trm # Tekram DC395U/UW/F DC315U adapters device adv # Advansys SCSI adapters device adw # Advansys wide SCSI adapters device aha # Adaptec 154x SCSI adapters device aic # Adaptec 15[012]x SCSI adapters, AIC-6[23]60. device bt # Buslogic/Mylex MultiMaster SCSI adapters device ncv # NCR 53C500 device nsp # Workbit Ninja SCSI-3 device stg # TMC 18C30/18C50 # SCSI peripherals device scbus # SCSI bus (required for SCSI) device ch # SCSI media changers device da # Direct Access (disks) device sa # Sequential Access (tape etc) device cd # CD device pass # Passthrough device (direct SCSI access) device ses # SCSI Environmental Services (and SAF-TE) # RAID controllers interfaced to the SCSI subsystem device amr # AMI MegaRAID device arcmsr # Areca SATA II RAID device asr # DPT SmartRAID V, VI and Adaptec SCSI RAID device ciss # Compaq Smart RAID 5* device dpt # DPT Smartcache III, IV - See NOTES for options device hptmv # Highpoint RocketRAID 182x device rr232x # Highpoint RocketRAID 232x device iir # Intel Integrated RAID device ips # IBM (Adaptec) ServeRAID device mly # Mylex AcceleRAID/eXtremeRAID device twa # 3ware 9000 series PATA/SATA RAID # RAID controllers device aac # Adaptec FSA RAID device aacp # SCSI passthrough for aac (requires CAM) device ida # Compaq Smart RAID device mfi # LSI MegaRAID SAS device mlx # Mylex DAC960 family device pst # Promise Supertrak SX6000 device twe # 3ware ATA RAID # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc # AT keyboard controller device atkbd # AT keyboard device psm # PS/2 mouse device kbdmux # keyboard multiplexer device vga # VGA video card driver device splash # Splash screen and screen saver support # syscons is the default console driver, resembling an SCO console device sc # Enable this for the pcvt (VT220 compatible) console driver #device vt #options XSERVER # support for X server on a vt console #options FAT_CURSOR # start with block cursor device agp # support several AGP chipsets # Power management support (see NOTES for more options) device apm # Add suspend/resume support for the i8254. device pmtimer # PCCARD (PCMCIA) support # PCMCIA and cardbus bridge support device cbb # cardbus (yenta) bridge device pccard # PC Card (16-bit) bus # Serial (COM) ports device sio # 8250, 16[45]50 based serial ports # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device plip # TCP/IP over parallel device ppi # Parallel port interface device #device vpo # Requires scbus and da # If you've got a "dumb" serial or parallel PCI card that is # supported by the puc(4) glue driver, uncomment the following # line to enable it (connects to the sio and/or ppc drivers): #device puc # PCI Ethernet NICs. device de # DEC/Intel DC21x4x (``Tulip'') device em # Intel PRO/1000 adapter Gigabit Ethernet Card device ixgb # Intel PRO/10GbE Ethernet Card device txp # 3Com 3cR990 (``Typhoon'') device vx # 3Com 3c590, 3c595 (``Vortex'') # PCI Ethernet NICs that use the common MII bus controller code. # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs! device miibus # MII bus support device bce # Broadcom BCM5706/BCM5708 Gigabit Ethernet device bfe # Broadcom BCM440x 10/100 Ethernet device bge # Broadcom BCM570xx Gigabit Ethernet device dc # DEC/Intel 21143 and various workalikes device fxp # Intel EtherExpress PRO/100B (82557, 82558) device lge # Level 1 LXT1001 gigabit Ethernet device nge # NatSemi DP83820 gigabit Ethernet device nve # nVidia nForce MCP on-board Ethernet Networking device pcn # AMD Am79C97x PCI 10/100(precedence over 'lnc') device re # RealTek 8139C+/8169/8169S/8110S device rl # RealTek 8129/8139 device sf # Adaptec AIC-6915 (``Starfire'') device sis # Silicon Integrated Systems SiS 900/SiS 7016 device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet device ste # Sundance ST201 (D-Link DFE-550TX) device ti # Alteon Networks Tigon I/II gigabit Ethernet device tl # Texas Instruments ThunderLAN device tx # SMC EtherPower II (83c170 ``EPIC'') device vge # VIA VT612x gigabit Ethernet device vr # VIA Rhine, Rhine II device wb # Winbond W89C840F device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') # ISA Ethernet NICs. pccard NICs included. device cs # Crystal Semiconductor CS89x0 NIC # 'device ed' requires 'device miibus' device ed # NE[12]000, SMC Ultra, 3c503, DS8390 cards device ex # Intel EtherExpress Pro/10 and Pro/10+ device ep # Etherlink III based cards device fe # Fujitsu MB8696x based cards device ie # EtherExpress 8/16, 3C507, StarLAN 10 etc. device lnc # NE2100, NE32-VL Lance Ethernet cards device sn # SMC's 9000 series of Ethernet chips device xe # Xircom pccard Ethernet # Wireless NIC cards device wlan # 802.11 support device an # Aironet 4500/4800 802.11 wireless NICs. device awi # BayStack 660 and others device ral # Ralink Technology RT2500 wireless NICs. device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs. #device wl # Older non 802.11 Wavelan wireless NIC. # Pseudo devices. device loop # Network loopback device random # Entropy device device ether # Ethernet support device sl # Kernel SLIP device ppp # Kernel PPP device tun # Packet tunnel. device pty # Pseudo-ttys (telnet etc) device md # Memory "disks" device gif # IPv6 and IPv4 tunneling device faith # IPv6-to-IPv4 relaying (translation) # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # Note that 'bpf' is required for DHCP. device bpf # Berkeley packet filter # USB support device uhci # UHCI PCI->USB interface # I don't have below equipments ##device ohci # OHCI PCI->USB interface ##device ehci # EHCI PCI->USB interface (USB 2.0) device usb # USB Bus (required) #device udbp # USB Double Bulk Pipe devices device ugen # Generic device uhid # "Human Interface Devices" device ukbd # Keyboard device ulpt # Printer device umass # Disks/Mass storage - Requires scbus and da device ums # Mouse device ural # Ralink Technology RT2500USB wireless NICs device urio # Diamond Rio 500 MP3 player device uscanner # Scanners # USB Ethernet, requires miibus device aue # ADMtek USB Ethernet device axe # ASIX Electronics USB Ethernet device cdce # Generic USB over Ethernet device cue # CATC USB Ethernet device kue # Kawasaki LSI USB Ethernet device rue # RealTek RTL8150 USB Ethernet # USB to serial converter device uplcom device ucom # FireWire support device firewire # FireWire bus code device sbp # SCSI over FireWire (Requires scbus and da) device fwe # Ethernet over FireWire (non-standard!) device sound device snd_csa # to drive CS423x sound card --=-sG/YJx46JFPT6PZ48S14 Content-Disposition: attachment; filename=dmesg Content-Type: text/plain; name=dmesg; charset=UTF-8 Content-Transfer-Encoding: 7bit Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 6.1-RELEASE #2: Mon Jan 22 23:37:50 CST 2007 root@quasimodo.realss.com:/usr/obj/usr/src/sys/QUASIMODO Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Pentium/P55C (quarter-micron) (232.11-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x581 Stepping = 1 Features=0x8001bf real memory = 33357824 (31 MB) avail memory = 23166976 (22 MB) Intel Pentium detected, installing workaround for F00F bug kbd1 at kbdmux0 cpu0 on motherboard pcib0: pcibus 0 on motherboard pir0: on motherboard pci0: on pcib0 cbb0: mem 0x20822000-0x20822fff at device 2.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: mem 0x20821000-0x20821fff at device 2.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 $PIR: ROUTE_INTERRUPT failed. cbb: Unable to map IRQ... device_attach: cbb1 attach returned 12 pci0: at device 3.0 (no driver attached) isab0: at device 6.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfcf0-0xfcff at device 6.1 on pci0 ata0: on atapci0 ata1: on atapci0 uhci0: port 0x9000-0x901f irq 11 at device 6.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered pci0: at device 6.3 (no driver attached) pmtimer0 on isa0 orm0: at iomem 0xc0000-0xc9fff on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model Generic PS/2 mouse, device ID 0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: [FAST] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppbus0: on ppc0 plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) unknown: can't assign resources (irq) unknown: can't assign resources (port) unknown: can't assign resources (memory) unknown: can't assign resources (port) pcm0: at port 0x530-0x537,0x388-0x38b,0x220-0x233 irq 5 drq 1,0 on isa0 pcm0: [GIANT-LOCKED] unknown: can't assign resources (port) Timecounter "TSC" frequency 232106203 Hz quality 800 Timecounters tick every 1.000 msec ep0: <3Com Corporation 3C589D> at port 0x100-0x10f irq 11 function 0 config 1 on pccard0 ep0: Ethernet address: 00:60:97:92:c0:27 ad0: 3102MB at ata0-master UDMA33 acd0: CDROM at ata0-slave PIO3 Trying to mount root from ufs:/dev/ad0s1a --=-sG/YJx46JFPT6PZ48S14-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 06:18:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 557B816A421 for ; Wed, 4 Jul 2007 06:18:34 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 124A813C459 for ; Wed, 4 Jul 2007 06:18:33 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id EDC1A3989C for ; Wed, 4 Jul 2007 07:59:47 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id 98A3B3989A; Wed, 4 Jul 2007 07:59:47 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id DE8A23988E for ; Wed, 4 Jul 2007 07:59:43 +0200 (CEST) Message-ID: <468B374D.3020202@boosten.org> Date: Wed, 04 Jul 2007 07:59:41 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: FreeBSD Questions References: <20070704052737.GB40018@demeter.hydra> In-Reply-To: <20070704052737.GB40018@demeter.hydra> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000753-2, 07/03/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 06:18:34 -0000 Chad Perrin wrote: > I have a couple of niggling little, er, "quirks" that I'd like to get > sorted out on my FreeBSD Thinkpad. > > 2. For some reason, if I use DHCP at all then want to switch back to my > static IP setup, I have to restart the computer to get it to access the > Internet. I haven't been able to figure out why. If I recall > correctly, I can switch to static IP on bge0 and access other systems > on the network, but I can't do anything related to the Internet. Yes, > by the way, I am checking to make sure the contents of resolv.conf are > correct. > Check your default gateway when switching from DHCP to static. IIRC a /etc/rc.d/netif stop/start will recreate the default route. Peter From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 07:08:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A919A16A468 for ; Wed, 4 Jul 2007 07:08:36 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id 4321013C4C1 for ; Wed, 4 Jul 2007 07:08:35 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so274002uge for ; Wed, 04 Jul 2007 00:08:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Eq8FFKR4ekN3th1LmxV3KuPUYMno3ZkXmYj8uswPwZ9i0OFUDJgWapI0GOFpVjh/YGuxK9jPMgpOlB5gw1B3f1GVHuzRHVKUif34oIoV3QGKVfmkZ1pskhKJeIIFFUxO5vqfn04NKaeky+6aEBBhrvk4SZxjK6GCTmGaredH+4Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=i5mQUEqsZ5XqFqsMH9RfQP17FCClbmVKZoZ9bfOFTK5fQ8SmQV7ZZnCjx0TaN04U5laViwM9mO3iYO+eUsrdENGIqnPr+4THdPO7eHcugvs7Ia9CbOphg96sM5YC2VflMw6chGbDiNjjYiSxAV7isULyT12zJ59rF+ZBoVnOUvs= Received: by 10.82.182.1 with SMTP id e1mr17142461buf.1183532914027; Wed, 04 Jul 2007 00:08:34 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Wed, 4 Jul 2007 00:08:34 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 02:08:34 -0500 From: "illoai@gmail.com" To: "Frank Bonnet" In-Reply-To: <46895359.4090503@esiee.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46895359.4090503@esiee.fr> Cc: freebsd-questions@freebsd.org Subject: Re: Anyone has migrated Xorg from 6.9 to 7.2 with success ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 07:08:36 -0000 On 02/07/07, Frank Bonnet wrote: > Hello > > I tried twice starting from a fresh 6.2-R installed machine > and followed intructions of the updating file but it failed > twice ... Once Xorg has been upgraded I've never been able > to start X server again , I use KDE so I start X server with > the kdm command. > > Thanks a lot for any help 6.2-RELEASE, 6.2-STABLE, and 7.0-CURRENT without any (major) problems. What did you do wrong that I didn't? -- -- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 07:35:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03E9916A469 for ; Wed, 4 Jul 2007 07:35:21 +0000 (UTC) (envelope-from emss@free.fr) Received: from kellthuzad.dmz.nerim.net (smtp-dmz-233-wednesday.dmz.nerim.net [195.5.254.233]) by mx1.freebsd.org (Postfix) with ESMTP id B6A5913C4B0 for ; Wed, 4 Jul 2007 07:35:20 +0000 (UTC) (envelope-from emss@free.fr) Received: from mallaury.nerim.net (smtp-103-wednesday.noc.nerim.net [62.4.17.103]) by kellthuzad.dmz.nerim.net (Postfix) with ESMTP id A0DDA15EE0 for ; Wed, 4 Jul 2007 09:35:15 +0200 (CEST) Received: from srvbsdnanssv.interne.kisoft-services.com (kisoft.net1.nerim.net [62.212.107.51]) by mallaury.nerim.net (Postfix) with ESMTP id 295C34F3F6; Wed, 4 Jul 2007 09:35:12 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by srvbsdnanssv.interne.kisoft-services.com (Postfix) with ESMTP id 05576DE0A; Wed, 4 Jul 2007 09:35:16 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.kisoft-services.com Received: from srvbsdnanssv.interne.kisoft-services.com ([127.0.0.1]) by localhost (srvbsdnanssv.interne.kisoft-services.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nULmE0J6ltT7; Wed, 4 Jul 2007 09:35:11 +0200 (CEST) Received: by srvbsdnanssv.interne.kisoft-services.com (Postfix, from userid 1001) id EE0DBDE10; Wed, 4 Jul 2007 09:35:10 +0200 (CEST) To: Thierry Lacoste From: Eric Masson In-Reply-To: <200707032342.31435.lacoste@miage.univ-paris12.fr> (Thierry Lacoste's message of "Tue, 3 Jul 2007 23:42:30 +0200") References: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> <200707032342.31435.lacoste@miage.univ-paris12.fr> X-Operating-System: FreeBSD 6.2-RELEASE-p5 i386 Date: Wed, 04 Jul 2007 09:35:10 +0200 Message-ID: <86zm2ctydt.fsf@srvbsdnanssv.interne.kisoft-services.com> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: pam_ldap 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: Wed, 04 Jul 2007 07:35:21 -0000 Thierry Lacoste writes: Hello, > I have a very similar setting on 6.1 > Maybe you have an ACL problem (see below). > What does the following command give? > ldapsearch -x -D "cn=testuser,ou=people,dc=interne,dc=example,dc=org" -W The command asks for an ldap password that I type but, the result is : ldap_bind: Invalid credentials (49). I've double checked the password and reinitialized the ldap database, but no change atm. -- BC> désolé, mais j'ai pas pû m'empecher. On a vu, mais bon, vraiment fallait pas, vous ne manquiez pas encore assez. -+- RM in : En période de manque -+- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 07:40:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D76D416A400 for ; Wed, 4 Jul 2007 07:40:56 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id 7C0EE13C468 for ; Wed, 4 Jul 2007 07:40:55 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l647enKw058715; Wed, 4 Jul 2007 11:40:50 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l647ei5L058714; Wed, 4 Jul 2007 11:40:44 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Wed, 4 Jul 2007 11:40:43 +0400 From: Yuri Pankov To: Mikhail Goriachev Message-ID: <20070704074043.GA1141@darklight.org.ru> References: <468A2723.8020207@skoberne.net> <468B2CB4.80605@webanoide.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline In-Reply-To: <468B2CB4.80605@webanoide.org> User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Wed, 04 Jul 2007 11:40:51 +0400 (MSD) Cc: User Questions , Nejc =?utf-8?Q?=C5?= koberne Subject: Re: BIND to listen on all interfaces? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 07:40:56 -0000 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2007 at 03:14:28PM +1000, Mikhail Goriachev wrote: > Nejc =C5=A0koberne wrote: > > Hello, > >=20 > > I am running BIND (from base system) on my FreeBSD 5.3 machine. The box= is > > connected to outer world via ADSL connection (tun0 device). If the name= d is > > started when the machine is connected to the internet, then everything = is OK, > > I get this by saying netstat -n -a: > >=20 > > udp4 0 0 X.X.X.X.53 *.* > > udp4 0 0 127.0.0.1.53 *.* > > udp4 0 0 10.0.1.3.53 *.* > >=20 > > but at boot time, the named starts before the PPP connection is started= , so > > the tun0 interface is not up yet. So that's why I get this: > >=20 > > udp4 0 0 127.0.0.1.53 *.* > > udp4 0 0 10.0.1.3.53 *.* > >=20 > > In BIND manual, it says: > >=20 > > "If no listen-on is specified, the server will listen on port 53 on all= interfaces." > >=20 > > I also tried to specify the ADSL IP address in named.conf (it is static= ), but it is > > still a no go. I don't have such problems with other daemons! Any ideas? >=20 >=20 >=20 > An idea: Assuming you're using ppp, let it restart named after it > connects to the Internet. Have a /etc/ppp/ppp.linkup and put the > following or similar into it: >=20 > adsl: > ! /etc/rc.d/named restart >=20 >=20 > Read the ppp man pages for further details. >=20 >=20 > Regards, > Mikhail. >=20 > --=20 > Mikhail Goriachev > Webanoide >=20 > Telephone: +61 (0)3 62252501 > Mobile Phone: +61 (0)4 38255158 > E-Mail: mikhailg@webanoide.org > Web: www.webanoide.org Another option can be the use of interface-interval: interface-interval The server will scan the network interface list every interface-interval minutes. The default is 60 minutes. The maximum value is 28 days (40320 minutes). If set to 0, interface scanning will only occur when the configuration file is loaded. After the scan, the server will begin listening for queries on any newly discovered interfaces (provided they are allowed by the listen-on configuration), and will stop listening on interfaces that have gone away.=20 (from BIND ARM). HTH, Yuri --KsGdsel6WgEHnImy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGi077eoAklVFrLdgRAlJ+AKCGUwiknfl/w9I4Z8CAtkcXLDCDOwCfQrg0 Obc1MDCl56OPlvfWBKz8tng= =xcQW -----END PGP SIGNATURE----- --KsGdsel6WgEHnImy-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 08:17:47 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D38A916A421 for ; Wed, 4 Jul 2007 08:17:47 +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 2C61D13C457 for ; Wed, 4 Jul 2007 08:17:46 +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.12.11) with ESMTP id l648HYNK011444 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 4 Jul 2007 15:17:34 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l648HXZZ034086; Wed, 4 Jul 2007 15:17:33 +0700 (ICT) Date: Wed, 4 Jul 2007 15:17:33 +0700 (ICT) Message-Id: <200707040817.l648HXZZ034086@banyan.cs.ait.ac.th> From: Olivier Nicole To: on@cs.ait.ac.th In-reply-to: <200706280816.l5S8GjJf053198@banyan.cs.ait.ac.th> (message from Olivier Nicole on Thu, 28 Jun 2007 15:16:45 +0700 (ICT)) References: <200706280816.l5S8GjJf053198@banyan.cs.ait.ac.th> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: questions@freebsd.org Subject: Re: FreeBSD 5.5 hangs on boot when pluging mouse/Intel Gigabit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 08:17:47 -0000 Hi, > I am in process of upgrading a serie of servers from 4.11 to 5.5 (and > them 6.2). > > I am on the 5.5 phase. I did 2 machines sucessfully. On upgrading the > thrid one, the boot will hang after SCSI buss reset, whenver I plug in > the mouse or an Intel Pro/1000 MT Gigabit card. I don't know the reason, but in 6.2 the problem vanished. > The server I am upgrading was working fine for 2 years and more. > > The 2 machines I did previously are the exact same mother board as the > one making trouble, but the one I upgrade is 2 CPU. more RAM and a > tape device. > > One of the 2 machines that succeded is using the same add on Intel Pro > Gigabit. > > All machines are connected to the same KVM switch. > > Kernel is GENERIC from distribution. > > The exact place it hangs is shown in the dmesg bellow: > > Copyright (c) 1992-2006 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD 5.5-RELEASE-p13 #2: Thu Jun 28 12:36:00 ICT 2007 > root@amanda.cs.ait.ac.th:/usr/obj/usr/src/sys/GENERIC > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: Intel Pentium III (800.03-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x686 Stepping = 6 > Features=0x383fbff > real memory = 402632704 (383 MB) > avail memory = 384299008 (366 MB) > ACPI APIC Table: > ioapic0 irqs 0-15 on motherboard > ioapic1 irqs 16-31 on motherboard > npx0: on motherboard > npx0: INT 16 interface > acpi0: on motherboard > acpi0: Power Button (fixed) > Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 > acpi_timer0: <32-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 > cpu0: on acpi0 > acpi_button0: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > fxp0: port 0xd800-0xd83f mem 0xfd800000-0xfd8fffff,0xfe000000-0xfe000fff irq 20 at device 2.0 on pci0 > miibus0: on fxp0 > inphy0: on miibus0 > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > fxp0: Ethernet address: 00:e0:18:0a:97:a6 > pci0: at device 7.0 (no driver attached) > isab0: port 0xe800-0xe80f at device 15.0 on pci0 > isa0: on isab0 > atapci0: port 0xd000-0xd00f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 15.1 on pci0 > ata0: channel #0 on atapci0 > ata1: channel #1 on atapci0 > ohci0: mem 0xfb000000-0xfb000fff irq 4 at device 15.2 on pci0 > usb0: OHCI version 1.0, legacy support > usb0: on ohci0 > usb0: USB revision 1.0 > uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub0: 4 ports with 4 removable, self powered > pcib1: on acpi0 > pci1: on pcib1 > sym0: <896> port 0xb800-0xb8ff mem 0xfa000000-0xfa001fff,0xfa800000-0xfa8003ff irq 24 at device 5.0 on pci1 > sym0: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking > sym0: open drain IRQ line driver, using on-chip SRAM > sym0: using LOAD/STORE-based firmware. > sym0: handling phase mismatch from SCRIPTS. > sym1: <896> port 0xb400-0xb4ff mem 0xf9000000-0xf9001fff,0xf9800000-0xf98003ff irq 25 at device 5.1 on pci1 > sym1: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking > sym1: open drain IRQ line driver, using on-chip SRAM > sym1: using LOAD/STORE-based firmware. > sym1: handling phase mismatch from SCRIPTS. > atkbdc0: port 0x64,0x60 irq 1 on acpi0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > orm0: at iomem 0xd0000-0xd3fff,0xc0000-0xca7ff on isa0 > pmtimer0 on isa0 > ppc0: parallel port not found. > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > sio0: configured irq 4 not in bitmap of probed irqs 0 > sio0: port may not be enabled > sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 > sio0: type 8250 or not responding > sio1: configured irq 3 not in bitmap of probed irqs 0 > sio1: port may not be enabled > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > Timecounter "TSC" frequency 800034408 Hz quality 800 > Timecounters tick every 10.000 msec > acd0: CDROM at ata0-master PIO4 > Waiting 15 seconds for SCSI devices to settle > (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. > (noperiph:sym1:0:-1:-1): SCSI BUS reset delivered. > > ****** Hangs here ***** > > sa0 at sym1 bus 0 target 2 lun 0 > sa0: Removable Sequential Access SCSI-2 device > sa0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit) > da0 at sym0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-3 device > da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled > da0: 17522MB (35885168 512 byte sectors: 255H 63S/T 2233C) > da1 at sym0 bus 0 target 1 lun 0 > da1: Fixed Direct Access SCSI-3 device > da1: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled > da1: 17522MB (35885168 512 byte sectors: 255H 63S/T 2233C) > da2 at sym0 bus 0 target 2 lun 0 > da2: Fixed Direct Access SCSI-3 device > da2: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled > da2: 17522MB (35885168 512 byte sectors: 255H 63S/T 2233C) > da3 at sym0 bus 0 target 3 lun 0 > da3: Fixed Direct Access SCSI-3 device > da3: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled > da3: 17522MB (35885168 512 byte sectors: 255H 63S/T 2233C) > Mounting root from ufs:/dev/da0s1a > > > Dmesg for one of the machine that is running fine, not the em0 at the end. > > Copyright (c) 1992-2006 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 > The Regents of the University of California. All rights reserved. > FreeBSD 5.5-RELEASE-p13 #0: Wed Jun 27 11:40:24 ICT 2007 > root@database.cs.ait.ac.th:/usr/obj/usr/src/sys/GENERIC > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: Intel Pentium III (800.03-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x686 Stepping = 6 > Features=0x383fbff > real memory = 134197248 (127 MB) > avail memory = 121659392 (116 MB) > ACPI APIC Table: > ioapic0 irqs 0-15 on motherboard > ioapic1 irqs 16-31 on motherboard > npx0: on motherboard > npx0: INT 16 interface > acpi0: on motherboard > acpi0: Power Button (fixed) > Timecounter "ACPI-safe" frequency 3579545 Hz quality 1000 > acpi_timer0: <32-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 > cpu0: on acpi0 > acpi_button0: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > fxp0: port 0xd800-0xd83f mem 0xfd800000-0xfd8fffff,0xfe000000-0xfe000fff irq 20 at device 2.0 on pci0 > miibus0: on fxp0 > inphy0: on miibus0 > inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto > fxp0: Ethernet address: 00:e0:18:0a:97:d7 > em0: port 0xd400-0xd43f mem 0xfc800000-0xfc81ffff,0xfd000000-0xfd01ffff irq 19 at device 6.0 on pci0 > em0: Ethernet address: 00:07:e9:2a:76:13 > pci0: at device 7.0 (no driver attached) > isab0: port 0xe800-0xe80f at device 15.0 on pci0 > isa0: on isab0 > atapci0: port 0xb800-0xb80f,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 15.1 on pci0 > ata0: channel #0 on atapci0 > ata1: channel #1 on atapci0 > ohci0: mem 0xfa000000-0xfa000fff irq 9 at device 15.2 on pci0 > usb0: OHCI version 1.0, legacy support > usb0: on ohci0 > usb0: USB revision 1.0 > uhub0: (0x1166) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 > uhub0: 4 ports with 4 removable, self powered > pcib1: on acpi0 > pci1: on pcib1 > sym0: <896> port 0xb400-0xb4ff mem 0xf9000000-0xf9001fff,0xf9800000-0xf98003ff irq 24 at device 5.0 on pci1 > sym0: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking > sym0: open drain IRQ line driver, using on-chip SRAM > sym0: using LOAD/STORE-based firmware. > sym0: handling phase mismatch from SCRIPTS. > sym1: <896> port 0xb000-0xb0ff mem 0xf8000000-0xf8001fff,0xf8800000-0xf88003ff irq 25 at device 5.1 on pci1 > sym1: Symbios NVRAM, ID 7, Fast-40, LVD, parity checking > sym1: open drain IRQ line driver, using on-chip SRAM > sym1: using LOAD/STORE-based firmware. > sym1: handling phase mismatch from SCRIPTS. > atkbdc0: port 0x64,0x60 irq 1 on acpi0 > atkbd0: irq 1 on atkbdc0 > kbd0 at atkbd0 > psm0: irq 12 on atkbdc0 > psm0: model IntelliMouse, device ID 3 > sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 > sio0: type 16550A > sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 > sio1: type 16550A > ppc0: port 0x778-0x77a,0x378-0x37f irq 7 drq 3 on acpi0 > ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode > ppc0: FIFO with 16/16/8 bytes threshold > ppbus0: on ppc0 > plip0: on ppbus0 > lpt0: on ppbus0 > lpt0: Interrupt-driven port > ppi0: on ppbus0 > fdc0: port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0 > fd0: <1440-KB 3.5" drive> on fdc0 drive 0 > orm0: at iomem 0xd0000-0xd3fff,0xc0000-0xca7ff on isa0 > pmtimer0 on isa0 > sc0: at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=0x300> > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 > Timecounter "TSC" frequency 800034534 Hz quality 800 > Timecounters tick every 10.000 msec > acd0: CDROM at ata0-master PIO4 > Waiting 15 seconds for SCSI devices to settle > (noperiph:sym0:0:-1:-1): SCSI BUS reset delivered. > (noperiph:sym1:0:-1:-1): SCSI BUS reset delivered. > da0 at sym0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-3 device > da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled > da0: 17547MB (35937500 512 byte sectors: 255H 63S/T 2237C) > Mounting root from ufs:/dev/da0s1a > em0: Link is up 1000 Mbps Full Duplex From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 08:50:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4CD616A469 for ; Wed, 4 Jul 2007 08:50:21 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 90B0813C45A for ; Wed, 4 Jul 2007 08:50:21 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: by py-out-1112.google.com with SMTP id u77so4199907pyb for ; Wed, 04 Jul 2007 01:50:21 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=Oez645XXvWGaWBAneIic5E8soavT9fpnVyV6NHo0lN1NW0oJf/9A1J8hTYtengW7nbFAwosLi2cAng4PdBPrSo50cMwNWRvHNfZQaWR/hkeMHUjR4a8+dXPHQjn3WotHZDuV4kFQZFFymUDIBY1VBxcIBen8K/46rTKQV1dqjec= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=n+X1pBe2V591aXgxLRSzmXrFNM02ssYTRk9SZZiF5uvct3Lp2WN/QBS9Rl8UxcxAT+Q/sUS40p/JzM7IX9uXb9Qqp1WSbu8BySa90wb7/p/QQ/L9+qmUSoyD3aEe6j/VE3UhAa1lGl26Hie/mchzTTDYqbIBxT4LoXYRgDE8sY8= Received: by 10.65.186.18 with SMTP id n18mr12530258qbp.1183539021180; Wed, 04 Jul 2007 01:50:21 -0700 (PDT) Received: from ?IPv6:::ffff:127.0.0.1? ( [217.206.187.79]) by mx.google.com with ESMTP id h6sm10029406nfh.2007.07.04.01.50.20 (version=SSLv3 cipher=RC4-MD5); Wed, 04 Jul 2007 01:50:20 -0700 (PDT) From: Tom Evans To: Peter Boosten In-Reply-To: <468B374D.3020202@boosten.org> References: <20070704052737.GB40018@demeter.hydra> <468B374D.3020202@boosten.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-YsSZ+33LOJPzSVHTNcSv" Date: Wed, 04 Jul 2007 09:50:18 +0100 Message-Id: <1183539018.1213.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Cc: FreeBSD Questions Subject: Re: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 08:50:21 -0000 --=-YsSZ+33LOJPzSVHTNcSv Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2007-07-04 at 07:59 +0200, Peter Boosten wrote: > Chad Perrin wrote: > > I have a couple of niggling little, er, "quirks" that I'd like to get > > sorted out on my FreeBSD Thinkpad. > >=20 > > 2. For some reason, if I use DHCP at all then want to switch back to = my > > static IP setup, I have to restart the computer to get it to access t= he > > Internet. I haven't been able to figure out why. If I recall > > correctly, I can switch to static IP on bge0 and access other systems > > on the network, but I can't do anything related to the Internet. Yes= , > > by the way, I am checking to make sure the contents of resolv.conf ar= e > > correct. > >=20 >=20 > Check your default gateway when switching from DHCP to static. IIRC a > /etc/rc.d/netif stop/start will recreate the default route. >=20 > Peter Not as I recall though. You will need to do a /etc/rc.d/routing restart if your default router changes. The only time you might not need it is when your routes are setup via DHCP. --=-YsSZ+33LOJPzSVHTNcSv Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGi19GlcRvFfyds/cRAhIXAJ9i8ZHYAemuzqz0ki2zzp+74bo5+ACgrV9E 692JgW+yigm5mKGnw0UqvJI= =GNdV -----END PGP SIGNATURE----- --=-YsSZ+33LOJPzSVHTNcSv-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 08:53:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B55216A421 for ; Wed, 4 Jul 2007 08:53:48 +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 BFEAF13C45A for ; Wed, 4 Jul 2007 08:53:47 +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.66) for freebsd-questions@freebsd.org with esmtp (envelope-from ) id <1I60MA-0008AH-TT>; Wed, 04 Jul 2007 10:37:02 +0200 Received: from telesto.geoinf.fu-berlin.de ([130.133.86.198]) by inpost2.zedat.fu-berlin.de (Exim 4.66) for freebsd-questions@freebsd.org with esmtpsa (envelope-from ) id <1I60MA-00035H-S1>; Wed, 04 Jul 2007 10:37:02 +0200 Message-ID: <468B5C30.5080007@zedat.fu-berlin.de> Date: Wed, 04 Jul 2007 08:37:04 +0000 From: "O. Hartmann" Organization: Freie =?ISO-8859-15?Q?Universit=E4t_Berlin?= User-Agent: Thunderbird 2.0.0.4 (X11/20070628) 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: Xorg 7.2/FreeBSD 7.0-CURRENT and OpenGL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 08:53:48 -0000 Hello out there. Days ago I migrated my lab's box from FreeBSD 6.2-STABLE to 7.0-CURRENT/i386 due to my ZFS-desires. Before the migration, I used successfully Xorg 7.2 and some very usefull tools for astronomers, like 'Stellarium'. Today I tried to install Stellarium out of the ports, the compile process succeeded but I receive this error after trying to start the application: ----- hartmann: stellarium ------------------------------------------------------- [ This is Stellarium 0.8.2 - http://www.stellarium.org ] [ Copyright (C) 2000-2006 Fabien Chereau et al ] ------------------------------------------------------- Warning: Couldn't set 1024x768 video mode (X11 driver not configured with OpenGL), retrying with stencil size 0 Error: Couldn't set 1024x768 video mode: X11 driver not configured with OpenGL! ---- LDD result is shown as follows, but very useless, I guess. My video card is an older ELSA GLADIAC with an older nVidia FX4500 chipset, I guess. But that doen't matter due to the fact prior to the switch to FreeBSD 7.0 I hadn't any problems with OpenGL. ---- ldd /usr/local/lib/xorg/modules/drivers/nv_drv.so /usr/local/lib/xorg/modules/drivers/nv_drv.so: libc.so.7 => /lib/libc.so.7 (0x2807d000) ---- Sorry, the list may be wrong, but I hope there will be someone out here also ran into that problem and has hopefully solutions or tips handy. Thanks in advance, Oliver -- Oliver Hartmann Freie Universitaet Berlin From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 08:56:16 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BE6E16A468 for ; Wed, 4 Jul 2007 08:56:16 +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 15E3E13C458 for ; Wed, 4 Jul 2007 08:56:14 +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.12.11) with ESMTP id l648uD8n015222 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 4 Jul 2007 15:56:13 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l648uDbG039253; Wed, 4 Jul 2007 15:56:13 +0700 (ICT) Date: Wed, 4 Jul 2007 15:56:13 +0700 (ICT) Message-Id: <200707040856.l648uDbG039253@banyan.cs.ait.ac.th> From: Olivier Nicole To: questions@freebsd.org X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: Subject: Recursivity of -r and -R in portupgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 08:56:16 -0000 Hi, I am wondering is the option -R and -r are mutually recursive in portupgrade. That is, if the option -R applies to every ports detected by -r and respectively if -r applies to every ports detected by -R. Lest take the example of: portupgrade -fRr gd gd depends on png, does it upgrade png with portupgrade -fRr png? php4-gd is built from gd, does it upgrade php4-gd with portupgrade -Rrf php4-gd? (That will in turn upgrade php, maybe apache...) Best regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 08:57:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C02216A46C for ; Wed, 4 Jul 2007 08:57:08 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 276E513C45B for ; Wed, 4 Jul 2007 08:57:08 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 4B4BA3989C for ; Wed, 4 Jul 2007 10:57:07 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id 1C27A3989A; Wed, 4 Jul 2007 10:57:07 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id F32C23988E for ; Wed, 4 Jul 2007 10:57:03 +0200 (CEST) Message-ID: <468B60DE.8020203@boosten.org> Date: Wed, 04 Jul 2007 10:57:02 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: FreeBSD Questions References: <20070704052737.GB40018@demeter.hydra> <468B374D.3020202@boosten.org> <1183539018.1213.7.camel@localhost> In-Reply-To: <1183539018.1213.7.camel@localhost> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000753-2, 07/03/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 08:57:08 -0000 Tom Evans wrote: > On Wed, 2007-07-04 at 07:59 +0200, Peter Boosten wrote: >> Chad Perrin wrote: >>> I have a couple of niggling little, er, "quirks" that I'd like to get >>> sorted out on my FreeBSD Thinkpad. >>> >>> 2. For some reason, if I use DHCP at all then want to switch back to my >>> static IP setup, I have to restart the computer to get it to access the >>> Internet. I haven't been able to figure out why. If I recall >>> correctly, I can switch to static IP on bge0 and access other systems >>> on the network, but I can't do anything related to the Internet. Yes, >>> by the way, I am checking to make sure the contents of resolv.conf are >>> correct. >>> >> Check your default gateway when switching from DHCP to static. IIRC a >> /etc/rc.d/netif stop/start will recreate the default route. >> >> Peter > > Not as I recall though. You will need to do a /etc/rc.d/routing restart > if your default router changes. The only time you might not need it is > when your routes are setup via DHCP. > Correction: netif start/stop will _NOT_ recreate the default route... it was a bit early for me :-) Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 09:16:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF23A16A46B for ; Wed, 4 Jul 2007 09:16:54 +0000 (UTC) (envelope-from emss@free.fr) Received: from kraid.nerim.net (smtp-103-wednesday.nerim.net [62.4.16.103]) by mx1.freebsd.org (Postfix) with ESMTP id AED3E13C45D for ; Wed, 4 Jul 2007 09:16:54 +0000 (UTC) (envelope-from emss@free.fr) Received: from srvbsdnanssv.interne.kisoft-services.com (kisoft.net1.nerim.net [62.212.107.51]) by kraid.nerim.net (Postfix) with ESMTP id 2B9BACF0F1; Wed, 4 Jul 2007 11:16:53 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by srvbsdnanssv.interne.kisoft-services.com (Postfix) with ESMTP id 2E0D7DDFF; Wed, 4 Jul 2007 11:16:52 +0200 (CEST) X-Virus-Scanned: amavisd-new at interne.kisoft-services.com Received: from srvbsdnanssv.interne.kisoft-services.com ([127.0.0.1]) by localhost (srvbsdnanssv.interne.kisoft-services.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yu6-qBB2qnDk; Wed, 4 Jul 2007 11:16:49 +0200 (CEST) Received: by srvbsdnanssv.interne.kisoft-services.com (Postfix, from userid 1001) id 122E9DDFE; Wed, 4 Jul 2007 11:16:49 +0200 (CEST) To: Thierry Lacoste From: Eric Masson In-Reply-To: <86zm2ctydt.fsf@srvbsdnanssv.interne.kisoft-services.com> (Eric Masson's message of "Wed, 04 Jul 2007 09:35:10 +0200") References: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> <200707032342.31435.lacoste@miage.univ-paris12.fr> <86zm2ctydt.fsf@srvbsdnanssv.interne.kisoft-services.com> X-Operating-System: FreeBSD 6.2-RELEASE-p5 i386 Date: Wed, 04 Jul 2007 11:16:49 +0200 Message-ID: <86ved0ttoe.fsf@srvbsdnanssv.interne.kisoft-services.com> User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.5-b28 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: pam_ldap 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: Wed, 04 Jul 2007 09:16:55 -0000 Eric Masson writes: Follow up to myself, sorry > The command asks for an ldap password that I type but, the result is : > ldap_bind: Invalid credentials (49). > > I've double checked the password and reinitialized the ldap database, > but no change atm. I've rebuilt all ports, with no success until I created the /etc/pam.d/ldap file as stated in pam_ldap's pkg-message. It works fine now, and pam_mkhomedir creates home directory on first login. Sorry for the noise. -- MW >Tss... Un cybermaquereau. On aura tout vu ! JdC> Pourquoi pas ? Il doit bien exister des cybermorues. -+- in : - Les joies du cybersexe -+- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 09:43:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 603E516A400 for ; Wed, 4 Jul 2007 09:43:22 +0000 (UTC) (envelope-from lacoste@miage.univ-paris12.fr) Received: from smtp23.orange.fr (smtp23.orange.fr [193.252.22.30]) by mx1.freebsd.org (Postfix) with ESMTP id 2424513C480 for ; Wed, 4 Jul 2007 09:43:22 +0000 (UTC) (envelope-from lacoste@miage.univ-paris12.fr) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf2338.orange.fr (SMTP Server) with ESMTP id 48F441C0008C for ; Wed, 4 Jul 2007 11:43:21 +0200 (CEST) Received: from [192.168.1.24] (ASte-Genev-Bois-151-1-80-198.w81-48.abo.wanadoo.fr [81.48.109.198]) by mwinf2338.orange.fr (SMTP Server) with ESMTP id 1F2711C00085; Wed, 4 Jul 2007 11:43:21 +0200 (CEST) X-ME-UUID: 20070704094321127.1F2711C00085@mwinf2338.orange.fr From: Thierry Lacoste Organization: MIAGE To: freebsd-questions@freebsd.org Date: Wed, 4 Jul 2007 11:41:53 +0200 User-Agent: KMail/1.9.5 References: <86sl85tkvy.fsf@srvbsdnanssv.interne.kisoft-services.com> <200707032342.31435.lacoste@miage.univ-paris12.fr> <86zm2ctydt.fsf@srvbsdnanssv.interne.kisoft-services.com> In-Reply-To: <86zm2ctydt.fsf@srvbsdnanssv.interne.kisoft-services.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707041141.54293.lacoste@miage.univ-paris12.fr> Cc: Eric Masson Subject: Re: pam_ldap 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: Wed, 04 Jul 2007 09:43:22 -0000 On Wednesday 04 July 2007 09:35, Eric Masson wrote: > Thierry Lacoste writes: > > Hello, > > > I have a very similar setting on 6.1 > > Maybe you have an ACL problem (see below). > > What does the following command give? > > ldapsearch -x -D "cn=testuser,ou=people,dc=interne,dc=example,dc=org" -W > > The command asks for an ldap password that I type but, the result is : > ldap_bind: Invalid credentials (49). > > I've double checked the password and reinitialized the ldap database, > but no change atm. Simplify your slapd.conf as much as possible. When the above ldapsearch works throw in changes step by step. In particular you should probably start with ACLs like these: access to attrs=userPassword by anonymous auth by self write by * none access to * by * read Add "loglevel 128" to your slapd.conf to log access control list processing. BTW what does ldapsearch -x -D "cn=Manager, dc=interne, dc=example, dc=org" -W give? Regards, Thierry From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 11:26:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7127D16A421 for ; Wed, 4 Jul 2007 11:26:06 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 489F113C459 for ; Wed, 4 Jul 2007 11:26:06 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 1A6CF5191F for ; Wed, 4 Jul 2007 07:26:04 -0400 (EDT) Date: Wed, 4 Jul 2007 12:26:01 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070704122601.2f860027@gumby.homeunix.com.> In-Reply-To: <20070704040550.GC39459@demeter.hydra> References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> <20070704031716.GB39459@demeter.hydra> <18059.5849.930990.765261@jerusalem.litteratus.org> <20070704040550.GC39459@demeter.hydra> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 11:26:06 -0000 On Tue, 3 Jul 2007 22:05:50 -0600 Chad Perrin wrote: > On Tue, Jul 03, 2007 at 11:41:13PM -0400, Robert Huff wrote: > > > > Chad Perrin writes: > > > > > Isn't Perl part of the base system these days? > > > > Perl has not been part of the base system for several years > > and was deprecated for some time before that. > > Is it part of the default install without being part of the base > system, then? I don't recall needing to install it after system > install on this laptop (using FreeBSD 6.2-RELEASE). A huge number of ports and packages have it as a dependency. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 12:25:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC5C516A400 for ; Wed, 4 Jul 2007 12:25:57 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.freebsd.org (Postfix) with ESMTP id 4959B13C45E for ; Wed, 4 Jul 2007 12:25:56 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: by ug-out-1314.google.com with SMTP id o4so320194uge for ; Wed, 04 Jul 2007 05:25:55 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=jgdie3zt9Ng3zxNQShgspgiCW/we0sB15aOPugNMsHKv4FvEGKZhayFA46WxMpD+3CY9siM5F3OOEq6UtEq9QUQpq7CWVBhxZFfk8WfKNBcZ4OB0OWk7qZ+7U/+lv7TUrMeIYfZVAsHDaC9SutNO6UuNHVSpWo4ROyB3oMxAwnc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=ky9UGG3a0nU+fvR8RcNPkFyWX55Y0iiI1prcKWshFhFYkLjLNE20wYuY5CbtkynxQ/cq+MFcr8C1h4jwGy9x791ae27NntN1KZM/sb8nz8k7JC0uA2sNIWrluhJorKFkNQrUFbBs9y9/ZiBJ5DCwWN2g/ky4cVYmWXOuXlZRrgA= Received: by 10.78.137.7 with SMTP id k7mr4079900hud.1183551955723; Wed, 04 Jul 2007 05:25:55 -0700 (PDT) Received: from ?IPv6:::ffff:127.0.0.1? ( [217.206.187.79]) by mx.google.com with ESMTP id d24sm10890669nfh.2007.07.04.05.25.52 (version=SSLv3 cipher=RC4-MD5); Wed, 04 Jul 2007 05:25:52 -0700 (PDT) From: Tom Evans To: Chuck Swiger In-Reply-To: <46892B57.9000801@mac.com> References: <20070629170001.045ca190@localhost> <200706292246.14511.slogster@gmail.com> <20070702114539.3bd9fdb0@localhost> <46892B57.9000801@mac.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Quc5SfE3MYHY1utBJaCq" Date: Wed, 04 Jul 2007 13:25:50 +0100 Message-Id: <1183551950.1213.14.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Cc: Norberto Meijome , freebsd-questions@freebsd.org Subject: Re: freebsd / gateway / parental control X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 12:25:57 -0000 --=-Quc5SfE3MYHY1utBJaCq Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2007-07-02 at 12:44 -0400, Chuck Swiger wrote: > Norberto Meijome wrote: > > On Fri, 29 Jun 2007 22:46:10 +0200 > > Momchil Ivanov wrote: > >> 4) Forget about the DSL router. Box with wireless NIC, 1 NIC for home = net, 1=20 > >> NIC for the DSL > >> - same as above, just have to tell your box how to connect to your IS= P > >=20 > > ok, this is interesting. You mean, plug the phone line straight into, s= ay, > > fxp1 ? and then using ppp to connect over PPoE to your ISP?=20 > >=20 > > I had originally thought of getting a DSL card , but there doesn't seem= to be > > any ADSL2/2+ supported. >=20 > A phone line is RJ11 and can be only a single pair; ethernet cables which= go=20 > into a fxp NIC are RJ45 and have four pairs. :-) If you wanted to conne= ct=20 > the phone line directly, you'd rightly need to get a DSL PCI card. >=20 > However, you can connect a DSL modem into one side in bridge mode, and ha= ve=20 > the output of the DSL modem connect to a FreeBSD machine via ethernet whi= ch=20 > uses PPP to do the PPPoE/PPPoA negotiation, or you can use a "broadband=20 > router/switch" to do that, instead. >=20 > Regards, In your part of the world, yes. I've encountered setups (iirc in Denmark?) where the telco terminates their line as an RJ-11 and an RJ-45. You can then plug into that either a router that talks PPPoE on an ethernet port, or directly into NIC in your computer and talk PPPoE there. This is where PPPoE clients like rp-pppoe and their ilk come into play. You can even do (rudimentary) sharing of the ADSL by plumbing it into a hub. Any other client connected to the hub can kick off a PPPoE session. Not many telcos do this these days I think.. --=-Quc5SfE3MYHY1utBJaCq Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGi5HKlcRvFfyds/cRAm3pAJ0T2BnzEBT4Ynb9fQEp+GS5DIjg+ACglvmF WrIIUFHtBFs5Am1zvdg74pc= =ksaV -----END PGP SIGNATURE----- --=-Quc5SfE3MYHY1utBJaCq-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 12:33:09 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05DB016A400 for ; Wed, 4 Jul 2007 12:33:09 +0000 (UTC) (envelope-from bsd-unix@earthlink.net) Received: from fall-curlleaf.atl.sa.earthlink.net (fall-curlleaf.atl.sa.earthlink.net [207.69.195.105]) by mx1.freebsd.org (Postfix) with ESMTP id D441913C487 for ; Wed, 4 Jul 2007 12:33:08 +0000 (UTC) (envelope-from bsd-unix@earthlink.net) Received: from pop-tawny.atl.sa.earthlink.net ([207.69.195.67]) by fall-curlleaf.atl.sa.earthlink.net with esmtp (Exim 4.34) id 1I62wO-00008I-6D for questions@freebsd.org; Wed, 04 Jul 2007 07:22:36 -0400 Received: from fl-76-1-181-252.dhcp.embarqhsd.net ([76.1.181.252] helo=kt.weeeble.com) by pop-tawny.atl.sa.earthlink.net with smtp (Exim 3.36 #1) id 1I62wG-0001hp-00; Wed, 04 Jul 2007 07:22:28 -0400 Date: Wed, 4 Jul 2007 07:22:27 -0400 From: Randy Pratt To: Olivier Nicole Message-Id: <20070704072227.80d5bd0f.bsd-unix@earthlink.net> In-Reply-To: <200707040856.l648uDbG039253@banyan.cs.ait.ac.th> References: <200707040856.l648uDbG039253@banyan.cs.ait.ac.th> X-Mailer: Sylpheed 2.4.3 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org Subject: Re: Recursivity of -r and -R in portupgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 12:33:09 -0000 On Wed, 4 Jul 2007 15:56:13 +0700 (ICT) Olivier Nicole wrote: > Hi, > > I am wondering is the option -R and -r are mutually recursive in > portupgrade. > > That is, if the option -R applies to every ports detected by -r and > respectively if -r applies to every ports detected by -R. > > Lest take the example of: > > portupgrade -fRr gd > > gd depends on png, does it upgrade png with portupgrade -fRr png? > > php4-gd is built from gd, does it upgrade php4-gd with > portupgrade -Rrf php4-gd? (That will in turn upgrade php, maybe > apache...) Portupgrade has a no-execute option (-n) which will allow you to see what would be done without actually performing the operation; for example: portupgrade -nfRr gd will end with a list of ports that would be updated. Another port you may find useful is ports-mgmt/pkg_tree which will show a dependency tree for a port. HTH, Randy -- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 13:17:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E631416A46B for ; Wed, 4 Jul 2007 13:17:23 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id 539EE13C480 for ; Wed, 4 Jul 2007 13:17:23 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id D34A81D85AD for ; Wed, 4 Jul 2007 21:17:47 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07093-14 for ; Wed, 4 Jul 2007 21:17:45 +0800 (CST) Received: from [218.193.55.195] (unknown [125.77.224.188]) by bossdog.realss.com (Postfix) with ESMTP id D78AD1D858F for ; Wed, 4 Jul 2007 21:17:44 +0800 (CST) From: Zhang Weiwu To: freebsd-questions@freebsd.org In-Reply-To: <1183529582.4965.18.camel@esmeralda> References: <1183529582.4965.18.camel@esmeralda> Content-Type: text/plain Organization: Real Softservice Date: Wed, 04 Jul 2007 21:12:33 +0800 Message-Id: <1183554753.18057.20.camel@joe.realss.com> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Subject: Re: only first PCMCIA card works X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 13:17:24 -0000 On Wed, 2007-07-04 at 14:13 +0800, Zhang Weiwu wrote: > Dear list > > Running FreeBSD-6.1 RELEASE on Thinkpad 380XD, I have been using this > notebook for many years (and used FreeBSD from 4.7 to 6.1). An ethernet > card is plugged on the first PCMCIA slot and I inserted my FC card > reader (PCMCIA card produced by Hitachi) and noticed it's not detected > (no message about it in dmesg) During researching for a solution I have discovered several interesting thing: it seems there had been two PCMCIA related device drivers in FreeBSD: old system: device pcic device card new system device cbb device pccard device cardbus #(if cardbus is needed) And I discovered on FreeBSD 6.1 (perhaps many of them are already corrected in the coming 7.x version: I. man pcic and man card shows two difference pages (check bottom for the difference) and one of them is likely outdated, too outdated even for OLDCARD system II. FreeBSD official document still refer to pccard_enable="YES" which is no longer used thanks to the new card system. Link is here: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/laptop/pcmcia.html III. No information about deprecation of pcic/card is mentioned in manual, also the pccard manual is too short to provide useful information. No information about pccardc's dependency on old pcic/card device drive is mentioned in pccardc's manual (which would lead people to ask "why pccardc complain /dev/card0 doesn't exist") and I cannot find the new userland tool that replaces pccardc for testing and adjusting pccard behavior. Not just someone who try to complain here, but having this note might help other people find useful information or serve as a note to developers help FreeBSD improve in next version. Now I try to compile a kernel using pcic/card device drive and see if my second card would work. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 13:32:40 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2706C16A41F for ; Wed, 4 Jul 2007 13:32:40 +0000 (UTC) (envelope-from htll@abv.bg) Received: from smtp-out.abv.bg (smtp-out.abv.bg [194.153.145.70]) by mx1.freebsd.org (Postfix) with ESMTP id D66D813C457 for ; Wed, 4 Jul 2007 13:32:39 +0000 (UTC) (envelope-from htll@abv.bg) Received: from mail32.abv.bg (mail32.ni.bg [192.168.151.61]) by smtp-out.abv.bg (Postfix) with ESMTP id AF03F14AE22 for ; Wed, 4 Jul 2007 16:09:02 +0300 (EEST) Received: from mail32.abv.bg (localhost.localdomain [127.0.0.1]) by mail32.abv.bg (Postfix) with ESMTP id 05DB52C1B9 for ; Wed, 4 Jul 2007 16:09:34 +0300 (EEST) Date: Wed, 4 Jul 2007 16:09:34 +0300 (EEST) From: Yordan Yordanov To: freebsd-questions@FreeBSD.org Message-ID: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Mailer: AbvMail 1.0 X-Originating-IP: 85.95.66.4 Cc: Subject: About FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 13:32:40 -0000 Hello I want to install the last stable release of FreeBSD Unix on my desktop machine with AMD64 processor. Are there any differences in the FreeBSD ports for these two platform: FreeBSD/i386 and amd64? In the FreeBSD handbook I saw a workaround which should be applied to set up FreeBSD for some chipsets. If I have such a problem can I try to install i386 version on my machine. There is no reason not to work, but I want to be sure that this is possible. Greetings from Bulgaria Yordan ----------------------------------------------------------------- Ñ áåíçèí â êðúâòà! http://auto-motor-und-sport.bg/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 13:41:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E1CA16A421 for ; Wed, 4 Jul 2007 13:41:56 +0000 (UTC) (envelope-from npacemo@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id F1E8F13C457 for ; Wed, 4 Jul 2007 13:41:55 +0000 (UTC) (envelope-from npacemo@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4325545pyb for ; Wed, 04 Jul 2007 06:41:55 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=AeqJwpj+3lQG8jQQ89z3F9kyEZje35df2yrovWZMmv5adlPDTLiW2Ozx1unyDusICDHkRN6hiAaQMHniKnBwzznAfcpOHX2Dpr8icV3ksWMdndcDbdrCnoQtvxlLLbK9QgbPC1yBJI9XWgWDKikYyI6A3qdXOH1WhbNH7w1+XL4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=KT1JnSBUHQ164SzfpR3JxQEaU6JDwG30pplGovwlZwmA6DzKHj578ICLXsPJgSoO7eDFLQhaqowIInr5qdHbbFVEHxLXq2bpRWCSfjirQAb5Wo8jvtZUXFx/V1gu4tFk9a8QygUp4JF0oYJMEwrHrWsqqEy3FngwJr1J/WIrd2c= Received: by 10.64.150.18 with SMTP id x18mr12915737qbd.1183556515042; Wed, 04 Jul 2007 06:41:55 -0700 (PDT) Received: by 10.64.3.6 with HTTP; Wed, 4 Jul 2007 06:41:54 -0700 (PDT) Message-ID: <666bdb140707040641w47d78e17h108b1f4a7492d2ee@mail.gmail.com> Date: Wed, 4 Jul 2007 16:41:55 +0300 From: "Vladimir Tsvetkov" To: "Yordan Yordanov" In-Reply-To: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> MIME-Version: 1.0 References: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: About FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 13:41:56 -0000 SXQgZGVwZW5kcyBvbiB3aGF0IHlvdSByZWFsbHkgd2FudC4gSWYgeW91IGRvbid0IHdhbnQgNjQt Yml0IHZlcnNpb24gT1MsIEkKZG9uJ3QgdGhpbmsgeW91J2xsIGhhdmUgcHJvYmxlbXMgYXQgYWxs LiBSZWNlbnRseSwgbXkgUEMgZ290IGZ1Y2tlZCB1cCwgSSd2ZQpjaGFuZ2VkIHRoZSBtb3RoZXIg Ym9hcmQsIHN3aXRjaGVkIGZyb20gMzIgYml0IEFNRCBBdGhsb24gdG8gYSA2NCBiaXQgQU1EClR1 cmlvbiwgYW5kIHN1Y2Nlc3NmdWxseSBib290ZWQgZnJvbSB0aGUgcHJldmlvdXNseSBpbnN0YWxs ZWQgRnJlZUJTRAo0LjlSZWxlYXNlIG9uIHRoZSBoYXJkIGRyaXZlLgpJZiB5b3Ugd2FudCB0aGUg NjQgYml0IHZlcnNpb24gb2YgdGhlIE9TLCBmdXJ0aGVyIGludmVzdGlnYXRpb24gZnJvbSB5b3Ug YXJlCm5lZWRlZC4KQ2hlY2sgdGhpcyBvdXQ6Cmh0dHA6Ly93d3cuZnJlZWJzZC5vcmcvcGxhdGZv cm1zL2FtZDY0Lmh0bWwKCkJlc3QgUmVnYXJkcywKVmxhZGltaXIKCk9uIDA0LzA3LzA3LCBZb3Jk YW4gWW9yZGFub3YgPGh0bGxAYWJ2LmJnPiB3cm90ZToKPgo+IEhlbGxvCj4KPiBJIHdhbnQgdG8g aW5zdGFsbCB0aGUgbGFzdCBzdGFibGUgcmVsZWFzZSBvZiBGcmVlQlNEIFVuaXggb24gbXkgZGVz a3RvcAo+IG1hY2hpbmUgd2l0aCBBTUQ2NCBwcm9jZXNzb3IuIEFyZSB0aGVyZSBhbnkgZGlmZmVy ZW5jZXMgaW4gdGhlIEZyZWVCU0QgcG9ydHMKPiBmb3IgdGhlc2UgdHdvIHBsYXRmb3JtOiBGcmVl QlNEL2kzODYgYW5kIGFtZDY0PyBJbiB0aGUgRnJlZUJTRCBoYW5kYm9vayBJCj4gc2F3IGEgd29y a2Fyb3VuZCB3aGljaCBzaG91bGQgYmUgYXBwbGllZCB0byBzZXQgdXAgRnJlZUJTRCBmb3IgIHNv bWUKPiBjaGlwc2V0cy4gSWYgSSBoYXZlIHN1Y2ggYSBwcm9ibGVtIGNhbiBJIHRyeSB0byBpbnN0 YWxsIGkzODYgdmVyc2lvbgo+IG9uIG15IG1hY2hpbmUuIFRoZXJlIGlzIG5vIHJlYXNvbiBub3Qg dG8gd29yaywgYnV0IEkgd2FudCB0byBiZSBzdXJlIHRoYXQKPiB0aGlzIGlzIHBvc3NpYmxlLgo+ Cj4gR3JlZXRpbmdzIGZyb20gQnVsZ2FyaWEKPgo+IFlvcmRhbgo+Cj4KPgo+IC0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCj4g 8yDCxc7ayc4g1yDL0t/X1MEhCj4gaHR0cDovL2F1dG8tbW90b3ItdW5kLXNwb3J0LmJnLwo+IF9f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fCj4gZnJlZWJzZC1x dWVzdGlvbnNAZnJlZWJzZC5vcmcgbWFpbGluZyBsaXN0Cj4gaHR0cDovL2xpc3RzLmZyZWVic2Qu b3JnL21haWxtYW4vbGlzdGluZm8vZnJlZWJzZC1xdWVzdGlvbnMKPiBUbyB1bnN1YnNjcmliZSwg c2VuZCBhbnkgbWFpbCB0byAiCj4gZnJlZWJzZC1xdWVzdGlvbnMtdW5zdWJzY3JpYmVAZnJlZWJz ZC5vcmciCj4K From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 13:52:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7149C16A46D for ; Wed, 4 Jul 2007 13:52:35 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 15A0813C4BF for ; Wed, 4 Jul 2007 13:52:34 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l64DqUJJ041379; Wed, 4 Jul 2007 06:52:31 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Date: Wed, 4 Jul 2007 06:53:05 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20070703163610.GA6012@ayn.mi.celestial.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Wed, 04 Jul 2007 06:52:31 -0700 (PDT) Cc: Subject: RE: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 13:52:35 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Bill Campbell > Sent: Tuesday, July 03, 2007 9:36 AM > To: freebsd-questions@freebsd.org > Subject: Re: The worst error message in history belongs to... BIND9! > > > On Tue, Jul 03, 2007, Martin McCormick wrote: > >Paul Chvostek writes: > >> This is actually just the difference between sh and bash. You'll see > >> the latter error if you type `a = 5` in bash in any OS. It just so > >> happens that most Linux distributions don't have a real sh: > > > > I kind of thought that was the real issue. While > >something like this is maybe slightly annoying at times, the > >differences in, say, arithmetic handling and loops can sometimes > >mean rewriting parts of shell scripts depending on whether it is > >going to run in BSD or Linux. > > That's a major argument for doing things in python or perl as > they are consistent across all platforms. While perl has a well > deserved reputation for looking like modem noise, it's certainly > no worse than shell scripts. Actually perl has a lot of problems too. One of the biggest is that perl script writers always seem to think like you, in that perl is consistent across all platforms. The biggest problems I've seen with perl scripts are when people use perl extensions that are not on the system. You then have to go find the extension they use and very few of the perl script writers seem to be smart enough to put a section at the beginning of their scripts that define the CPAN location of the particular extensions they are using. The second biggest problem is perl script writers using constructs that are valid in Perl 5.6 and later but not valid in Perl 5.0 I don't know how many times I've wanted to strangle someone when trying to run a perl script under Perl 5.0 that had ONE single friggin statement in the entire thousand line script that isn't valid under 5.0 but is under 5.6 And I've also run across a number of Perl extensions that won't run under 5.0 as well, even though the authors are supposed to regression test under 5.0 > > Pure /bin/sh is very limited in its constructs compared to other > shells such as ksh, bash, etc. > ksh is consistent across platfroms, of course, you generally have to compile it for the system your on. If you cannot work within a limited construct set your not much of a programmer. Ted From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 14:05:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E63A16A400 for ; Wed, 4 Jul 2007 14:05:22 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 048FB13C43E for ; Wed, 4 Jul 2007 14:05:21 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l64E5JC4041494; Wed, 4 Jul 2007 07:05:20 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Date: Wed, 4 Jul 2007 07:05:54 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Wed, 04 Jul 2007 07:05:20 -0700 (PDT) Cc: freebsd-questions@freebsd.org Subject: RE: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 14:05:22 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of > perryh@pluto.rain.com > Sent: Tuesday, July 03, 2007 7:34 PM > To: freebsd@celestial.com > Cc: freebsd-questions@freebsd.org > Subject: Re: The worst error message in history belongs to... BIND9! > > > > >> This is actually just the difference between sh and bash ... > > > > > >differences in, say, arithmetic handling and loops can sometimes > > >mean rewriting parts of shell scripts depending on whether it is > > >going to run in BSD or Linux. > > > > That's a major argument for doing things in python or perl as > > they are consistent across all platforms ... > > If one is going to require the installation of something that may > not be part of a base system, that something might as well be bash :) Except that bash requires all the icky GNU utilities to build so you have to GNUify your system. The second you put in gmake, gmake requires iconv, readline and all the other nasty libraries, and from that point on if you build something you never know if it's going to link in to one of those libraries. Lots of programs use configure and if they don't see the gnu libraries they will use the more traditional bsd ones, but if they see the gnu stuff they will silently use it. For example, one I see a lot is programs using gdbm if they see it, and if they don't they will use ndbm. This can cause major problems for commercial users. I'd love for someone to modify the gmake port to have a variable you can set that would build all the GNUified dependency libraries, build and install gmake and statically link in all it's GNUified libraries, then remove all the GNUified libraries. Ted From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 14:27:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 379B116A41F for ; Wed, 4 Jul 2007 14:27:15 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from farris.bafirst.com (adsl-065-081-102-002.sip.jan.bellsouth.net [65.81.102.2]) by mx1.freebsd.org (Postfix) with ESMTP id BA82413C44B for ; Wed, 4 Jul 2007 14:27:14 +0000 (UTC) (envelope-from eculp@encontacto.net) Received: from HOME.encontacto.net ([189.129.12.64]) by farris.bafirst.com with esmtp; Wed, 04 Jul 2007 09:27:12 -0500 id 0006D40C.468BAE40.00015867 Received: from localhost (localhost [127.0.0.1]) (uid 80) by HOME.encontacto.net with local; Wed, 04 Jul 2007 09:27:11 -0500 id 0004AC23.468BAE3F.000121DC Received: from dsl-189-129-12-64.prod-infinitum.com.mx (dsl-189-129-12-64.prod-infinitum.com.mx [189.129.12.64]) by intranet.encontacto.net (Horde MIME library) with HTTP; Wed, 04 Jul 2007 09:27:11 -0500 Message-ID: <20070704092711.2vh74v6cigcowk48@intranet.encontacto.net> X-Priority: 3 (Normal) Date: Wed, 04 Jul 2007 09:27:11 -0500 From: eculp@encontacto.net To: freebsd-questions@freebsd.org References: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> <666bdb140707040641w47d78e17h108b1f4a7492d2ee@mail.gmail.com> In-Reply-To: <666bdb140707040641w47d78e17h108b1f4a7492d2ee@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) X-Originating-IP: 189.129.12.64 Subject: Re: Re: About FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 14:27:15 -0000 Quoting Vladimir Tsvetkov : > It depends on what you really want. If you don't want 64-bit version OS, I > don't think you'll have problems at all. Recently, my PC got fucked up, I'= ve > changed the mother board, switched from 32 bit AMD Athlon to a 64 bit AMD > Turion, and successfully booted from the previously installed FreeBSD > 4.9Release on the hard drive. > If you want the 64 bit version of the OS, further investigation from you a= re > needed. > Check this out: > http://www.freebsd.org/platforms/amd64.html About two weeks ago, I lost two amd-32 servers and replaced them with =20 amd-64 and am running off the old disks beautifully, and much, much =20 faster. I have over 500 ports on both. One was and is running up to =20 date Stable and the other up to date Current. I was planning on going =20 to AMD64 but with the current results, I really doubt that I will make =20 the change until well after the current 7.0 release. I made this decision based on recommendations made on this list a few =20 days ago. You might want to search the mailing lists if you need more =20 assurance and if no just enjoy the AMD64. I'm happy with their =20 performance and price. enjoy, ed > > Best Regards, > Vladimir > > On 04/07/07, Yordan Yordanov wrote: >> >> Hello >> >> I want to install the last stable release of FreeBSD Unix on my desktop >> machine with AMD64 processor. Are there any differences in the FreeBSD po= rts >> for these two platform: FreeBSD/i386 and amd64? In the FreeBSD handbook I >> saw a workaround which should be applied to set up FreeBSD for some >> chipsets. If I have such a problem can I try to install i386 version >> on my machine. There is no reason not to work, but I want to be sure that >> this is possible. >> >> Greetings from Bulgaria >> >> Yordan >> >> >> >> ----------------------------------------------------------------- >> =D0=A1 =D0=B1=D0=B5=D0=BD=D0=B7=D0=B8=D0=BD =D0=B2 =D0=BA=D1=80=D1=8A=D0= =B2=D1=82=D0=B0! >> http://auto-motor-und-sport.bg/ >> _______________________________________________ >> 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 Jul 4 14:30:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8355116A468 for ; Wed, 4 Jul 2007 14:30:14 +0000 (UTC) (envelope-from htll@abv.bg) Received: from smtp-out.abv.bg (smtp-out.abv.bg [194.153.145.70]) by mx1.freebsd.org (Postfix) with ESMTP id 4391713C45D for ; Wed, 4 Jul 2007 14:30:14 +0000 (UTC) (envelope-from htll@abv.bg) Received: from mail31.abv.bg (mail31.ni.bg [192.168.151.77]) by smtp-out.abv.bg (Postfix) with ESMTP id 6FBEE14AE13 for ; Wed, 4 Jul 2007 17:29:41 +0300 (EEST) Received: from mail31.abv.bg (localhost.localdomain [127.0.0.1]) by mail31.abv.bg (Postfix) with ESMTP id EA57A3BC98 for ; Wed, 4 Jul 2007 17:30:12 +0300 (EEST) Date: Wed, 4 Jul 2007 17:30:12 +0300 (EEST) From: Yordan Yordanov To: freebsd-questions@freebsd.org Message-ID: <117049082.192321183559412958.JavaMail.nobody@mail31.abv.bg> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: 8bit X-Mailer: AbvMail 1.0 X-Originating-IP: 85.95.66.4 Subject: About FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 14:30:14 -0000 Thanks a lot for your help. The link you pointed is enough for me. Thanks again ). Regards Yordan ----------------------------------------------------------------- Ñ áåíçèí â êðúâòà! http://auto-motor-und-sport.bg/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 15:02:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72FF416A421 for ; Wed, 4 Jul 2007 15:02:06 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.freebsd.org (Postfix) with ESMTP id 5260113C480 for ; Wed, 4 Jul 2007 15:02:05 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1I66Mm-0006mX-0i for freebsd-questions@freebsd.org; Wed, 04 Jul 2007 11:02:04 -0400 Message-ID: <002601c7be4c$4767b7c0$6501a8c0@GRANT> From: "Grant Peel" To: Date: Wed, 4 Jul 2007 11:02:02 -0400 Organization: The Net Now MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 15:02:06 -0000 Can one run=20 'make clean' in the /usr/ports directory in the hope of reducing disk space? -Grant From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 15:12:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56AFA16A482 for ; Wed, 4 Jul 2007 15:12:56 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.243]) by mx1.freebsd.org (Postfix) with ESMTP id 1942A13C457 for ; Wed, 4 Jul 2007 15:12:55 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so525475anc for ; Wed, 04 Jul 2007 08:12:55 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=JF7UO6G1VqzP5LAavZWVa9xgF629IGgwJEUtBCw3aL5fYBm3N6IAJA9NpIv8nRqAy5IQGcz1lZRfHhG3R2OYTGlnxNZrq1jT6DEq0WLI19lVtKCJT/5gGxvayf/kmo9CpYDlWasbzmE0dg1YM/Tb5+yesmDHkl3oP/VofWhVjEM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=gjrnc/bNDBhF5BEhMOXHYrpIh6WJJ+GwlNb3xZXx5Bhij6963rYDeYlgI0Z8gVsiR44ZNy/NkOi8SaTjo+z+rBzhyPu4Rt6X6UOlAPJWk1eKnNO3PrGEA57dZvCytewhp0KTCLGm7W50vtM1NK9PIAmOVNbLzazwCkX21iEwot4= Received: by 10.100.47.9 with SMTP id u9mr4873461anu.1183561974983; Wed, 04 Jul 2007 08:12:54 -0700 (PDT) Received: by 10.100.91.2 with HTTP; Wed, 4 Jul 2007 08:12:54 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 12:12:54 -0300 From: luizbcampos@gmail.com To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Sendmail problems on FBSD-6.1-R X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 15:12:56 -0000 Hi...after I had nearly setup my localhost to enable sendmail on my box, I got the message when I try to restart it: restarting..../var/run/sendmail.pid not found sendmail-clientmqueue From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 15:19:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61DC616A473 for ; Wed, 4 Jul 2007 15:19:06 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.178]) by mx1.freebsd.org (Postfix) with ESMTP id E6CFC13C45D for ; Wed, 4 Jul 2007 15:19:05 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so1832117ika for ; Wed, 04 Jul 2007 08:19:04 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=AcukEXMmFFW9FFFf/pS8aUpWArvHrTDvVCvszVYP77ieHv8dwUIS4vupluUgcHSky4WQ1EQd+EReJG4A3ejk9d9RvmO7sPrw3eM/KQ0TGshtWshtCnzDK1z2GQRYKNTEtnbRV/MzLE9UojvTqiR7ElZKg0kqeVIHpV8+WdjUVYk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=Xx3zqu18CtQZfb35mZo59wQ0cbBcvxjMPXPAUwo8KkFff1aSqyKW6QBPwVj2MuPyHsW3sxLqc8PFfpDWHZq15oNeK6R6EiS+gxswcIrlbzvJxa81yRFWvbmiMN1ay6mC+MWR2ZfUBYIwQFxztyCev/guO8tllmsprKOOTbZE1Ok= Received: by 10.65.222.11 with SMTP id z11mr7605767qbq.1183562344035; Wed, 04 Jul 2007 08:19:04 -0700 (PDT) Received: from ?192.168.32.240? ( [201.47.3.162]) by mx.google.com with ESMTP id 1sm3371581qbh.2007.07.04.08.19.02 (version=SSLv3 cipher=RC4-MD5); Wed, 04 Jul 2007 08:19:03 -0700 (PDT) From: Sergio Lenzi To: freebsd-questions@freebsd.org In-Reply-To: <20070704031501.GB83811@it.ca> References: <20070703121408.GA357@it.ca> <20070704094755.43c6b7fd@localhost> <20070704031501.GB83811@it.ca> Date: Wed, 04 Jul 2007 12:18:59 -0300 Message-Id: <1183562339.1180.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 FreeBSD GNOME Team Port Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: OpenOffice.org 2.2.1 quits on launch X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 15:19:06 -0000 Hello I had the same problem a week ago... sometimes the OO opens, but when I try to choose any menu option it quits... Installing only xorg 7.2 and openoffice it works... when I removed the glib or gtk it works... I have some problems with the glitz library too... I am using FreeBSD 6.2 stable (32bits i386), running on an AMD 3800 X2 with 2Gb of memory 40 diskless stations track down the problem I found in gtk2... I upgraded to gtk-2.10.13 and the problem was gone Now I have OO working on gnome 2.18.2 without problems at all really fast... The only issue is that I still cannot make the OO play audio still. Lenzi From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 15:25:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B16CF16A400 for ; Wed, 4 Jul 2007 15:25:11 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.243]) by mx1.freebsd.org (Postfix) with ESMTP id 726EA13C459 for ; Wed, 4 Jul 2007 15:25:09 +0000 (UTC) (envelope-from luizbcampos@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so526165anc for ; Wed, 04 Jul 2007 08:25:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=nN4lZo3iiO6S8r5n4k/OMVOlAbtSsp84vCQO0bKgN9K+23fUBQ0xQPN41QAk7PuZymQcUGDKlHsnWG+4CmE8qhFVxJnGXd2/heRK9rQVv6ZZuwa+Z0cYO3v0QmLMFAdV9ipDYUrOxw4zf7dcW3fT0b0jIJJEefxcXq48llPHDbM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=YqdFOKTmvKpyg7ohN0bePtoDbVfyqhg0l1kXwj6+CGSB8oB8VHtM78kPo1neuqnn5yyP3VUIIB1ftAPBABmMzHSQThRAn+aJbXcEoxHdBaOcBUSKcj/XbXsr7of0zuXC5FQf/usoPAMTh0yJXBlD84RVCn/LNfLm+Omk6B70WDI= Received: by 10.100.108.11 with SMTP id g11mr4880695anc.1183561083374; Wed, 04 Jul 2007 07:58:03 -0700 (PDT) Received: by 10.100.91.2 with HTTP; Wed, 4 Jul 2007 07:58:03 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 11:58:03 -0300 From: luizbcampos@gmail.com To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Sendmail problems on FBSD-6.1-R X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 15:25:11 -0000 Dear Sirs After I had nearly setup sendmail on my localhost I got the following messages when I try to restart it: #make restart "Starting: sendmail554 5.0.0 /etc/mail/sendmail.cf: line 66 unknown configuration line " " sendmail-clientmqueue-" From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 15:26:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4550816A46D for ; Wed, 4 Jul 2007 15:26:08 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id 2788B13C44B for ; Wed, 4 Jul 2007 15:26:06 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l64FPvdG002872; Wed, 4 Jul 2007 19:25:57 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l64FPu14002871; Wed, 4 Jul 2007 19:25:56 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Wed, 4 Jul 2007 19:25:56 +0400 From: Yuri Pankov To: Grant Peel Message-ID: <20070704152556.GA2472@darklight.org.ru> References: <002601c7be4c$4767b7c0$6501a8c0@GRANT> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5mCyUwZo2JvN/JJP" Content-Disposition: inline In-Reply-To: <002601c7be4c$4767b7c0$6501a8c0@GRANT> User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Wed, 04 Jul 2007 19:25:58 +0400 (MSD) Cc: freebsd-questions@freebsd.org Subject: Re: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 15:26:08 -0000 --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2007 at 11:02:02AM -0400, Grant Peel wrote: > Can one run=20 >=20 > 'make clean' >=20 > in the /usr/ports directory in the hope of reducing disk space? >=20 > -Grant Yes, you can, but it will take significant amount of time. Better approach would be using portsclean (it's in portupgrade package) - you can clean stale `work' dirs, unreferenced distfiles, etc. with it. And to just clean stale `work' dirs you can use something like `rm -rf /usr/ports/*/*/work'. HTH, Yuri --5mCyUwZo2JvN/JJP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGi7wEeoAklVFrLdgRAlVmAKCEr1+Iq3sXuNcUxmFsz9N+MpOqIwCgmVA3 RCf3stt+D9jopdz+hkPHTs0= =koZY -----END PGP SIGNATURE----- --5mCyUwZo2JvN/JJP-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 16:11:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3021516A400 for ; Wed, 4 Jul 2007 16:11:11 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id EDBFD13C44C for ; Wed, 4 Jul 2007 16:11:10 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l64GB8Ba042576; Wed, 4 Jul 2007 09:11:09 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Date: Wed, 4 Jul 2007 09:11:44 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Wed, 04 Jul 2007 09:11:10 -0700 (PDT) Cc: Subject: RE: Sendmail problems on FBSD-6.1-R X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 16:11:11 -0000 Do the following: cd /etc/mail rm *.cf make install make start Your sendmail.cf file is generated from a *.mc file in that directory. It sounds like you have been editing the sendmail.cf file directly which is not what your supposed to be doing. Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of > luizbcampos@gmail.com > Sent: Wednesday, July 04, 2007 7:58 AM > To: freebsd-questions@freebsd.org > Subject: Sendmail problems on FBSD-6.1-R > > > Dear Sirs > > > After I had nearly setup sendmail on my localhost I got the following > messages when I try to restart it: > > #make restart > > "Starting: sendmail554 5.0.0 /etc/mail/sendmail.cf: line 66 unknown > configuration line " > " > sendmail-clientmqueue-" > _______________________________________________ > 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 Jul 4 16:14:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6808816A469 for ; Wed, 4 Jul 2007 16:14:33 +0000 (UTC) (envelope-from oregnier@oregnier.net) Received: from 30.mail-out.ovh.net (30.mail-out.ovh.net [213.186.62.213]) by mx1.freebsd.org (Postfix) with SMTP id C168B13C48C for ; Wed, 4 Jul 2007 16:14:32 +0000 (UTC) (envelope-from oregnier@oregnier.net) Received: (qmail 13035 invoked by uid 503); 4 Jul 2007 16:14:52 -0000 Received: (QMFILT: 1.0); 04 Jul 2007 16:14:52 -0000 Received: from b7.ovh.net (HELO mail193.ha.ovh.net) (213.186.33.57) by 30.mail-out.ovh.net with SMTP; 4 Jul 2007 16:14:52 -0000 Received: from b0.ovh.net (HELO queue-out) (213.186.33.50) by b0.ovh.net with SMTP; 4 Jul 2007 16:14:35 -0000 Received: from mac76-2-82-241-6-173.fbx.proxad.net (HELO ?127.0.0.1?) (postmaster@oregnier.net@82.241.6.173) by ns0.ovh.net with SMTP; 4 Jul 2007 16:14:34 -0000 Message-ID: <468BC778.5040802@oregnier.net> Date: Wed, 04 Jul 2007 18:14:48 +0200 From: Olivier Regnier User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Ovh-Remote: 82.241.6.173 (mac76-2-82-241-6-173.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|H 0.5/N Subject: Questions about periodic.conf 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: Wed, 04 Jul 2007 16:14:33 -0000 Hi everyone, I'm working on FreeBSD 6.2 and my question is, it is possible to use the periodic.conf file in /usr/local/etc/ directory ? My second question, if i create a empty periodic.conf, it is possible to include the /etc/defaults/periodic.conf file with a command line by example include /etc/defaults/periodic.conf ? Thank you :) From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 16:29:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75D0416A46E for ; Wed, 4 Jul 2007 16:29:54 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by mx1.freebsd.org (Postfix) with ESMTP id 3BAAC13C459 for ; Wed, 4 Jul 2007 16:29:54 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i29so1305146wxd for ; Wed, 04 Jul 2007 09:29:53 -0700 (PDT) Received: by 10.90.71.3 with SMTP id t3mr7230089aga.1183566593496; Wed, 04 Jul 2007 09:29:53 -0700 (PDT) Received: from ?192.168.0.4? ( [67.189.184.224]) by mx.google.com with ESMTP id 35sm656103wra.2007.07.04.09.29.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 04 Jul 2007 09:29:52 -0700 (PDT) Date: Wed, 04 Jul 2007 12:30:04 -0400 To: User Questions Organization: Seibercom.net In-Reply-To: References: <20070703163610.GA6012@ayn.mi.celestial.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20070704121712.20F6.GERARD-SEIBERT@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.31 [en] From: Gerard Subject: Re[2]: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: User Questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 16:29:54 -0000 On July 04, 2007 at 09:53AM Ted Mittelstaedt wrote: [snip] > Actually perl has a lot of problems too. One of the biggest is that > perl script writers always seem to think like you, in that perl is > consistent across all platforms. > > The biggest problems I've seen with perl scripts are when people use > perl extensions that are not on the system. You then have to go find > the extension they use and very few of the perl script writers seem > to be smart enough to put a section at the beginning of their scripts > that define the CPAN location of the particular extensions they are > using. The second biggest problem is perl script writers using > constructs that are valid in Perl 5.6 and later but not valid in > Perl 5.0 I don't know how many times I've wanted to strangle > someone when trying to run a perl script under Perl 5.0 that had > ONE single friggin statement in the entire thousand line script that > isn't valid under 5.0 but is under 5.6 And I've also run across > a number of Perl extensions that won't run under 5.0 as well, even > though the authors are supposed to regression test under 5.0 I was under the impression that Perl 5.6.0 was released on 2000-Mar-22, while Perl 5.000 was issued on or about 1994-Oct-17. For the life of me, I cannot comprehend why anyone would be using such an antiquated version. I have a rather limited knowledge of Perl; however, I am not going to be bothered regression testing it under a seven year old obsoleted version. I believe that FreeBSD-3.4 was released around 12/21/1999 or there about. Should we also be testing against that version also? -- Gerard From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 17:03:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88C4216A503 for ; Wed, 4 Jul 2007 17:03:52 +0000 (UTC) (envelope-from bidjan@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.224]) by mx1.freebsd.org (Postfix) with ESMTP id 48FDE13C468 for ; Wed, 4 Jul 2007 17:03:52 +0000 (UTC) (envelope-from bidjan@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so1369730nzf for ; Wed, 04 Jul 2007 10:03:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VPd2HeKBl37xjk4rmul2Rt/GWEQkV6Dzaukf3n2+KR8fURR36YfaUOuLns2ZOanawfYugofj2ysPSOF5DZoMfo4BsQapiZwQWaGu7C7lJB+w/87XJjRygm8aSrhrn+4tXnvKJIi5Di5LoRFqmvfaOv86Zjr8vlYgJLlr3FOcKOM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DV3UTGhZJgCb1OdYVBdTHawPmPkROmZu9pwviQjFg0sT7c8vr6I9aLU7RHD+0VnKCZX0VpRtFm9dSfHkmUr3Wk4MyS1FGd9FkFWUGid/E+8KjKjrCgLnA5o/T3zyC/CZGCPpp5W8VNDLX9blcVjTDSE0hL6fSFi5uHM5sCYzt5g= Received: by 10.142.187.2 with SMTP id k2mr521946wff.1183568631166; Wed, 04 Jul 2007 10:03:51 -0700 (PDT) Received: by 10.142.101.16 with HTTP; Wed, 4 Jul 2007 10:03:51 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 13:03:51 -0400 From: "Pablo Mora" To: freebsd-questions@freebsd.org In-Reply-To: <002601c7be4c$4767b7c0$6501a8c0@GRANT> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <002601c7be4c$4767b7c0$6501a8c0@GRANT> Subject: Re: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 17:03:52 -0000 On 7/4/07, Grant Peel wrote: > Can one run > > 'make clean' > > in the /usr/ports directory in the hope of reducing disk space? > portsclean -CDD -- ------------------------------------------------------------------------------------------------ PGP KeyID: 0xC730A079 Key fingerprint = F626 3C47 02F5 E43C 6620 8A1B E7A8 533B C730 A079 gpg --keyserver pgp.mit.edu --recv-keys C730A079 ------------------------------------------------------------------------------------------------ ASCII Ribbon Campaign Against HTML e-mail & Microsoft Attachments FreeBSD Since 4.x & unixbsd.blogspot.com maintainer ------------------------------------------------------------------------------------------------ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 17:30:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3EF6A16A47A for ; Wed, 4 Jul 2007 17:30:51 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from pollux.dfwlp.com (rrcs-64-183-212-244.sw.biz.rr.com [64.183.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id 1089913C480 for ; Wed, 4 Jul 2007 17:30:50 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by pollux.dfwlp.com (8.13.8/8.13.8) with ESMTP id l64HUmb4007913 for ; Wed, 4 Jul 2007 12:30:48 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Wed, 4 Jul 2007 12:30:48 -0500 User-Agent: KMail/1.9.6 References: <200707040210.l642AMWQ084133@banyan.cs.ait.ac.th> In-Reply-To: <200707040210.l642AMWQ084133@banyan.cs.ait.ac.th> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707041230.48171.freebsd@dfwlp.com> X-Spam-Status: No, score=-4.0 required=3.6 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on pollux.dfwlp.com Subject: Re: Migration from 5.5 to 6.2 without single user access X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 17:30:51 -0000 On Tuesday 03 July 2007 21:10:22 Olivier Nicole wrote: > Hi, > > I am upgrading a remote server (very remote, 10,000 km) and I have no > way to access the machine in single user mode. > > Is there a recommended way to do the upgrade from 5.5 to 6.2? > > Do everything in multi-user, but kill all services but sshd? > > Thanks, > > Olivier your mileage may vary... but i do it without killing any services (but i also know that i am the only one logged into the machine). when you install world, *for the most part*, you are not tampering with things like apache, etc. as always, good backups of your data and configurations are a must before performing any such dangerous process as a multiuser-mode installworld. when going from 5.x to 6.x, most people recommend first upgrading to the lastest possible 5.x release first, and then moving on to 6.x (so in your case, either 5.5-STABLE or 5.5-RELEASE-p13. good luck, -- Jonathan Horne http://dfwlpiki.dfwlp.org freebsd@dfwlp.com From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 17:31:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E88D16A400 for ; Wed, 4 Jul 2007 17:31:19 +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 1412213C45A for ; Wed, 4 Jul 2007 17:31:18 +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; 04 Jul 2007 13:31:18 -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.8.3-GA) with ESMTP id NNC71063; Wed, 4 Jul 2007 13:31:18 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 04 Jul 2007 13:31:14 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18059.55651.790757.504527@jerusalem.litteratus.org> Date: Wed, 4 Jul 2007 13:31:15 -0400 To: freebsd-questions@freebsd.org In-Reply-To: References: <002601c7be4c$4767b7c0$6501a8c0@GRANT> 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) Subject: Re: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 17:31:19 -0000 Pablo Mora writes: > > Can one run > > > > 'make clean' > > > > in the /usr/ports directory in the hope of reducing disk space? > > portsclean -CDD "portsclean" is part of the "portupgrade" port, not the base system. Not everyone has it installed, or wants to. To the original poster: yes, you can. Mind you, I'm not sure it's the most efficient way - since I have "portupgrade" installed, I prefer portsclean. Robert Huff From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 17:41:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC91416A421 for ; Wed, 4 Jul 2007 17:41:40 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp3.utdallas.edu (smtp3.utdallas.edu [129.110.10.49]) by mx1.freebsd.org (Postfix) with ESMTP id 8E33113C457 for ; Wed, 4 Jul 2007 17:41:40 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.102] (adsl-65-68-205-180.dsl.rcsntx.swbell.net [65.68.205.180]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTP id 63501669AE for ; Wed, 4 Jul 2007 12:41:39 -0500 (CDT) Date: Wed, 04 Jul 2007 12:41:38 -0500 From: Paul Schmehl To: freebsd-questions@freebsd.org Message-ID: <6EFA02413CBD4BA051727365@paul-schmehls-powerbook59.local> In-Reply-To: <468BC778.5040802@oregnier.net> References: <468BC778.5040802@oregnier.net> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========CD1AAAB81AB7D577024A==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Questions about periodic.conf 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: Wed, 04 Jul 2007 17:41:40 -0000 --==========CD1AAAB81AB7D577024A========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On July 4, 2007 6:14:48 PM +0200 Olivier Regnier = wrote: > Hi everyone, > > I'm working on FreeBSD 6.2 and my question is, it is possible to use the > periodic.conf file in /usr/local/etc/ directory ? > Yes, of course. > My second question, if i create a empty periodic.conf, it is possible to > include the /etc/defaults/periodic.conf file with a command line by > example > > include /etc/defaults/periodic.conf ? > It isn't needed. The /etc/defaults conf files are always parsed. They=20 are overridden by any settings in the corresponding file in /etc. Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========CD1AAAB81AB7D577024A==========-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 17:50:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 252CD16A468 for ; Wed, 4 Jul 2007 17:50:03 +0000 (UTC) (envelope-from g.v.tjongahung@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 D5C1013C480 for ; Wed, 4 Jul 2007 17:50:02 +0000 (UTC) (envelope-from g.v.tjongahung@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so534098anc for ; Wed, 04 Jul 2007 10:50:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=MjqiK//gBPy/pt2vL2pwJ5t4t2AggBJVQKtNOxe3j8C+A9wRnAq5sQ8rjUsuofFoFtVb47wnbjP0M4xfeV444OeqVqzDKQV/UH00fJ+BDSJqi31jqGCwdMtrb9HiBVDY04CB+O49xRjfAWIES/ow/bmZZeCUDdrZK6M/NIH6p/w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=AeH2vLXRofv4sA18LQUWht+kcT2/wllEdYzLayC5xNeeys6iIu6vzfsLfwM5fmXLxN8gDhaXOUa+iCOF/b3UqOeWyUTq1quv97cwPnd80RZXNUGskfgx4SywVcwQgHckTIfa7V8BPW5CYEVJWt60NiHLvCHNHbYIRqveROJagEY= Received: by 10.100.47.9 with SMTP id u9mr4925177anu.1183569733379; Wed, 04 Jul 2007 10:22:13 -0700 (PDT) Received: by 10.100.45.6 with HTTP; Wed, 4 Jul 2007 10:22:13 -0700 (PDT) Message-ID: <822946050707041022p1e55f853n242dfba946f7bf7b@mail.gmail.com> Date: Wed, 4 Jul 2007 19:22:13 +0200 From: "Gabor Tjong A Hung" To: freebsd-questions@freebsd.org In-Reply-To: <20070705005329.65be3130@localhost> MIME-Version: 1.0 References: <822946050707040018o1877737ia46252c8ae40fc9b@mail.gmail.com> <20070705005329.65be3130@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: Samba NetBios X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 17:50:03 -0000 Dear all, I was told that my questions was better served here than in ports@ > I've recently put my samba server in a jail, but as you can see @ > http://www.faughnan.com/netbios.html NetBIOS is a bit of a problem and can > cause alot of headache. I was unable to find a nat helper for pf, so I was > wondering if I could bridge my jail with it's host. the bridge > manualhowever > requires me to have *two* network devices(or so it says), but my > jails are just aliases on the same network device. > Does anyone know another solution to make browsing possible? or have a clue > on how to make the solutions I tried work. > > >ifconfig > rl0: flags=8843 mtu 1500 > options=8 > inet6 fe80::202:44ff:fe30:dd04%rl0 prefixlen 64 scopeid 0x1 > inet 172.20.25.177 netmask 0xfffffc00 broadcast 172.20.27.255 > inet 10.0.0.3 netmask 0xffffffff broadcast 10.0.0.3 > inet 10.0.0.2 netmask 0xffffffff broadcast 10.0.0.2 > inet 10.0.0.6 netmask 0xffffffff broadcast 10.0.0.6 > inet 10.0.0.4 netmask 0xffffffff broadcast 10.0.0.4 > inet 10.0.0.5 netmask 0xffffffff broadcast 10.0.0.5 > ether 00:02:44:30:dd:04 > media: Ethernet autoselect (100baseTX ) > status: active > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 18:48:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED9F916A468 for ; Wed, 4 Jul 2007 18:48:29 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id CAAAB13C469 for ; Wed, 4 Jul 2007 18:48:29 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 3338 invoked from network); 4 Jul 2007 18:43:41 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 18:43:41 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l64ImS34043937 for ; Wed, 4 Jul 2007 12:48:28 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l64ImRNc043936 for freebsd-questions@freebsd.org; Wed, 4 Jul 2007 12:48:27 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Wed, 4 Jul 2007 12:48:27 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070704184827.GB43873@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <200707031344.l63DiEbo098703@dc.cis.okstate.edu> <20070703163610.GA6012@ayn.mi.celestial.com> <468b072c.U1AQhNvKe3aLmLhT%perryh@pluto.rain.com> <20070704031716.GB39459@demeter.hydra> <18059.5849.930990.765261@jerusalem.litteratus.org> <20070704040550.GC39459@demeter.hydra> <20070704122601.2f860027@gumby.homeunix.com.> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070704122601.2f860027@gumby.homeunix.com.> User-Agent: Mutt/1.4.2.2i Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 18:48:30 -0000 On Wed, Jul 04, 2007 at 12:26:01PM +0100, RW wrote: > On Tue, 3 Jul 2007 22:05:50 -0600 > Chad Perrin wrote: > > > On Tue, Jul 03, 2007 at 11:41:13PM -0400, Robert Huff wrote: > > > > > > Chad Perrin writes: > > > > > > > Isn't Perl part of the base system these days? > > > > > > Perl has not been part of the base system for several years > > > and was deprecated for some time before that. > > > > Is it part of the default install without being part of the base > > system, then? I don't recall needing to install it after system > > install on this laptop (using FreeBSD 6.2-RELEASE). > > A huge number of ports and packages have it as a dependency. Yes, of course -- there's a great deal of Perl-based software on various unices that is written in Perl. I seem to recall having Perl available before I had most of my usual software installed on this system, however. In retrospect, though, I think something associated with Portupgrade uses Perl -- and I would have had that installed by the time I recall having Perl available -- so that's probably the "culprit" in this case. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] print substr("Just another Perl hacker", 0, -2); From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 18:58:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 46ADF16A41F for ; Wed, 4 Jul 2007 18:58:48 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.246]) by mx1.freebsd.org (Postfix) with ESMTP id 05E2813C489 for ; Wed, 4 Jul 2007 18:58:47 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so537393anc for ; Wed, 04 Jul 2007 11:58:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=fVqWoO5TfV2MmNxjR3IKFun0M2pA73YM7sO/dNeqm/UtEW4rQrDCifpS6dYrkGaRharlwDTrZqCEAoHIooHMXZzA9dUe12lK1i4qPpXyNwyiGTk9D63bLLiGe4JSarRCTR0lS4+/7pvO/oLOWqDb4kWnThmDQV7ZJhgit7yJXi8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=EpdU449TdwLa5e5Tkcppmsn5ItTXRSni3NEYcuxTaZyHOVB3FqSrbwJchbjTDxl+H7zQL7iy/cjP2gGbfRXe0aycHlsBga9/cNiKSI7RIGVY7RgujStBaFI4uW42/zA1bDS9BdfjoJ/0qsFh+sedF12vs5Dw8JKD1xQFAO34WvI= Received: by 10.142.251.9 with SMTP id y9mr528084wfh.1183574056857; Wed, 04 Jul 2007 11:34:16 -0700 (PDT) Received: by 10.142.89.5 with HTTP; Wed, 4 Jul 2007 11:34:16 -0700 (PDT) Message-ID: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> Date: Thu, 5 Jul 2007 02:34:16 +0800 From: "Dinesh Pandian" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: fetch hangs during Make, portupgrade -a, or portmanager -u.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 18:58:48 -0000 Good day all! Please help me out with a really annoying little problem that bugs me everytime I try to install applications from ports. When I try to run portupgrade -a or portmanager -u, when Make fetches the files from the servers, fetch normally hangs randomly sometime through the downloading of the distfile. The only solution I've thought about is aborting the upgrade procedure and issuing the same command again, hoping that fetch resumes where it left off. In bigger files, > 5MB, I'd have to repeat this process several times to download a single distfile. I've tried setting the FTP_PASSIVE_MODE env ON and OFF to no avail. I can't seem to find a problem with the internet connection as httpd and ftpd works perfectly fine! Please help. TIA, Dinesh From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:00:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E669516A46F for ; Wed, 4 Jul 2007 19:00:10 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id B929F13C46C for ; Wed, 4 Jul 2007 19:00:10 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 11688 invoked from network); 4 Jul 2007 18:55:22 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 4 Jul 2007 18:55:22 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l64J08GA044027 for ; Wed, 4 Jul 2007 13:00:09 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l64J080W044026 for freebsd-questions@freebsd.org; Wed, 4 Jul 2007 13:00:08 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Wed, 4 Jul 2007 13:00:08 -0600 From: Chad Perrin To: FreeBSD Questions Message-ID: <20070704190008.GC43873@demeter.hydra> Mail-Followup-To: FreeBSD Questions References: <20070704052737.GB40018@demeter.hydra> <468B374D.3020202@boosten.org> <1183539018.1213.7.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1183539018.1213.7.camel@localhost> User-Agent: Mutt/1.4.2.2i Subject: Re: "late filesystems" and switching net configs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:00:11 -0000 On Wed, Jul 04, 2007 at 09:50:18AM +0100, Tom Evans wrote: > On Wed, 2007-07-04 at 07:59 +0200, Peter Boosten wrote: > > Chad Perrin wrote: > > > I have a couple of niggling little, er, "quirks" that I'd like to get > > > sorted out on my FreeBSD Thinkpad. > > > > > > 2. For some reason, if I use DHCP at all then want to switch back to my > > > static IP setup, I have to restart the computer to get it to access the > > > Internet. I haven't been able to figure out why. If I recall > > > correctly, I can switch to static IP on bge0 and access other systems > > > on the network, but I can't do anything related to the Internet. Yes, > > > by the way, I am checking to make sure the contents of resolv.conf are > > > correct. > > > > > > > Check your default gateway when switching from DHCP to static. IIRC a > > /etc/rc.d/netif stop/start will recreate the default route. > > Not as I recall though. You will need to do a /etc/rc.d/routing restart > if your default router changes. The only time you might not need it is > when your routes are setup via DHCP. That sounds like it's probably what I need. Thank you! To clarify: I have several commonly-used network configs in my /etc/rc.config file, and often change which one I have commented out there, then restart with: # /etc/rc.d/netif restart With the revelation that /etc/rc.d/routing needs a restart, I think that probably solves the problem. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] print substr("Just another Perl hacker", 0, -2); From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:09:28 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F28616A421 for ; Wed, 4 Jul 2007 19:09:28 +0000 (UTC) (envelope-from gao@schrodinger.com) Received: from schrodinger.com (thermidore.schrodinger.com [192.156.98.99]) by mx1.freebsd.org (Postfix) with ESMTP id 0727C13C465 for ; Wed, 4 Jul 2007 19:09:27 +0000 (UTC) (envelope-from gao@schrodinger.com) Received: from toni.schrodinger.com (toni.schrodinger.com [192.156.98.56]) by schrodinger.com (8.13.4/8.13.4) with ESMTP id l64IqEA7077268 for ; Wed, 4 Jul 2007 11:52:14 -0700 (PDT) (envelope-from gao@schrodinger.com) Received: from [10.10.18.38] (sub22-20.member.dsl-only.net [63.105.22.20]) (authenticated bits=0) by toni.schrodinger.com (8.13.3/8.13.3) with ESMTP id l64IqDxZ068082 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 4 Jul 2007 11:52:14 -0700 (PDT) (envelope-from gao@schrodinger.com) Message-ID: <468BEC58.7070901@schrodinger.com> Date: Wed, 04 Jul 2007 11:52:08 -0700 From: Simon Gao User-Agent: Thunderbird 2.0.0.4 (X11/20070615) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (schrodinger.com [192.156.98.99]); Wed, 04 Jul 2007 11:52:14 -0700 (PDT) Subject: How to install a specific version of Python X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:09:28 -0000 Hi, How to install a specific version of Python which is not the latest version? Simon From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:11:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6705316A46F for ; Wed, 4 Jul 2007 19:11:47 +0000 (UTC) (envelope-from oregnier@oregnier.net) Received: from 30.mail-out.ovh.net (30.mail-out.ovh.net [213.186.62.213]) by mx1.freebsd.org (Postfix) with SMTP id BC9FA13C484 for ; Wed, 4 Jul 2007 19:11:46 +0000 (UTC) (envelope-from oregnier@oregnier.net) Received: (qmail 21695 invoked by uid 503); 4 Jul 2007 19:12:07 -0000 Received: (QMFILT: 1.0); 04 Jul 2007 19:12:07 -0000 Received: from b7.ovh.net (HELO mail193.ha.ovh.net) (213.186.33.57) by 30.mail-out.ovh.net with SMTP; 4 Jul 2007 19:12:07 -0000 Received: from b0.ovh.net (HELO queue-out) (213.186.33.50) by b0.ovh.net with SMTP; 4 Jul 2007 19:11:50 -0000 Received: from mac76-2-82-241-6-173.fbx.proxad.net (HELO ?127.0.0.1?) (postmaster@oregnier.net@82.241.6.173) by ns0.ovh.net with SMTP; 4 Jul 2007 19:11:49 -0000 Message-ID: <468BF123.3060903@oregnier.net> Date: Wed, 04 Jul 2007 21:12:35 +0200 From: Olivier Regnier User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Paul Schmehl References: <468BC778.5040802@oregnier.net> <6EFA02413CBD4BA051727365@paul-schmehls-powerbook59.local> In-Reply-To: <6EFA02413CBD4BA051727365@paul-schmehls-powerbook59.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Ovh-Remote: 82.241.6.173 (mac76-2-82-241-6-173.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|H 0.5/N Cc: freebsd-questions@freebsd.org Subject: Re: Questions about periodic.conf 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: Wed, 04 Jul 2007 19:11:47 -0000 Paul Schmehl a écrit : > --On July 4, 2007 6:14:48 PM +0200 Olivier Regnier > wrote: > >> Hi everyone, >> >> I'm working on FreeBSD 6.2 and my question is, it is possible to use the >> periodic.conf file in /usr/local/etc/ directory ? >> > Yes, of course. > >> My second question, if i create a empty periodic.conf, it is possible to >> include the /etc/defaults/periodic.conf file with a command line by >> example >> >> include /etc/defaults/periodic.conf ? >> > It isn't needed. The /etc/defaults conf files are always parsed. > They are overridden by any settings in the corresponding file in /etc. > > Paul Schmehl (pauls@utdallas.edu) > Senior Information Security Analyst > The University of Texas at Dallas > http://www.utdallas.edu/ir/security/ Ok thank you for your answer :) From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:19:00 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 442F016A400 for ; Wed, 4 Jul 2007 19:19:00 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.freebsd.org (Postfix) with ESMTP id 007C913C484 for ; Wed, 4 Jul 2007 19:18:59 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.13.8/8.13.8) with ESMTP id l64JIwF6095125 for ; Wed, 4 Jul 2007 15:18:58 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.13.8/8.13.8/Submit) with ESMTP id l64JIwTe095121 for ; Wed, 4 Jul 2007 15:18:58 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Wed, 4 Jul 2007 15:18:58 -0400 (EDT) From: doug To: freebsd-questions@FreeBSD.org In-Reply-To: <54db43990705310902u4cae3d44ha7410434096ce021@mail.gmail.com> Message-ID: <20070704151326.E91978@fledge.watson.org> References: <4e3998c7e72.465ed931@broadpark.no> <18014.49617.224340.697794@jerusalem.litteratus.org> <465EC558.9070102@netfence.it> <20070531135651.GA988@home> <54db43990705310902u4cae3d44ha7410434096ce021@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (fledge.watson.org [127.0.0.1]); Wed, 04 Jul 2007 20:18:59 +0100 (BST) Cc: Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: doug@safeport.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 19:19:00 -0000 How far do we get to go back in time? From the first online fortran compiler: ugh1 and ugh2. In fairness these were conditions that were not supposed to happen, but somehow they always do. In more recent times I always liked, "invalid page fault" this perhaps as late as win98. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:19:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F07DF16A468 for ; Wed, 4 Jul 2007 19:19:52 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id 84DE213C46A for ; Wed, 4 Jul 2007 19:19:52 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so393865uge for ; Wed, 04 Jul 2007 12:19:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Vjvfm2EO0WhW/sN0+xxroU0JzfKk3Cai7Hl6me4hLlk4XuZPcGLMafx/EiFfCuKv1IJ+VsrU8pjuitmD3MiSrOxKmNvauvW7HFSsVr7LVtjdkTzN5pUrWXaaaNr1ssoQcgkI0q25Ne355gyCOD3r18usAV+HPb5WvDUnSS6D1b0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=S+dIi40S5u1NxE1tCneW9M8JB6G3ieK0/jR2TdGHOjB0VKL333NVnVyE6ED9etLXwHjy9/8cuh7bP7L863jLzY9uwMCIFn5Pgd8oa6wYbANJDJwvYgPuQ5hbcrLzANCsL2JdoXBNHxPa+1Ug+6dAeJ55B6acdOsNtqoGDfUrfug= Received: by 10.82.134.12 with SMTP id h12mr18516859bud.1183576791174; Wed, 04 Jul 2007 12:19:51 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Wed, 4 Jul 2007 12:19:51 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 14:19:51 -0500 From: "illoai@gmail.com" To: "Robert Huff" In-Reply-To: <18059.55651.790757.504527@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <002601c7be4c$4767b7c0$6501a8c0@GRANT> <18059.55651.790757.504527@jerusalem.litteratus.org> Cc: freebsd-questions@freebsd.org Subject: Re: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:19:53 -0000 On 04/07/07, Robert Huff wrote: > Pablo Mora writes: > > > > Can one run > > > > > > 'make clean' > > > > > > in the /usr/ports directory in the hope of reducing disk space? > > > > portsclean -CDD > > "portsclean" is part of the "portupgrade" port, not the base > system. Not everyone has it installed, or wants to. > To the original poster: yes, you can. Mind you, I'm not sure > it's the most efficient way - since I have "portupgrade" installed, > I prefer portsclean. > Indeed. If you set WRKDIRPREFIX you can merely rm -r $WRKDIRPREFIX/ports. The distfiles can be a bit more difficult to deal with in a sane manner without some sort of add-on tool. -- -- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:26:30 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C577016A41F for ; Wed, 4 Jul 2007 19:26:30 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 5D1A313C458 for ; Wed, 4 Jul 2007 19:26:30 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so394842uge for ; Wed, 04 Jul 2007 12:26:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=rEcgYwNrNEfP3989nms/OiVCkfbvgNTASgJDDtXk9H/HpBA8tEVILJ5XKyogZqH7iOAtQ86M0oSbLJmFLXFKVp6DMIOqWadI5ldUMqotmFNvkpNIXncRj8AUeRrpPzsntVP4dWnYq7PlZiETXMxA0N16t9fJM7z550X20kgdEqk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=TKLT2HePvmNYFTPT2juA4MIj/kDNdmj1/HI2Emmbh+oJQbMGcllgKqbDvnicKBpmuUuEn1a5WI7qkfzZhrJKZfbZCXvxhm5wBaVjRTZLMQkx6cqpcEPeoVvKXkEg5aVrNFUnJVC+H2xTRzsE1fqzsqTSirpDmtrbxyO9k7nlB9U= Received: by 10.82.158.12 with SMTP id g12mr18516659bue.1183577188615; Wed, 04 Jul 2007 12:26:28 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Wed, 4 Jul 2007 12:26:28 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 14:26:28 -0500 From: "illoai@gmail.com" To: "Olivier Nicole" In-Reply-To: <200707040856.l648uDbG039253@banyan.cs.ait.ac.th> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200707040856.l648uDbG039253@banyan.cs.ait.ac.th> Cc: questions@freebsd.org Subject: Re: Recursivity of -r and -R in portupgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:26:30 -0000 On 04/07/07, Olivier Nicole wrote: > Hi, > > I am wondering is the option -R and -r are mutually recursive in > portupgrade. > > That is, if the option -R applies to every ports detected by -r and > respectively if -r applies to every ports detected by -R. > > Lest take the example of: > > portupgrade -fRr gd > > gd depends on png, does it upgrade png with portupgrade -fRr png? > If I am recalling correctly, it does not. > php4-gd is built from gd, does it upgrade php4-gd with > portupgrade -Rrf php4-gd? (That will in turn upgrade php, maybe > apache...) Nor here, though if php and apache record gd as a requirement they will be rebuilt. Very good idea to use the -n flag. -- -- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:29:43 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39B1816A46B for ; Wed, 4 Jul 2007 19:29:43 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id 84EFD13C4C6 for ; Wed, 4 Jul 2007 19:29:41 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l64JTUnZ018915; Wed, 4 Jul 2007 23:29:30 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l64JTQZ0018914; Wed, 4 Jul 2007 23:29:26 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Wed, 4 Jul 2007 23:29:26 +0400 From: Yuri Pankov To: "illoai@gmail.com" Message-ID: <20070704192926.GC2472@darklight.org.ru> References: <002601c7be4c$4767b7c0$6501a8c0@GRANT> <18059.55651.790757.504527@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HG+GLK89HZ1zG0kk" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Wed, 04 Jul 2007 23:29:31 +0400 (MSD) Cc: Robert Huff , freebsd-questions@freebsd.org Subject: Re: Ports Dir X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:29:43 -0000 --HG+GLK89HZ1zG0kk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2007 at 02:19:51PM -0500, illoai@gmail.com wrote: > On 04/07/07, Robert Huff wrote: >> Pablo Mora writes: >> >> > > Can one run >> > > >> > > 'make clean' >> > > >> > > in the /usr/ports directory in the hope of reducing disk space? >> > >> > portsclean -CDD >> >> "portsclean" is part of the "portupgrade" port, not the base >> system. Not everyone has it installed, or wants to. >> To the original poster: yes, you can. Mind you, I'm not sure >> it's the most efficient way - since I have "portupgrade" installed, >> I prefer portsclean. >> > > Indeed. If you set WRKDIRPREFIX you can merely > rm -r $WRKDIRPREFIX/ports. The distfiles can be > a bit more difficult to deal with in a sane manner > without some sort of add-on tool. > > --=20 > -- That tool lives in /usr/ports/Tools/scripts and is called distclean.sh, I think :) Yuri --HG+GLK89HZ1zG0kk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGi/UWeoAklVFrLdgRAiBGAJ9IUnMu0zeitWC75/HMipu+J+Vn+wCcCHNO 6ub1C08u/A2xZRJJscfAJ00= =0gI3 -----END PGP SIGNATURE----- --HG+GLK89HZ1zG0kk-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:44:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AFA6616A400 for ; Wed, 4 Jul 2007 19:44:36 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id 6D3BC13C4C3 for ; Wed, 4 Jul 2007 19:44:36 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so539589anc for ; Wed, 04 Jul 2007 12:44:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=kt5SA1D2996H4Nit2akPihVCIUxk7l2E18DU3s4vzwj0ZHNEc0bn/LY8D326GRJWX5Un7ZV7gZYSHLEGOKCvhTCoCCxjYb2vhHZhaJbeGnO3i/YTQHwof5LkKN4qPhsJl1xy5eN3/MayPS11qL4+lHLcmJhRXUC64iwXjhW+80M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=dKbNlV5fxwBfyuZbpd0cHXYGIVX2a+RQLXZ9Eui7UvcJw9vbyWhEmMUwPy9RBcBZ3tULB+MpOR4wQB7p8sUbN+5gkWIuZAY9k21i77MaccdUlkUhknJrUkFN7r3eq66MjgMun0iHqYUFaMv0+wGo42hYdthIJxryQ6oMpQHWrek= Received: by 10.100.111.16 with SMTP id j16mr4964920anc.1183578275291; Wed, 04 Jul 2007 12:44:35 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Wed, 4 Jul 2007 12:44:34 -0700 (PDT) Message-ID: <499c70c0707041244u5f5127ffj4948ed7d116c2faf@mail.gmail.com> Date: Wed, 4 Jul 2007 22:44:34 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: "Jonathan Horne" In-Reply-To: <200707041230.48171.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200707040210.l642AMWQ084133@banyan.cs.ait.ac.th> <200707041230.48171.freebsd@dfwlp.com> Cc: freebsd-questions@freebsd.org Subject: Re: Migration from 5.5 to 6.2 without single user access X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:44:36 -0000 On 7/4/07, Jonathan Horne wrote: > On Tuesday 03 July 2007 21:10:22 Olivier Nicole wrote: > > Hi, > > > > I am upgrading a remote server (very remote, 10,000 km) and I have no > > way to access the machine in single user mode. > > > > Is there a recommended way to do the upgrade from 5.5 to 6.2? > > > > Do everything in multi-user, but kill all services but sshd? > > > > Thanks, > > > > Olivier > > your mileage may vary... > > but i do it without killing any services (but i also know that i am the only > one logged into the machine). when you install world, *for the most part*, > you are not tampering with things like apache, etc. > > as always, good backups of your data and configurations are a must before > performing any such dangerous process as a multiuser-mode installworld. > > when going from 5.x to 6.x, most people recommend first upgrading to the > lastest possible 5.x release first, and then moving on to 6.x (so in your > case, either 5.5-STABLE or 5.5-RELEASE-p13. > > good luck, > -- > Jonathan Horne > http://dfwlpiki.dfwlp.org > freebsd@dfwlp.com Here how I did it for many remote servers I own and help friends to run. First install screen from the ports to make your life easier. After csup to the branch you desire to upgrade to, like RELENG_6_2 or RELENG_6 to get the latest changes in 6.x branch do these stuff. #rm -r /usr/obj/* #cd /usr/src #make cleanworld #mergemaster -p #make buildworld #make buildkernel #make installkernel #reboot #cd /usr/src #make installworld #mergemaster -iU (-iU added to automatically install files that don't exist and upgrade those that haven't changed. #reboot -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 19:56:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2855416A400; Wed, 4 Jul 2007 19:56:49 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-5.eunet.yu (smtpclu-5.eunet.yu [194.247.192.230]) by mx1.freebsd.org (Postfix) with ESMTP id 68CAD13C465; Wed, 4 Jul 2007 19:56:48 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-232-137.eunet.yu [213.198.232.137]) by smtpclu-5.eunet.yu (8.13.6/8.13.6) with ESMTP id l64JuTe6027108; Wed, 4 Jul 2007 21:56:30 +0200 Message-Id: <200707041956.l64JuTe6027108@smtpclu-5.eunet.yu> Date: Wed, 4 Jul 2007 21:56:20 +0200 From: Nikola Lecic To: "Abdullah Ibn Hamad Al-Marri" In-Reply-To: <499c70c0707041244u5f5127ffj4948ed7d116c2faf@mail.gmail.com> References: <200707040210.l642AMWQ084133@banyan.cs.ait.ac.th> <200707041230.48171.freebsd@dfwlp.com> <499c70c0707041244u5f5127ffj4948ed7d116c2faf@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_50,UNPARSEABLE_RELAY X-AVAS-Spam-Score: 0.0 Cc: Jonathan Horne , freebsd-questions@freebsd.org, Colin Percival Subject: Re: Migration from 5.5 to 6.2 without single user access X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 19:56:49 -0000 On Wed, 4 Jul 2007 22:44:34 +0300 "Abdullah Ibn Hamad Al-Marri" wrote: > On 7/4/07, Jonathan Horne wrote: > > On Tuesday 03 July 2007 21:10:22 Olivier Nicole wrote: > > > Hi, > > > > > > I am upgrading a remote server (very remote, 10,000 km) and I > > > have no way to access the machine in single user mode. > > > > > > Is there a recommended way to do the upgrade from 5.5 to 6.2? > > > > > > Do everything in multi-user, but kill all services but sshd? > > > > > > Thanks, > > > > > > Olivier > > > > your mileage may vary... > > > > but i do it without killing any services (but i also know that i am > > the only one logged into the machine). when you install world, > > *for the most part*, you are not tampering with things like apache, > > etc. > > > > as always, good backups of your data and configurations are a must > > before performing any such dangerous process as a multiuser-mode > > installworld. > > > > when going from 5.x to 6.x, most people recommend first upgrading > > to the lastest possible 5.x release first, and then moving on to > > 6.x (so in your case, either 5.5-STABLE or 5.5-RELEASE-p13. > > > > good luck, > > -- > > Jonathan Horne > > http://dfwlpiki.dfwlp.org > > freebsd@dfwlp.com >=20 > Here how I did it for many remote servers I own and help friends to > run. >=20 > First install screen from the ports to make your life easier. >=20 > After csup to the branch you desire to upgrade to, like RELENG_6_2 or > RELENG_6 to get the latest changes in 6.x branch do these stuff. >=20 > #rm -r /usr/obj/* > #cd /usr/src > #make cleanworld > #mergemaster -p > #make buildworld > #make buildkernel > #make installkernel > #reboot > #cd /usr/src > #make installworld > #mergemaster -iU (-iU added to automatically install files that don't > exist and upgrade those that haven't changed. > #reboot This is rather a sub-question than an answer: can Colin Percival's depenguinator (http://www.daemonology.net/depenguinator/) be used for such porpose? I mean, can someone run (or tweak) this program to run on an old remote FreeBSD installation in order to easily get a new fresh FreeBSD system? Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 20:17:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2A7816A400 for ; Wed, 4 Jul 2007 20:17:09 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from mail.jellico.com (mail.jellico.com [207.191.185.6]) by mx1.freebsd.org (Postfix) with ESMTP id 646F513C447 for ; Wed, 4 Jul 2007 20:17:09 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from lisac (lisa.jellico.com [207.191.185.213]) (authenticated bits=0) by mail.jellico.com (8.12.6/8.12.6) with ESMTP id l64KGJBX008552 for ; Wed, 4 Jul 2007 16:16:19 -0400 Message-ID: <003a01c7be78$42267cc0$d5b9bfcf@lisac> From: "Lisa Casey" To: Date: Wed, 4 Jul 2007 16:16:47 -0400 Organization: Netlink 2000, Inc. MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Scanned-By: MIMEDefang 2.48 on 127.0.0.1 Subject: New FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 20:17:09 -0000 Hi, First, thanks for the help I got from this list when I was having problems getting FreeBSD to install on a new system. Hard drive cabling was the problem - got that fixed. I have FreeBSD up and running now. I have a couple of questions. When I installed FreeBSD, it automatically installed Sendmail 8.13. I installed cyrus-sasl2 and cyrus-sasl2-saslauthd from ports because I need SMTP auth. Sendmail is running on the box: # ps waux | grep sendmail smmsp 20613 0.0 0.1 3440 2800 ?? Is 2:53PM 0:00.00 sendmail: Queue runner@00:30:00 for /var/spool/clientmqueue (sendmail) root 20615 0.0 0.2 4400 3692 ?? Ss 2:54PM 0:00.03 sendmail: accepting connections (sendmail) but I cannot send mail through this server using Outlook Express on the Windows computer on my desk (I get a generic error message about "the connection to the server has failed" nor can I telnet to port 25 on this server. I have noticed that there isn't anything in /etc/rc.conf regarding sendmail (no SENDMAIL_ENABLE="YES" etc.) but since sendmail is starting from rc.d perhaps there shouldn't be anything in rc.conf? I'm not sure where to begin trying to figure out why I can't send mail or telnet to port 25. What am I overlooking here? Also, when I installed FreeBSD, I installed SSH. Unfortunately, at first I put the wrong IP address on this machine (it conflicted with another server I currently have running). I fixed that. In /var/messages, however, I'm seeing this every 10 minutes or so: Jul 4 16:12:14 mail inetd[423]: ssh/tcp: bind: Address already in use I don't know if this is because I initially setup this server with the wrong IP address on the ethernet interface (and ssh is trying to bind to this wrong IP) or if I'm getting this message because ssh is being started from both rc.d (there is a script in there for ssh) and from /etc/rc.conf (/etc/rc.conf contains sshd_enable="YES") Thanks for the help, Lisa CAsey From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 20:26:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC92B16A469 for ; Wed, 4 Jul 2007 20:26:09 +0000 (UTC) (envelope-from annkok2001@yahoo.com) Received: from web53303.mail.re2.yahoo.com (web53303.mail.re2.yahoo.com [206.190.49.93]) by mx1.freebsd.org (Postfix) with SMTP id 5D25113C46E for ; Wed, 4 Jul 2007 20:26:09 +0000 (UTC) (envelope-from annkok2001@yahoo.com) Received: (qmail 14500 invoked by uid 60001); 4 Jul 2007 19:59:27 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=yJRXZoEALVCZMhkDeAadUn+KoAlWJkrUd/eM/RBrs6/rp3h6u0Yz3MMemm1KiaVt71yOk878OSpOWHlLohigt4Ivwu1X0LbDxZme2ggQ4KT4soHJTL0uwkljvkwXzhstV3mi/KOMSFTjNIMfOY6CYR2PWG5mwyZK7dpj2QAaaD0=; X-YMail-OSG: nomaIwYVM1kGiXM_0_0UdM0fwaVXyg.lfTQ0YeQ8.w9ctL9IMEgIFtvDDUdQxjC5E37D9hOjHGB5MkYkmQkkWViiEK_vTQkMDWCsFxK91G.Hc_pOM53YCMu6GxoPFQ-- Received: from [66.49.254.13] by web53303.mail.re2.yahoo.com via HTTP; Wed, 04 Jul 2007 12:59:27 PDT Date: Wed, 4 Jul 2007 12:59:27 -0700 (PDT) From: ann kok To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <445024.12701.qm@web53303.mail.re2.yahoo.com> Subject: grep 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: Wed, 04 Jul 2007 20:26:09 -0000 Hi all how can I use grep to have the output as 60.40.2.x eg: 60.40.2.5 60.40.2.3 60.40.2.7 except 60.40.2x.x eg: 60.40.20.5 60.40.23.6 60.40.25.7 Thank you ____________________________________________________________________________________ Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center. http://autos.yahoo.com/green_center/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 20:33:32 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 319FD16A46E for ; Wed, 4 Jul 2007 20:33:32 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id CE8CA13C46A for ; Wed, 4 Jul 2007 20:33:30 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l64KXJ5i019641; Thu, 5 Jul 2007 00:33:19 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l64KXHE8019640; Thu, 5 Jul 2007 00:33:17 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Thu, 5 Jul 2007 00:33:17 +0400 From: Yuri Pankov To: Lisa Casey Message-ID: <20070704203317.GD2472@darklight.org.ru> References: <003a01c7be78$42267cc0$d5b9bfcf@lisac> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GpGaEY17fSl8rd50" Content-Disposition: inline In-Reply-To: <003a01c7be78$42267cc0$d5b9bfcf@lisac> User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Thu, 05 Jul 2007 00:33:20 +0400 (MSD) Cc: freebsd-questions@freebsd.org Subject: Re: New FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 20:33:32 -0000 --GpGaEY17fSl8rd50 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2007 at 04:16:47PM -0400, Lisa Casey wrote: > Hi, > > First, thanks for the help I got from this list when I was having problem= s=20 > getting FreeBSD to install on a new system. Hard drive cabling was the=20 > problem - got that fixed. > > I have FreeBSD up and running now. I have a couple of questions. When I= =20 > installed FreeBSD, it automatically installed Sendmail 8.13. I installed= =20 > cyrus-sasl2 and cyrus-sasl2-saslauthd from ports because I need SMTP auth= =2E=20 > Sendmail is running on the box: > > # ps waux | grep sendmail > smmsp 20613 0.0 0.1 3440 2800 ?? Is 2:53PM 0:00.00 sendmail:=20 > Queue runner@00:30:00 for /var/spool/clientmqueue (sendmail) > root 20615 0.0 0.2 4400 3692 ?? Ss 2:54PM 0:00.03 sendmail:=20 > accepting connections (sendmail) > > but I cannot send mail through this server using Outlook Express on the= =20 > Windows computer on my desk (I get a generic error message about "the=20 > connection to the server has failed" nor can I telnet to port 25 on this= =20 > server. I have noticed that there isn't anything in /etc/rc.conf regardi= ng=20 > sendmail (no SENDMAIL_ENABLE=3D"YES" etc.) but since sendmail is startin= g=20 > from rc.d perhaps there shouldn't be anything in rc.conf? I'm not sure=20 > where to begin trying to figure out why I can't send mail or telnet to po= rt=20 > 25. What am I overlooking here? Sendmail will run only local submission if you don't have sendmail_enable=3D"YES" in /etc/rc.conf, so you need to add it to make sendmail listen on interfaces other than 127.0.0.1. Regarding SMTP AUTH - you need to recompile sendmail with SASL - http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/smtp-auth.html > > Also, when I installed FreeBSD, I installed SSH. Unfortunately, at first = I=20 > put the wrong IP address on this machine (it conflicted with another serv= er=20 > I currently have running). I fixed that. In /var/messages, however, I'm= =20 > seeing this every 10 minutes or so: > > Jul 4 16:12:14 mail inetd[423]: ssh/tcp: bind: Address already in use > > I don't know if this is because I initially setup this server with the=20 > wrong IP address on the ethernet interface (and ssh is trying to bind to= =20 > this wrong IP) or if I'm getting this message because ssh is being starte= d=20 > from both rc.d (there is a script in there for ssh) and from /etc/rc.con= f=20 > (/etc/rc.conf contains sshd_enable=3D"YES") You are starting sshd both as daemon and as inetd service. So either comment out ssh lines in /etc/inetd.conf and restart it or remove sshd_enable=3D"YES" from /etc/rc.conf (but be sure to check sshd(8) manpage and search for 'inetd'). > > Thanks for the help, > > Lisa CAsey > HTH, Yuri --GpGaEY17fSl8rd50 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGjAQNeoAklVFrLdgRAoDwAJ0dvH+2UIAGc50r5lwVkZAzt8Ie9QCgj1ov jK9hMT6QVoJkjIi4Je1APIc= =sRdw -----END PGP SIGNATURE----- --GpGaEY17fSl8rd50-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 20:34:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9354516A473 for ; Wed, 4 Jul 2007 20:34:11 +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 26E7813C4BB for ; Wed, 4 Jul 2007 20:34:10 +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 l64KY825017791; Wed, 4 Jul 2007 22:34:09 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id AD136B854; Wed, 4 Jul 2007 22:34:08 +0200 (CEST) Date: Wed, 4 Jul 2007 22:34:08 +0200 From: Roland Smith To: Lisa Casey Message-ID: <20070704203408.GA91364@slackbox.xs4all.nl> Mail-Followup-To: Lisa Casey , freebsd-questions@freebsd.org References: <003a01c7be78$42267cc0$d5b9bfcf@lisac> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lrZ03NoBR/3+SXJZ" Content-Disposition: inline In-Reply-To: <003a01c7be78$42267cc0$d5b9bfcf@lisac> 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.16 (2007-06-09) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: New FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 20:34:11 -0000 --lrZ03NoBR/3+SXJZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jul 04, 2007 at 04:16:47PM -0400, Lisa Casey wrote: > First, thanks for the help I got from this list when I was having problem= s=20 > getting FreeBSD to install on a new system. Hard drive cabling was the=20 > problem - got that fixed. Hardware problems can be a pain. :-) =20 > I have FreeBSD up and running now. I have a couple of questions. When I= =20 > installed FreeBSD, it automatically installed Sendmail 8.13. I installed= =20 > cyrus-sasl2 and cyrus-sasl2-saslauthd from ports because I need SMTP auth= =2E=20 > Sendmail is running on the box: >=20 > # ps waux | grep sendmail > smmsp 20613 0.0 0.1 3440 2800 ?? Is 2:53PM 0:00.00 sendmail:=20 > Queue runner@00:30:00 for /var/spool/clientmqueue (sendmail) > root 20615 0.0 0.2 4400 3692 ?? Ss 2:54PM 0:00.03 sendmail:=20 > accepting connections (sendmail) >=20 > but I cannot send mail through this server using Outlook Express on the= =20 > Windows computer on my desk (I get a generic error message about "the=20 > connection to the server has failed" nor can I telnet to port 25 on this= =20 > server. I have noticed that there isn't anything in /etc/rc.conf regardi= ng=20 > sendmail (no SENDMAIL_ENABLE=3D"YES" etc.)=20 The defaults are set in /etc/defaults/rc.conf. And the inbound daemon is disabled by default. > Also, when I installed FreeBSD, I installed SSH. Unfortunately, at first = I=20 > put the wrong IP address on this machine (it conflicted with another serv= er=20 > I currently have running). I fixed that. In /var/messages, however, I'm= =20 > seeing this every 10 minutes or so: >=20 > Jul 4 16:12:14 mail inetd[423]: ssh/tcp: bind: Address already in use Could it be that inetd is trying to start sshd while one is already running? > I don't know if this is because I initially setup this server with the=20 > wrong IP address on the ethernet interface (and ssh is trying to bind to= =20 > this wrong IP) or if I'm getting this message because ssh is being starte= d=20 > from both rc.d (there is a script in there for ssh) and from /etc/rc.con= f=20 > (/etc/rc.conf contains sshd_enable=3D"YES") The variable in /etc/rc.conf is used to activate the rc.d script. 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) --lrZ03NoBR/3+SXJZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFGjARAEnfvsMMhpyURAsTXAKCV/TchM4Npb94WNVvtWqef54CdAQCdFymS k28MASIuyOhTqSl5HV+VySo= =AXtK -----END PGP SIGNATURE----- --lrZ03NoBR/3+SXJZ-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 20:38:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0B8216A468 for ; Wed, 4 Jul 2007 20:38:03 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id 9212F13C45E for ; Wed, 4 Jul 2007 20:38:03 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4513775pyb for ; Wed, 04 Jul 2007 13:38:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iGGAaseTsT1nocv2hCj1Xjw+6TGX168IkKPXx3ABgt7cMze+yP2SMSfB0/yCoxoQZJpam2Snd6ONfA3IbWn2eYEI+ERxqmU7l12j7iuoMFBNW+ix3spi7dRgiCujwdfo1vY8QCc+eDLuOJhkSb0H8YsTjQhZ3aZxexQvCIFUukc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=n9TvxOG1zWOIsBlvgxkBbPvzrKm/U+bBch0XQ8Eda9aJ1zWgjjCntPUED5PjHqO8G0kvuwYmke8lM9GMAZyHn7gxIiGwXp6C9fcSXpxh/zgdinMuBB9zoytMrtMjvnbXGvvFFZQiTX+FVz9Dh1nSMnJhhv1M1mHTTwAAsZB+hK4= Received: by 10.35.83.20 with SMTP id k20mr10346899pyl.1183581479673; Wed, 04 Jul 2007 13:37:59 -0700 (PDT) Received: by 10.35.17.4 with HTTP; Wed, 4 Jul 2007 13:37:59 -0700 (PDT) Message-ID: <340a29540707041337n2c71118eh9b708de7bc0cdb48@mail.gmail.com> Date: Wed, 4 Jul 2007 14:37:59 -0600 From: "Andrew Falanga" To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: mod_perl port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 20:38:03 -0000 Hi, I installed Apache 2.2 and the appropriate mod_perl port for this version of apache. However, it is not referenced in /usr/local/etc/apache/httpd.conf. How do I get it there? Andy From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 21:01:58 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 814DC16A400 for ; Wed, 4 Jul 2007 21:01:58 +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 56F1F13C484 for ; Wed, 4 Jul 2007 21:01:58 +0000 (UTC) (envelope-from noc@hdk5.net) Received: from [192.168.1.29] (unknown [66.180.149.18]) by guam10.hdk5.net (Postfix) with ESMTP id C14B55C1F; Wed, 4 Jul 2007 10:36:25 -1000 (HST) Message-ID: <468C04C9.6060700@hdk5.net> Date: Wed, 04 Jul 2007 10:36:25 -1000 From: NetOpsCenter User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060417 FreeBSD/i386 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Yordan Yordanov , freebsd-questions@FreeBSD.org References: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> In-Reply-To: <1573608907.2110561183554574022.JavaMail.nobody@mail32.abv.bg> Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 8bit Cc: Subject: Re: About FreeBSD installation X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 21:01:58 -0000 Yordan Yordanov wrote: >Hello > >I want to install the last stable release of FreeBSD Unix on my desktop machine with AMD64 processor. Are there any differences in the FreeBSD ports for these two platform: FreeBSD/i386 and amd64? In the FreeBSD handbook I saw a workaround which should be applied to set up FreeBSD for some chipsets. If I have such a problem can I try to install i386 version >on my machine. There is no reason not to work, but I want to be sure that this is possible. > >Greetings from Bulgaria > >Yordan > > > >----------------------------------------------------------------- >Ñ áåíçèí â êðúâòà! >http://auto-motor-und-sport.bg/ >_______________________________________________ >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" > > > Yordan, This FreeBSD box I am using to email you is a dual AMD 64 running on i386 7.0 CURRENT. It runs just fine....fast. The AMD64 version of the os gave me many errors and wouldn't run the video card so I switched to the i386. top -S shows it is running efficiently. Aloha.... ~Al Plant - Honolulu, Hawaii - Phone: 808-284-2740 + http://hawaiidakine.com + http://freebsdinfo.org + noc@hdk5.net + + http://internetohana.org - Supporting - FreeBSD 6.* - 7.* + "All that's really worth doing is what we do for others."- Lewis Carrol From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 21:26:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7883D16A46B for ; Wed, 4 Jul 2007 21:26:14 +0000 (UTC) (envelope-from cs@schug.net) Received: from schug.net (s0.schug.net [194.97.148.170]) by mx1.freebsd.org (Postfix) with ESMTP id 3C61413C46A for ; Wed, 4 Jul 2007 21:26:13 +0000 (UTC) (envelope-from cs@schug.net) Received: by schug.net (Postfix, from userid 10000) id 1674CC59FC; Wed, 4 Jul 2007 23:02:33 +0200 (CEST) Date: Wed, 4 Jul 2007 23:02:33 +0200 From: Christoph Schug To: Nejc =?iso-8859-15?Q?=A6koberne?= Message-ID: <20070704210232.GA12683@voodoo.schug.net> References: <468A2723.8020207@skoberne.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <468A2723.8020207@skoberne.net> Organization: SpaceNet AG User-Agent: Mutt/1.5.13 OpenPKG/2-STABLE (2006-08-11) Cc: User Questions Subject: Re: BIND to listen on all interfaces? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 21:26:14 -0000 On Tue, Jul 03, 2007, Nejc ¦koberne wrote: > I also tried to specify the ADSL IP address in named.conf (it is static), > but it is > still a no go. I don't have such problems with other daemons! Any ideas? Is the interface already up when you are starting BIND? I guess it is not. I haven't tested myself but you might try to add the very same IP you use for your ADSL interface as an alias to the lo0 device. This way the IP is available all the time, thus BIND should be able to listen on it. While it might look strange to have to same IP on two different interfaces (lo0 and ADSL in your case) IIRC it should work flawlessly. Just give it a try and report back if it works or not. -cs From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 21:33:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9B0316A421 for ; Wed, 4 Jul 2007 21:33:34 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id 8C3AA13C458 for ; Wed, 4 Jul 2007 21:33:34 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4533750pyb for ; Wed, 04 Jul 2007 14:33:34 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qMfra4b8CWsq+LHLSUilB4PzkOPro4oZJ4MaX0eVTBGWTGzoUHQ6sdUAlEXcvE/KER8GPf8DxkkXG9zrsTTnqShnoNhfeU7/xga836xuvCYiRWX4ro5eTT3NT49L0gCCLPs5AWQGVgvdOegDfDLhQFWsS1/zIJtGhNQvx1mGPgY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=D7yZ2rdHV2TNuwPprwYz2ONt3ouHJj92fZIUfb+F4b9WGCDbyeKsWHDIllTcOlI+0BYKoHHWCSQc2qFazr8oCXhYPRFqfBOSjsRsf17CxDLH7SdvoVqHPHfRXeIuYdeAQFmMKWKx0rjZuAjIJoEG7LP70bvMfYk8C8seJdSbrgc= Received: by 10.35.109.2 with SMTP id l2mr10423062pym.1183584813424; Wed, 04 Jul 2007 14:33:33 -0700 (PDT) Received: by 10.35.17.4 with HTTP; Wed, 4 Jul 2007 14:33:33 -0700 (PDT) Message-ID: <340a29540707041433p29600c83ve800f44788b28ff1@mail.gmail.com> Date: Wed, 4 Jul 2007 15:33:33 -0600 From: "Andrew Falanga" To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Does anyone on this list use WebGUI 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, 04 Jul 2007 21:33:34 -0000 Hi, I'm wondering, does anyone here use WebGUI on their FreeBSD installs and if so, or even if not would know, what is this LoadModule apreq_module modules/mod_apreq2.so mentioned in the installation text file? I can't seem to find it in ports, this could simply mean that it's just not in ports, but I would figuring that it most likely is and it's just not called that. Andy From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 21:42:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF32916A421 for ; Wed, 4 Jul 2007 21:42:48 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id A792913C43E for ; Wed, 4 Jul 2007 21:42:48 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 93EE55194D for ; Wed, 4 Jul 2007 17:42:47 -0400 (EDT) Date: Wed, 4 Jul 2007 22:42:44 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070704224244.68f09a50@gumby.homeunix.com.> In-Reply-To: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 21:42:48 -0000 On Thu, 5 Jul 2007 02:34:16 +0800 "Dinesh Pandian" wrote: > Good day all! > > Please help me out with a really annoying little problem that bugs me > everytime I try to install applications from ports. > > When I try to run portupgrade -a or portmanager -u, > when Make fetches the files from the servers, fetch > normally hangs randomly sometime through the downloading > of the distfile. The only solution I've thought about is aborting > the upgrade procedure and issuing the same command again, > hoping that fetch resumes where it left off. This is a bit of a long-shot, but if you are using pf, and the relevant rule has a "modulate state", try changing it to "keep state" Otherwise, what is the output of make -V FETCH_CMD From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:00:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2038C16A46B for ; Wed, 4 Jul 2007 22:00:50 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id B35DB13C4AE for ; Wed, 4 Jul 2007 22:00:49 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4542721pyb for ; Wed, 04 Jul 2007 15:00:49 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=INGLAmGlI6GYmXTj/NWNiELXWQ7rbTfnrP+PNoc1Wox1jTsOKNAmIircFMbYCpgojSXQSYOP6xaDtMuM5lKO6lHN2zm+XO+LbZOhUz31nzvOwlno0gIgnbU9x5FP+3lpK7Ok43NTodAQGAWKezqjrhsMULf7n4/MVXkItglWLMU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=CcI6jmGZwNomz+b+ewxUVTEFYK6jNv6WIi7IPR/RdBfXgEV64KuEwh7slpRmm+k7bAQz7CdXWBp71xzADPmHP4ePfq/Nfzmm5x3DjYl7MoT7IM9cVd/zQ+3OB71dEZvqZtcXi60li/23KtFAytKGBM0wrTcIixKsHVnGji2brIk= Received: by 10.35.109.2 with SMTP id l2mr10461308pym.1183586448518; Wed, 04 Jul 2007 15:00:48 -0700 (PDT) Received: by 10.35.17.4 with HTTP; Wed, 4 Jul 2007 15:00:48 -0700 (PDT) Message-ID: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> Date: Wed, 4 Jul 2007 16:00:48 -0600 From: "Andrew Falanga" To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: How does one start mysql after installing from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 22:00:50 -0000 This is pretty pathetic but I'm batting a 1000 on this one. I installed mysql a few weeks ago on this web server I'm making for my church and didn't do anything with it at that point (that was the first mistake). I've not used mysql (I usually use PostgreSQL) but WebGUI wants mysql. So, being completely unfamiliar with it, I cannot figure out how to start this thing. I eventually figured out that the mysqld process starts by using mysqld_safe in /usr/local/bin. However, I can't get it to start. At first it was because the directory /var/db/mysql didn't exist. I created that and now I get this: whitbap# mysqld_safe Starting mysqld daemon with databases from /var/db/mysql STOPPING server from pid file /var/db/mysql/whitbap.pid 070704 16:09:42 mysqld ended (And the contents of /var/db/mysql/whitbap.err: whitbap# cat /var/db/mysql/whitbap.err 070704 16:02:41 mysqld started 070704 16:02:42 InnoDB: Operating system error number 13 in a file operation. InnoDB: The error means mysqld does not have the access rights to InnoDB: the directory. InnoDB: File name ./ibdata1 InnoDB: File operation call: 'create'. InnoDB: Cannot continue operation. 070704 16:02:42 mysqld ended 070704 16:09:42 mysqld started 070704 16:09:42 InnoDB: Operating system error number 13 in a file operation. InnoDB: The error means mysqld does not have the access rights to InnoDB: the directory. InnoDB: File name ./ibdata1 InnoDB: File operation call: 'create'. InnoDB: Cannot continue operation. 070704 16:09:42 mysqld ended I'm assuming that a process, perhaps similar to PostgreSQL, is applicable for MySQL too. For example, in PostgreSQL, one must first usr 'initdb' to initialize the data area. Is this true for MySQL too? Please tell me how to work MySQL (to anyone on this list that uses it). Thanks, Andy From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:11:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0FC616A468 for ; Wed, 4 Jul 2007 22:11:59 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp1.utsp.utwente.nl [130.89.2.8]) by mx1.freebsd.org (Postfix) with ESMTP id 78A4613C459 for ; Wed, 4 Jul 2007 22:11:57 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l64MBq1R008644; Thu, 5 Jul 2007 00:11:53 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 00:11:51 +0200 User-Agent: KMail/1.9.6 References: <468BEC58.7070901@schrodinger.com> In-Reply-To: <468BEC58.7070901@schrodinger.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707050011.52594.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Simon Gao Subject: Re: How to install a specific version of Python X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 22:11:59 -0000 On Wednesday 04 July 2007, Simon Gao wrote: > Hi, > > How to install a specific version of Python which is not the latest > version? > > Simon You can find version 2.3, 2.4 and 2.5 of Python in the ports tree. Or you could simply add the package of the required version: pkg_add -r python23 HTH, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:18:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFB6616A421 for ; Wed, 4 Jul 2007 22:18:09 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp2.utsp.utwente.nl [130.89.2.9]) by mx1.freebsd.org (Postfix) with ESMTP id 509D613C489 for ; Wed, 4 Jul 2007 22:18:09 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l64MHGj1004051; Thu, 5 Jul 2007 00:17:33 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 00:17:15 +0200 User-Agent: KMail/1.9.6 References: <445024.12701.qm@web53303.mail.re2.yahoo.com> In-Reply-To: <445024.12701.qm@web53303.mail.re2.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707050017.16357.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: ann kok Subject: Re: grep 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: Wed, 04 Jul 2007 22:18:09 -0000 On Wednesday 04 July 2007, ann kok wrote: > Hi all > > how can I use grep to have the output as 60.40.2.x > > eg: > 60.40.2.5 > 60.40.2.3 > 60.40.2.7 > > except 60.40.2x.x > > eg: > 60.40.20.5 > 60.40.23.6 > 60.40.25.7 > > Thank you grep '60\.40\.2\.[0-9]*' HTH, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:22:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4923B16A468 for ; Wed, 4 Jul 2007 22:22:35 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp2.utsp.utwente.nl [130.89.2.9]) by mx1.freebsd.org (Postfix) with ESMTP id D70B813C44B for ; Wed, 4 Jul 2007 22:22:33 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l64MMRj1004707; Thu, 5 Jul 2007 00:22:27 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 00:22:26 +0200 User-Agent: KMail/1.9.6 References: <340a29540707041337n2c71118eh9b708de7bc0cdb48@mail.gmail.com> In-Reply-To: <340a29540707041337n2c71118eh9b708de7bc0cdb48@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707050022.27042.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Andrew Falanga Subject: Re: mod_perl port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 22:22:35 -0000 On Wednesday 04 July 2007, Andrew Falanga wrote: > Hi, > > I installed Apache 2.2 and the appropriate mod_perl port for this > version of apache. However, it is not referenced in > /usr/local/etc/apache/httpd.conf. How do I get it there? > > Andy pyotr@lux:/usr/ports/www/mod_perl2> cat pkg-message ######################################################### Simple config: LoadModule perl_module libexec/apache2/mod_perl.so #PerlModule Apache::compat # your config comes here For a more detailed version (including more options) refer to: docs/user/intro/start_fast.pod or online: http://perl.apache.org/docs/2.0/user/intro/start_fast.html ######################################################### To be absolutely clear: you put the "LoadModule blabla" line in httpd.conf. HTH, Pieter de Goeje From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:24:00 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB9AE16A41F for ; Wed, 4 Jul 2007 22:24:00 +0000 (UTC) (envelope-from dennis.smith@sparq.com.au) Received: from smtp2.energex.com.au (smtp2.energex.com.au [147.209.216.213]) by mx1.freebsd.org (Postfix) with ESMTP id 56F4F13C465 for ; Wed, 4 Jul 2007 22:24:00 +0000 (UTC) (envelope-from dennis.smith@sparq.com.au) Received: from ms1.mail.local (ms1.mail.local [147.209.217.249]) by smtp2.energex.com.au (SMTP Gateway) with ESMTP id l64MBl5n010707 for ; Thu, 5 Jul 2007 08:11:48 +1000 (EST) (envelope-from dennis.smith@sparq.com.au) Received: - Received: - Received: - X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----_=_NextPart_001_01C7BE88.3A71C8F7" Date: Thu, 5 Jul 2007 08:11:10 +1000 Message-ID: X-MS-Has-Attach: yes X-MS-TNEF-Correlator: Thread-Topic: m4p conversion to mp4? Thread-Index: Ace+iDnL2MzykJluR2a9cXMm9aa9+Q== From: "SMITH Dennis \(SPARQ\)" To: X-OriginalArrivalTime: 04 Jul 2007 22:11:11.0154 (UTC) FILETIME=[3A9CE920:01C7BE88] X-ENERGEX: Scanned OutBound X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: m4p conversion to mp4? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 22:24:00 -0000 This is a multi-part message in MIME format. ------_=_NextPart_001_01C7BE88.3A71C8F7 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable Warning to potential uses of the AllMusicConverter ( www.allmusicconverter.com ). If you are a software developer beware of this application as it disables the debug environment, probably to prevent reverse engineering. This is done with some other applications that I know of but most of them put the system back the way they found it, this one doesn't, and you have to re-boot in order to debug your apps. =20 The company go to extreme lengths to also prevent installing on more than one PC. There methods would likely cause the application to stop working even if you upgrade your PC by replacing the motherboard or even the processor as it checks the system ID. =20 Attempts at contacting the company about this have resulted in an total absence of response. =20 Denny Smith - Senior Analyst/Programmer Sparq Solutions, Australia =20 ************************************************************************* This email message (including any file attachments transmitted with it) is for the sole use of the intended recipient(s) and may contain confidential and legally privileged information. Any unauthorised review, use, alteration, disclosure or distribution of this email (including any attachments) by an unintended recipient is prohibited. If you have received this email in error, please notify the sender by return email and destroy all copies of the original message. Any confidential or legal professional privilege is not waived or lost by any mistaken delivery of the email. SPARQ Solutions accepts no responsibility for the content of any email which is sent by an employee which is of a personal nature. Sender Details: SPARQ Solutions PO Box 15760 City East, Brisbane QLD Australia 4002 +61 7 4931 2222 SPARQ Solutions policy is to not send unsolicited electronic=20 messages. Suspected breaches of this policy can be reported by replying=20 to this message including the original message and the word "UNSUBSCRIBE"= =20 in the subject. ************************************************************************* ------_=_NextPart_001_01C7BE88.3A71C8F7-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:24:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5523216A400 for ; Wed, 4 Jul 2007 22:24:13 +0000 (UTC) (envelope-from pprocacci@bellsouth.net) Received: from imf24aec.mail.bellsouth.net (imf24aec.mail.bellsouth.net [205.152.59.72]) by mx1.freebsd.org (Postfix) with ESMTP id E4D8E13C4B8 for ; Wed, 4 Jul 2007 22:24:12 +0000 (UTC) (envelope-from pprocacci@bellsouth.net) Received: from ibm67aec.bellsouth.net ([70.156.10.107]) by imf22aec.mail.bellsouth.net with ESMTP id <20070704213110.BPAN27770.imf22aec.mail.bellsouth.net@ibm67aec.bellsouth.net> for ; Wed, 4 Jul 2007 17:31:10 -0400 Received: from [10.5.21.243] (really [70.156.10.107]) by ibm67aec.bellsouth.net with ESMTP id <20070704213110.VJNN28412.ibm67aec.bellsouth.net@[10.5.21.243]>; Wed, 4 Jul 2007 17:31:10 -0400 Message-ID: <468C1191.3030901@bellsouth.net> Date: Wed, 04 Jul 2007 16:30:57 -0500 From: Paul procacci User-Agent: Thunderbird 2.0.0.0 (X11/20070611) MIME-Version: 1.0 To: ann kok References: <445024.12701.qm@web53303.mail.re2.yahoo.com> In-Reply-To: <445024.12701.qm@web53303.mail.re2.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: grep 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: Wed, 04 Jul 2007 22:24:13 -0000 ann kok wrote: > Hi all > > how can I use grep to have the output as 60.40.2.x > > eg: > 60.40.2.5 > 60.40.2.3 > 60.40.2.7 > > except 60.40.2x.x > > eg: > 60.40.20.5 > 60.40.23.6 > 60.40.25.7 > > Thank you > > > > > ____________________________________________________________________________________ > Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center. > http://autos.yahoo.com/green_center/ > _______________________________________________ > 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" > > egrep "60.40.2[0-9]?." < blah.txt ;P Cheers! From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:26:37 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE78A16A400 for ; Wed, 4 Jul 2007 22:26:37 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: from pearl.ibctech.ca (pearl.ibctech.ca [208.70.104.210]) by mx1.freebsd.org (Postfix) with ESMTP id 70BD513C44B for ; Wed, 4 Jul 2007 22:26:37 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: (qmail 46448 invoked by uid 1002); 4 Jul 2007 22:26:36 -0000 Received: from iaccounts@ibctech.ca by pearl.ibctech.ca by uid 89 with qmail-scanner-1.22 (spamassassin: 2.64. Clear:RC:1(208.70.107.100):. Processed in 6.388031 secs); 04 Jul 2007 22:26:36 -0000 Received: from unknown (HELO ?192.168.1.210?) (steve@ibctech.ca@208.70.107.100) by pearl.ibctech.ca with (DHE-RSA-AES256-SHA encrypted) SMTP; 4 Jul 2007 22:26:29 -0000 Message-ID: <468C1EA8.1040809@ibctech.ca> Date: Wed, 04 Jul 2007 18:26:48 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: ann kok References: <445024.12701.qm@web53303.mail.re2.yahoo.com> In-Reply-To: <445024.12701.qm@web53303.mail.re2.yahoo.com> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: grep 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: Wed, 04 Jul 2007 22:26:37 -0000 > how can I use grep to have the output as 60.40.2.x > > eg: > 60.40.2.5 > 60.40.2.3 > 60.40.2.7 > > except 60.40.2x.x > > eg: > 60.40.20.5 > 60.40.23.6 > 60.40.25.7 I don't know if you WANT to have 2x, or just 2., it would of been better if you provided what you tried. Nonetheless, I've done both for you This would include 60.40.any.any: (eg: 60.40.171.199) grep "60.40.[0-9]\{1,\}.[0-9]\{1,\}" This would include 60.40.2.any (but not 60.40.2x): (eg: 60.40.2.199, not 60.40.20.199) grep "60.40.2.[0-9]\{1,\}" This would include 60.40.2any.any: (eg: 60.40.219.199 or 60.40.21.199) grep "60.40.2[0-9]\{1,\}.[0-9]\{1,\}" ...and this would include 60.40.2x.any (eg: 60.40.22.199, but not 60.40.212.199) grep "60.40.2[0-9]\{1\}." HTH, Steve From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:29:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08D9516A421 for ; Wed, 4 Jul 2007 22:29:14 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by mx1.freebsd.org (Postfix) with ESMTP id 57FCA13C4BA for ; Wed, 4 Jul 2007 22:29:13 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i29so1363235wxd for ; Wed, 04 Jul 2007 15:29:12 -0700 (PDT) Received: by 10.70.69.2 with SMTP id r2mr11949672wxa.1183588152359; Wed, 04 Jul 2007 15:29:12 -0700 (PDT) Received: from ?192.168.0.4? ( [67.189.184.224]) by mx.google.com with ESMTP id h18sm14019013wxd.2007.07.04.15.29.11 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 04 Jul 2007 15:29:11 -0700 (PDT) Date: Wed, 04 Jul 2007 18:29:23 -0400 To: User Questions Organization: Seibercom.net In-Reply-To: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> References: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20070704182152.415A.GERARD-SEIBERT@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.31 [en] From: Gerard Subject: Re: How does one start mysql after installing from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: User Questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 22:29:14 -0000 On July 04, 2007 at 06:00PM Andrew Falanga wrote: > This is pretty pathetic but I'm batting a 1000 on this one. I > installed mysql a few weeks ago on this web server I'm making for my > church and didn't do anything with it at that point (that was the > first mistake). I've not used mysql (I usually use PostgreSQL) but > WebGUI wants mysql. So, being completely unfamiliar with it, I cannot > figure out how to start this thing. > > I eventually figured out that the mysqld process starts by using > mysqld_safe in /usr/local/bin. However, I can't get it to start. At > first it was because the directory /var/db/mysql didn't exist. I > created that and now I get this: > > whitbap# mysqld_safe > Starting mysqld daemon with databases from /var/db/mysql > STOPPING server from pid file /var/db/mysql/whitbap.pid > 070704 16:09:42 mysqld ended > > (And the contents of /var/db/mysql/whitbap.err: > whitbap# cat /var/db/mysql/whitbap.err > 070704 16:02:41 mysqld started > 070704 16:02:42 InnoDB: Operating system error number 13 in a file operation. > InnoDB: The error means mysqld does not have the access rights to > InnoDB: the directory. > InnoDB: File name ./ibdata1 > InnoDB: File operation call: 'create'. > InnoDB: Cannot continue operation. > 070704 16:02:42 mysqld ended > > 070704 16:09:42 mysqld started > 070704 16:09:42 InnoDB: Operating system error number 13 in a file operation. > InnoDB: The error means mysqld does not have the access rights to > InnoDB: the directory. > InnoDB: File name ./ibdata1 > InnoDB: File operation call: 'create'. > InnoDB: Cannot continue operation. > 070704 16:09:42 mysqld ended > > > I'm assuming that a process, perhaps similar to PostgreSQL, is > applicable for MySQL too. For example, in PostgreSQL, one must first > usr 'initdb' to initialize the data area. Is this true for MySQL too? > > Please tell me how to work MySQL (to anyone on this list that uses it). > > Thanks, > Andy Unless I am misreading this, the correct method is by inserting the following into the '/etc/rc.conf' file: mysql_enable="YES" You can then either reboot the system to start the program, perhaps a good idea to make sure it does get initialized correctly, or else as root type: /usr/local/etc/rc.d/mysql-server start That should complete the process. If you receive error messages when mysql starts up, shut it down using the 'stop' flag in place of 'start' and then move the '/var/db/mysql' directory out of the way and restart mysql. -- Gerard From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:29:25 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A73516A46C for ; Wed, 4 Jul 2007 22:29:25 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from smtp3.utdallas.edu (smtp3.utdallas.edu [129.110.10.49]) by mx1.freebsd.org (Postfix) with ESMTP id 23FC813C458 for ; Wed, 4 Jul 2007 22:29:25 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.102] (adsl-65-68-205-180.dsl.rcsntx.swbell.net [65.68.205.180]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp3.utdallas.edu (Postfix) with ESMTP id 7F96465DA5 for ; Wed, 4 Jul 2007 17:29:22 -0500 (CDT) Date: Wed, 04 Jul 2007 17:29:19 -0500 From: Paul Schmehl To: User Questions Message-ID: <3239D874508554AF01ED85E9@paul-schmehls-powerbook59.local> In-Reply-To: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> References: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========A84EFF6CCD1EDFB8F185==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: How does one start mysql after installing from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jul 2007 22:29:25 -0000 --==========A84EFF6CCD1EDFB8F185========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On July 4, 2007 4:00:48 PM -0600 Andrew Falanga =20 wrote: > This is pretty pathetic but I'm batting a 1000 on this one. I > installed mysql a few weeks ago on this web server I'm making for my > church and didn't do anything with it at that point (that was the > first mistake). I've not used mysql (I usually use PostgreSQL) but > WebGUI wants mysql. So, being completely unfamiliar with it, I cannot > figure out how to start this thing. > > I eventually figured out that the mysqld process starts by using > mysqld_safe in /usr/local/bin. However, I can't get it to start. At > first it was because the directory /var/db/mysql didn't exist. I > created that and now I get this: > All ports that run daemons should put a startup script in=20 /usr/local/etc/rc.d. Mysqld does. Look at that script and it will=20 explain what you need to do to start mysql. The port maintainer has=20 written the script so that it should start mysqld properly. Basically, you add mysqld_enable=3D"YES" to the /etc/rc.conf file, but = look=20 at the script and read the comments in it. Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========A84EFF6CCD1EDFB8F185==========-- From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:32:15 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F35116A421 for ; Wed, 4 Jul 2007 22:32:15 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from smtp.utwente.nl (smtp1.utsp.utwente.nl [130.89.2.8]) by mx1.freebsd.org (Postfix) with ESMTP id 83B7A13C459 for ; Wed, 4 Jul 2007 22:32:14 +0000 (UTC) (envelope-from pieter@degoeje.nl) Received: from lux.student.utwente.nl (lux.student.utwente.nl [130.89.170.81]) by smtp.utwente.nl (8.12.10/SuSE Linux 0.7) with ESMTP id l64MWA1R011896; Thu, 5 Jul 2007 00:32:11 +0200 From: Pieter de Goeje To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 00:32:09 +0200 User-Agent: KMail/1.9.6 References: <340a29540707041433p29600c83ve800f44788b28ff1@mail.gmail.com> In-Reply-To: <340a29540707041433p29600c83ve800f44788b28ff1@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707050032.10161.pieter@degoeje.nl> X-UTwente-MailScanner-Information: Scanned by MailScanner. Contact helpdesk@ITBE.utwente.nl for more information. X-UTwente-MailScanner: Found to be clean X-UTwente-MailScanner-From: pieter@degoeje.nl X-Spam-Status: No Cc: Andrew Falanga Subject: Re: Does anyone on this list use WebGUI 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, 04 Jul 2007 22:32:15 -0000 On Wednesday 04 July 2007, Andrew Falanga wrote: > Hi, > > I'm wondering, does anyone here use WebGUI on their FreeBSD installs > and if so, or even if not would know, what is this > > LoadModule apreq_module modules/mod_apreq2.so > > mentioned in the installation text file? I can't seem to find it in > ports, this could simply mean that it's just not in ports, but I would > figuring that it most likely is and it's just not called that. > > Andy pyotr@lux:/usr/ports> make quicksearch name=apreq2 Port: libapreq2-2.08 Path: /usr/ports/www/libapreq2 Info: Generic Apache2 Request Library Port: p5-libapreq2-2.08 Path: /usr/ports/www/p5-libapreq2 Info: Generic Apache2 Request Library You need the 2nd result. HTH, Pieter de Goeje PS. I suggest you read up on "man ports" (especially the section on search). From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:41:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DFC916A400 for ; Wed, 4 Jul 2007 22:41:23 +0000 (UTC) (envelope-from pprocacci@bellsouth.net) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.freebsd.org (Postfix) with ESMTP id E844113C4B0 for ; Wed, 4 Jul 2007 22:41:22 +0000 (UTC) (envelope-from pprocacci@bellsouth.net) Received: from ibm63aec.bellsouth.net ([70.156.10.107]) by imf21aec.mail.bellsouth.net with ESMTP id <20070704224122.YLZQ19919.imf21aec.mail.bellsouth.net@ibm63aec.bellsouth.net> for ; Wed, 4 Jul 2007 18:41:22 -0400 Received: from [10.5.21.243] (really [70.156.10.107]) by ibm63aec.bellsouth.net with ESMTP id <20070704224121.AXH13159.ibm63aec.bellsouth.net@[10.5.21.243]>; Wed, 4 Jul 2007 18:41:21 -0400 Message-ID: <468C2204.1070408@bellsouth.net> Date: Wed, 04 Jul 2007 17:41:08 -0500 From: Paul procacci User-Agent: Thunderbird 2.0.0.0 (X11/20070611) MIME-Version: 1.0 To: ann kok References: <445024.12701.qm@web53303.mail.re2.yahoo.com> In-Reply-To: <445024.12701.qm@web53303.mail.re2.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: grep 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: Wed, 04 Jul 2007 22:41:23 -0000 ann kok wrote: > Hi all > > how can I use grep to have the output as 60.40.2.x > > eg: > 60.40.2.5 > 60.40.2.3 > 60.40.2.7 > > except 60.40.2x.x > > eg: > 60.40.20.5 > 60.40.23.6 > 60.40.25.7 > > Thank you > > > > > ____________________________________________________________________________________ > Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center. > http://autos.yahoo.com/green_center/ > _______________________________________________ > 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" > > Sorry, after re-reading the question, I must admit I think I misunderstood. Pieter de Goeje's response seems to be more along the lines of what you were looking for. ;P From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 22:52:23 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFB1016A400 for ; Wed, 4 Jul 2007 22:52:23 +0000 (UTC) (envelope-from cyberleo@cyberleo.net) Received: from pizzabox.cyberleo.net (alpha.cyberleo.net [198.145.45.10]) by mx1.freebsd.org (Postfix) with ESMTP id B563A13C4BE for ; Wed, 4 Jul 2007 22:52:23 +0000 (UTC) (envelope-from cyberleo@cyberleo.net) Received: (qmail 60822 invoked from network); 4 Jul 2007 22:25:42 -0000 Received: from adsl-75-3-112-33.dsl.chcgil.sbcglobal.net (HELO ?172.16.44.14?) (cyberleo@cyberleo.net@75.3.112.33) by alpha.cyberleo.net with ESMTPA; 4 Jul 2007 22:25:42 -0000 Message-ID: <468C1EC7.9010204@cyberleo.net> Date: Wed, 04 Jul 2007 17:26:56 -0500 From: CyberLeo Kitsana User-Agent: Thunderbird 1.5 (X11/20051201) MIME-Version: 1.0 To: FreeBSD Questions References: <4e3998c7e72.465ed931@broadpark.no> <18014.49617.224340.697794@jerusalem.litteratus.org> <465EC558.9070102@netfence.it> In-Reply-To: <465EC558.9070102@netfence.it> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 22:52:24 -0000 Andrea Venturoli wrote: > Robert Huff wrote: >> =?iso-8859-1?Q?Kyrre_Nyg=E5rd?= writes: >> >>> It has to be the worst written error message in history. >> >> Not even close. I commend to you the Amiga's BSOD: >> >> Software Guru >> Meditation Number >> > > Well, there's always Windows' "Insufficient Memory", which usually means > anything but memory being full :-) Unable to delete file: not enough free space available. Fatal error: the operation completed successfully -- Fuzzy love, -CyberLeo Technical Administrator CyberLeo.Net Webhosting http://www.CyberLeo.Net Furry Peace! - http://www.fur.com/peace/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 23:03:39 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A83716A469 for ; Wed, 4 Jul 2007 23:03:39 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from mail.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.freebsd.org (Postfix) with ESMTP id 7069813C457 for ; Wed, 4 Jul 2007 23:03:39 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (localhost.esfm.ipn.mx [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 0E452451D9; Wed, 4 Jul 2007 17:56:00 -0500 (CDT) X-Virus-Scanned: amavisd-new at esfm.ipn.mx Received: from mail.esfm.ipn.mx ([127.0.0.1]) by localhost (mail.esfm.ipn.mx [127.0.0.1]) (amavisd-new, port 10024) with LMTP id c8A7HLGiD325; Wed, 4 Jul 2007 17:55:57 -0500 (CDT) Received: by mail.esfm.ipn.mx (Postfix, from userid 1000) id B45B2451D8; Wed, 4 Jul 2007 17:55:57 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id B2BB2451D4; Wed, 4 Jul 2007 17:55:57 -0500 (CDT) Date: Wed, 4 Jul 2007 17:55:57 -0500 (CDT) From: Eduardo Viruena Silva To: CyberLeo Kitsana In-Reply-To: <468C1EC7.9010204@cyberleo.net> Message-ID: <20070704175438.H30850@Gina.esfm.ipn.mx> References: <4e3998c7e72.465ed931@broadpark.no> <18014.49617.224340.697794@jerusalem.litteratus.org> <465EC558.9070102@netfence.it> <468C1EC7.9010204@cyberleo.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: FreeBSD Questions Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 04 Jul 2007 23:03:39 -0000 On Wed, 4 Jul 2007, CyberLeo Kitsana wrote: > Andrea Venturoli wrote: >> Robert Huff wrote: >>> =?iso-8859-1?Q?Kyrre_Nyg=E5rd?= writes: >>> >>>> It has to be the worst written error message in history. >>> >>> Not even close. I commend to you the Amiga's BSOD: >>> >>> Software Guru >>> Meditation Number >>> >> >> Well, there's always Windows' "Insufficient Memory", which usually means >> anything but memory being full :-) > > > Unable to delete file: not enough free space available. > > > Fatal error: the operation completed successfully > > -- IBM: keyboard no present, press F1 to continue. From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 23:33:25 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B64E16A46B for ; Wed, 4 Jul 2007 23:33:25 +0000 (UTC) (envelope-from andrewgould@yahoo.com) Received: from web35313.mail.mud.yahoo.com (web35313.mail.mud.yahoo.com [66.163.179.107]) by mx1.freebsd.org (Postfix) with SMTP id 4AC6D13C4BE for ; Wed, 4 Jul 2007 23:33:24 +0000 (UTC) (envelope-from andrewgould@yahoo.com) Received: (qmail 59840 invoked by uid 60001); 4 Jul 2007 23:06:43 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=IVEG+rHa0V+wpLLnk//wHBqXDbbahJr9xY2M8aPz3CEikj0vaKXSxpChlVTpTvDnGewXuWRk7jMLOA0Etjfg3DDDcOll1H3vVpjFEud7ENRc0H7l/wApqTMZ8qktsAiMtBf3Lp5Ju5AblWed/fDOGJv34eBx1O/qrRdYxGcI1FY=; X-YMail-OSG: xi56gb0VM1nf7Xn35sTdVCgynXCgx9ybImsG1Ovpg0QVNf4mBwOZ8twYIxX694ChzkaFoEr5yw-- Received: from [206.255.39.206] by web35313.mail.mud.yahoo.com via HTTP; Wed, 04 Jul 2007 16:06:43 PDT X-Mailer: YahooMailRC/651.38 YahooMailWebService/0.7.41.16 Date: Wed, 4 Jul 2007 16:06:43 -0700 (PDT) From: Andrew Gould To: FreeBSD Questions Mailing List MIME-Version: 1.0 Content-Type: text/plain; charset=ascii Message-ID: <253689.59522.qm@web35313.mail.mud.yahoo.com> Subject: If cvsup's a no-go, will copying 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, 04 Jul 2007 23:33:25 -0000 I received permission to install a *nix at work. I installed FreeBSD 6.2; but I am unable to cvsup successfully. I've tried the various modes. I've even tried nesting it in a Python script that tries to get authorization through a proxy -- it didn't help, but was worth a try. I really, really, really want to get past the xorg 7* issue before I have a lot of applications installed. If a computer at home is up-to-date, can I: 1. Delete /usr/src/*, /usr/ports/* and /usr/doc/* from the work computer; and 2. copy the /usr/src/*, /usr/ports/* and /usr/doc/* from the home computer? Is it as simple as that? Thanks, Andrew From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 23:51:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8060316A469 for ; Wed, 4 Jul 2007 23:51:48 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1E4D713C448 for ; Wed, 4 Jul 2007 23:51:48 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id 30EE7DAE89; Thu, 5 Jul 2007 01:51:48 +0200 (CEST) Message-ID: <468C3305.5020401@cordula.ws> Date: Thu, 05 Jul 2007 01:53:41 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Andrew Gould References: <253689.59522.qm@web35313.mail.mud.yahoo.com> In-Reply-To: <253689.59522.qm@web35313.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Mailing List Subject: Re: If cvsup's a no-go, will copying 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, 04 Jul 2007 23:51:48 -0000 Andrew Gould wrote: > I received permission to install a *nix at work. I installed FreeBSD 6.2; but I am unable to cvsup successfully. I've tried the various modes. I've even tried nesting it in a Python script that tries to get authorization through a proxy -- it didn't help, but was worth a try. > > I really, really, really want to get past the xorg 7* issue before I have a lot of applications installed. > > If a computer at home is up-to-date, can I: > > 1. Delete /usr/src/*, /usr/ports/* and /usr/doc/* from the work computer; and > > 2. copy the /usr/src/*, /usr/ports/* and /usr/doc/* from the home computer? > > Is it as simple as that? > Yes, it is! They are all just source files. It doesn't matter whether you got them via csup, portsnap, or dropped them there from a tar ball... Remember to compile the sources, and install ports @work though... ;-) > Andrew > -cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 23:53:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4AE116A46E for ; Wed, 4 Jul 2007 23:53:39 +0000 (UTC) (envelope-from florenzi@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id 5C73C13C4C4 for ; Wed, 4 Jul 2007 23:53:39 +0000 (UTC) (envelope-from florenzi@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so431994uge for ; Wed, 04 Jul 2007 16:53:38 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FH1eNDbzl71zxipbqNPiLGq9dkXzOaEGoi/hqaB5t94xRSKDk7H1YbGZe20Jhozx9HCXCID9FM5lzZMCTS4uksBMUyKSl1knH162a3Tj7LoX+XJO1tPNPvuCID7LF8xgE6cNxFGiOj9YBG9PwfsIMiYbQXLriGBhBcAnCtck6tA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gO8SYzDN40ZKFsCTvWnHx57ceOyvWMveDUPOkKd6M1t0sHmwgG0cXDMfdghhcIIzFwp0+cQ6JyNKMYQIpoSRIqoo161W4nUC7u2PYtzCNdbu2WUxO0ClYLeY9p1kJtcxakBGZz7371JqEJ3lVguy0Bz9VIBMnV/UbrpQlqQ6luw= Received: by 10.78.168.1 with SMTP id q1mr4421058hue.1183593214936; Wed, 04 Jul 2007 16:53:34 -0700 (PDT) Received: by 10.78.45.17 with HTTP; Wed, 4 Jul 2007 16:53:34 -0700 (PDT) Message-ID: <3a386af20707041653s5d331d3bh4ba0ec91e606df45@mail.gmail.com> Date: Thu, 5 Jul 2007 01:53:34 +0200 From: "Federico Lorenzi" To: freebsd-questions@freebsd.org In-Reply-To: <253689.59522.qm@web35313.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <253689.59522.qm@web35313.mail.mud.yahoo.com> Subject: Re: If cvsup's a no-go, will copying 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, 04 Jul 2007 23:53:39 -0000 On 7/5/07, Andrew Gould wrote: > I received permission to install a *nix at work. I installed FreeBSD 6.2; > but I am unable to cvsup successfully. I've tried the various modes. I've > even tried nesting it in a Python script that tries to get authorization > through a proxy -- it didn't help, but was worth a try. Have you tried portsnap? Since it runs over normal http you should have no issues. As for the source tree... > I really, really, really want to get past the xorg 7* issue before I have a > lot of applications installed. > > If a computer at home is up-to-date, can I: > > 1. Delete /usr/src/*, /usr/ports/* and /usr/doc/* from the work computer; > and Shouldn't really be nessacery, but why not. > 2. copy the /usr/src/*, /usr/ports/* and /usr/doc/* from the home > computer? Yep, just cvsup, and then tar them up, and copy over. > Is it as simple as that? It should be! Remember, try portsnap for the ports, it should work just fine. Cheers Federico From owner-freebsd-questions@FreeBSD.ORG Wed Jul 4 23:54:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 616D116A473 for ; Wed, 4 Jul 2007 23:54:38 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from fw.farid-hajji.net (fw.farid-hajji.net [213.146.115.42]) by mx1.freebsd.org (Postfix) with ESMTP id F39F713C4AE for ; Wed, 4 Jul 2007 23:54:37 +0000 (UTC) (envelope-from cpghost@cordula.ws) Received: from epia-2.farid-hajji.net (epia-2 [192.168.254.11]) by fw.farid-hajji.net (Postfix) with ESMTP id A1CA6DAE89; Thu, 5 Jul 2007 01:54:40 +0200 (CEST) Message-ID: <468C33B2.106@cordula.ws> Date: Thu, 05 Jul 2007 01:56:34 +0200 From: cpghost User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Andrew Gould References: <253689.59522.qm@web35313.mail.mud.yahoo.com> In-Reply-To: <253689.59522.qm@web35313.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Mailing List Subject: Re: If cvsup's a no-go, will copying 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, 04 Jul 2007 23:54:38 -0000 Andrew Gould wrote: > I received permission to install a *nix at work. I installed FreeBSD 6.2; but I am unable to cvsup successfully. I've tried the various modes. I've even tried nesting it in a Python script that tries to get authorization through a proxy -- it didn't help, but was worth a try. > > I really, really, really want to get past the xorg 7* issue before I have a lot of applications installed. > > If a computer at home is up-to-date, can I: > > 1. Delete /usr/src/*, /usr/ports/* and /usr/doc/* from the work computer; and > > 2. copy the /usr/src/*, /usr/ports/* and /usr/doc/* from the home computer? > > Is it as simple as that? > On more thing. I usually csup /usr/src, /usr/ports and /usr/doc on one machine, and then rsync those directories to a lot of other machines on an internal network. Works like a charm, and conserves bandwidth too. > Thanks, > > Andrew > cpghost. -- Cordula's Web. http://www.cordula.ws/ From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 00:00:04 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F4BC16A469 for ; Thu, 5 Jul 2007 00:00:04 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 5C68A13C45E for ; Thu, 5 Jul 2007 00:00:03 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l64Nxiob018466 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Wed, 4 Jul 2007 18:59:46 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468C3470.40905@tundraware.com> Date: Wed, 04 Jul 2007 18:59:44 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Eduardo Viruena Silva References: <4e3998c7e72.465ed931@broadpark.no> <18014.49617.224340.697794@jerusalem.litteratus.org> <465EC558.9070102@netfence.it> <468C1EC7.9010204@cyberleo.net> <20070704175438.H30850@Gina.esfm.ipn.mx> In-Reply-To: <20070704175438.H30850@Gina.esfm.ipn.mx> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: CyberLeo Kitsana , FreeBSD Questions Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 00:00:04 -0000 Eduardo Viruena Silva wrote: > > > > > > On Wed, 4 Jul 2007, CyberLeo Kitsana wrote: > >> Andrea Venturoli wrote: >>> Robert Huff wrote: >>>> =?iso-8859-1?Q?Kyrre_Nyg=E5rd?= writes: >>>> >>>>> It has to be the worst written error message in history. >>>> >>>> Not even close. I commend to you the Amiga's BSOD: >>>> >>>> Software Guru >>>> Meditation Number >>>> >>> >>> Well, there's always Windows' "Insufficient Memory", which usually means >>> anything but memory being full :-) >> >> >> Unable to delete file: not enough free space available. >> >> >> Fatal error: the operation completed successfully >> >> -- > > IBM: > keyboard no present, press F1 to continue. > Perhaps this has been mentioned before from Unix, I don't know: Bad Magic Number -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 00:15:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 402F516A400 for ; Thu, 5 Jul 2007 00:15:10 +0000 (UTC) (envelope-from perryh@pluto.rain.com) Received: from agora.rdrop.com (agora.rdrop.com [199.26.172.34]) by mx1.freebsd.org (Postfix) with ESMTP id 21C2013C459 for ; Thu, 5 Jul 2007 00:15:10 +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 l6502Q4L056188 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 4 Jul 2007 17:02:26 -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 l6502QgY056187; Wed, 4 Jul 2007 17:02:26 -0700 (PDT) Received: from fbsd61 ([192.168.200.61]) by pluto.rain.com (4.1/SMI-4.1-pluto-M2060407) id AA28627; Wed, 4 Jul 07 16:52:49 PDT Date: Wed, 04 Jul 2007 16:55:33 -0700 From: perryh@pluto.rain.com To: tedm@toybox.placo.com Message-Id: <468c3375.7kSLbuENAWH+mQuo%perryh@pluto.rain.com> References: In-Reply-To: User-Agent: nail 11.25 7/29/05 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Thu, 05 Jul 2007 00:38:49 +0000 Cc: freebsd.org!freebsd-questions@agora.rdrop.com Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 00:15:10 -0000 > > If one is going to require the installation of something that may > > not be part of a base system, that something might as well be bash :) > > Except that bash requires all the icky GNU utilities to build so you > have to GNUify your system. And perl doesn't? It was GPL last I knew. > The second you put in gmake, gmake requires > iconv, readline and all the other nasty libraries, and from that point > on if you build something you never know if it's going to link in to > one of those libraries. > ... > This can cause major problems for commercial users. How? Last I heard, the *L*GPL only requires making the *library* source available (and that only if the library has been modified). It doesn't extend to the using application. > I'd love for someone to modify the gmake port to have a variable > you can set that would build all the GNUified dependency libraries, > build and install gmake and statically link in all it's GNUified > libraries, then remove all the GNUified libraries. Or, change all the gnu ports to install into something like /usr/local/gnu or /usr/local/gpl instead of straight into /usr/local. You'd still have the gnu libs when needed, but without having them included in "normal" search paths. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 00:42:06 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98D3F16A46C; Thu, 5 Jul 2007 00:42:06 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 8B4E413C45D; Thu, 5 Jul 2007 00:42:06 +0000 (UTC) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 88C7C1A4D87; Wed, 4 Jul 2007 17:24:57 -0700 (PDT) Date: Wed, 4 Jul 2007 17:24:57 -0700 From: Alfred Perlstein To: questions@freebsd.org, phk@freebsd.org Message-ID: <20070705002457.GZ45894@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: Subject: fsck on a read only partition? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 00:42:06 -0000 Hello, how do I fsck my disk if it's mounted? I have downgraded the mount to read-only, but still geom seems to disallow fsck access to it. Is there a way to tell the system to allow fsck to open it read/write? thanks, -- - Alfred Perlstein From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 00:50:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C52716A421 for ; Thu, 5 Jul 2007 00:50:11 +0000 (UTC) (envelope-from andrewgould@yahoo.com) Received: from web35314.mail.mud.yahoo.com (web35314.mail.mud.yahoo.com [66.163.179.108]) by mx1.freebsd.org (Postfix) with SMTP id E5A3A13C43E for ; Thu, 5 Jul 2007 00:50:10 +0000 (UTC) (envelope-from andrewgould@yahoo.com) Received: (qmail 91560 invoked by uid 60001); 5 Jul 2007 00:50:10 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:Cc:MIME-Version:Content-Type:Message-ID; b=UfenhXmYB91Laz4j4L6QnNiUD3H7WTOdT21dqvNvH9tjNAC+kmB0l0/tOPh6aHOhHDjjY+wwwGXM5EgYT9RgvX6iFUCNShlgcInAQJvdSREA2k6l+mXIP152U7EEVQdc2J+NG+RedaUzC+aQr3THkIqHjeUfOykAEKK/BPxew60=; X-YMail-OSG: O_mZSBYVM1k0RV2j8r2flpzYueyyRDYcjFhX8jfwELAAZ2peA5nfPW4epCbN3coTE61kIzsZ15E8HL1.iqBhJLTtriW385fxummM0nPjK5l6kS38yic- Received: from [206.255.39.206] by web35314.mail.mud.yahoo.com via HTTP; Wed, 04 Jul 2007 17:50:10 PDT X-Mailer: YahooMailRC/651.38 YahooMailWebService/0.7.41.16 Date: Wed, 4 Jul 2007 17:50:10 -0700 (PDT) From: Andrew Gould To: cpghost MIME-Version: 1.0 Content-Type: text/plain; charset=ascii Message-ID: <291836.91122.qm@web35314.mail.mud.yahoo.com> Cc: FreeBSD Questions Mailing List Subject: Re: If cvsup's a no-go, will copying 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: Thu, 05 Jul 2007 00:50:11 -0000 >----- Original Message ---- >From: cpghost >To: Andrew Gould >Cc: FreeBSD Questions Mailing List >Sent: Wednesday, July 4, 2007 6:56:34 PM >Subject: Re: If cvsup's a no-go, will copying work? > >Andrew Gould wrote: >> I received permission to install a *nix at work. I installed FreeBSD 6.2; but I am unable to cvsup >successfully. I've tried the various modes. I've even tried nesting it in a Python script that tries to get >authorization through a proxy -- it didn't help, but was worth a try. >> >> I really, really, really want to get past the xorg 7* issue before I have a lot of applications installed. >> >> If a computer at home is up-to-date, can I: >> >> 1. Delete /usr/src/*, /usr/ports/* and /usr/doc/* from the work computer; and >> >> 2. copy the /usr/src/*, /usr/ports/* and /usr/doc/* from the home computer? >> >> Is it as simple as that? >> > >On more thing. I usually csup /usr/src, /usr/ports and /usr/doc on one >machine, and then rsync those directories to a lot of other machines >on an internal network. Works like a charm, and conserves bandwidth >too. rsync! (doh) and rsync works through ssh! Beautiful! Thanks. > >> Thanks, >> >> Andrew >> > >cpghost. > >-- >Cordula's Web. http://www.cordula.ws/ Andrew Gould From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 01:03:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6908016A469 for ; Thu, 5 Jul 2007 01:03:13 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 339D513C469 for ; Thu, 5 Jul 2007 01:03:13 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 4545 invoked from network); 4 Jul 2007 20:03:13 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 4 Jul 2007 20:03:12 -0500 Date: Thu, 5 Jul 2007 11:03:08 +1000 From: Norberto Meijome To: "Gabor Tjong A Hung" Message-ID: <20070705110308.7096cbe9@localhost> In-Reply-To: <822946050707041022p1e55f853n242dfba946f7bf7b@mail.gmail.com> References: <822946050707040018o1877737ia46252c8ae40fc9b@mail.gmail.com> <20070705005329.65be3130@localhost> <822946050707041022p1e55f853n242dfba946f7bf7b@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Fwd: Samba NetBios X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 01:03:13 -0000 On Wed, 4 Jul 2007 19:22:13 +0200 "Gabor Tjong A Hung" wrote: > Dear all, > > I was told that my questions was better served here than in ports@ > > > > I've recently put my samba server in a jail, but as you can see @ > > http://www.faughnan.com/netbios.html NetBIOS is a bit of a problem and can > > cause alot of headache. I was unable to find a nat helper for pf, so I was > > wondering if I could bridge my jail with it's host. the bridge > > manualhowever > > requires me to have *two* network devices(or so it says), but my > > jails are just aliases on the same network device. > > Does anyone know another solution to make browsing possible? or have a > clue > > on how to make the solutions I tried work. > > > > >ifconfig > > rl0: flags=8843 mtu 1500 > > options=8 > > inet6 fe80::202:44ff:fe30:dd04%rl0 prefixlen 64 scopeid 0x1 > > inet 172.20.25.177 netmask 0xfffffc00 broadcast 172.20.27.255 > > inet 10.0.0.3 netmask 0xffffffff broadcast 10.0.0.3 > > inet 10.0.0.2 netmask 0xffffffff broadcast 10.0.0.2 > > inet 10.0.0.6 netmask 0xffffffff broadcast 10.0.0.6 > > inet 10.0.0.4 netmask 0xffffffff broadcast 10.0.0.4 > > inet 10.0.0.5 netmask 0xffffffff broadcast 10.0.0.5 > > ether 00:02:44:30:dd:04 > > media: Ethernet autoselect (100baseTX ) > > status: active hi Gabor, are you trying to share over SMB between the jails? between the hosts and the jails? you may want to explain your plans... using NAT for netbios seems a bit overkill to me, unless you plan to send SMB packets over the larger internet...which in itself seems a bad idea. If you only need SMB across different LAN segments, setup WINS server(s) (MS or from the Samba project). B _________________________ {Beto|Norberto|Numard} Meijome "It is a lesson which all history teaches wise men, to put trust in ideas, and not in circumstances." Emerson I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 01:06:01 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67F6216A46C; Thu, 5 Jul 2007 01:06:01 +0000 (UTC) (envelope-from joe@joeholden.co.uk) Received: from scarlett.lon.rewt.org.uk (scarlett.lon.rewt.org.uk [62.84.188.34]) by mx1.freebsd.org (Postfix) with ESMTP id 2DE7C13C4B7; Thu, 5 Jul 2007 01:06:00 +0000 (UTC) (envelope-from joe@joeholden.co.uk) Received: from localhost (unknown [127.0.0.1]) by scarlett.lon.rewt.org.uk (Postfix) with ESMTP id E2CCB39864; Thu, 5 Jul 2007 01:49:58 +0100 (BST) X-Virus-Scanned: amavisd-new at scarlett.lon.rewt.org.uk Received: from scarlett.lon.rewt.org.uk ([127.0.0.1]) by localhost (scarlett.lon.rewt.org.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2yX6fIiAIfTP; Thu, 5 Jul 2007 01:49:57 +0100 (BST) Received: from [172.16.10.59] (unknown [78.86.7.47]) (Authenticated sender: jwh) by scarlett.lon.rewt.org.uk (Postfix) with ESMTP id 6E37939863; Thu, 5 Jul 2007 01:49:57 +0100 (BST) Message-ID: <468C402B.90709@joeholden.co.uk> Date: Thu, 05 Jul 2007 01:49:47 +0100 From: Joe Holden User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Alfred Perlstein References: <20070705002457.GZ45894@elvis.mu.org> In-Reply-To: <20070705002457.GZ45894@elvis.mu.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org, phk@freebsd.org Subject: Re: fsck on a read only partition? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 01:06:01 -0000 Alfred Perlstein wrote: > Hello, how do I fsck my disk if it's mounted? > > I have downgraded the mount to read-only, but still geom seems > to disallow fsck access to it. > > Is there a way to tell the system to allow fsck to open it > read/write? > > thanks, If you unmount it first, you should be able to fsck it fine, /dev/blah (ad0/1/2/whatever) Thanks, J From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 01:31:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18D1316A469 for ; Thu, 5 Jul 2007 01:31:21 +0000 (UTC) (envelope-from purposecurious@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.228]) by mx1.freebsd.org (Postfix) with ESMTP id 1B09213C484 for ; Thu, 5 Jul 2007 01:31:19 +0000 (UTC) (envelope-from purposecurious@gmail.com) Received: by wr-out-0506.google.com with SMTP id i23so199992wra for ; Wed, 04 Jul 2007 18:31:19 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=r0cSMytj2vxWgWg13d/bf0g9p4+z2B4VABbj5shkC8pZR82fbn+ncuSTw6VMb67zFVLUkVFMFONdc6JRQftk3qH7R9MGz7tGvRxwwdWRRwNYslOHTxX4qTB+EtZl6EQlgqc1z5s3w7AXbZngvoY/D5S+vPmzAqp26OPXCX+r69Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=QFtPo8KHtvoofNsjZOhpEFNck0NKgjIv/Gq672/dKTI5NCuOW6xXjwGJKpCM3EVHIgGhkRyrDuX1rnelCHA3UHnqUIaZmQjGdC4OWeo7mVdkuyp9+TTrN2WsY+OX+3wqA1KlTF/sVS3L+PETrMX3TAaju4RQ3T/8oxWBCetxHM0= Received: by 10.90.35.15 with SMTP id i15mr7402845agi.1183597508367; Wed, 04 Jul 2007 18:05:08 -0700 (PDT) Received: by 10.90.81.1 with HTTP; Wed, 4 Jul 2007 18:05:08 -0700 (PDT) Message-ID: <7011c8170707041805sf4b4bf8ia1c621b0dc85b65f@mail.gmail.com> Date: Thu, 5 Jul 2007 02:05:08 +0100 From: "Sabastian Cooke" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Error compiling gcc34 on 5.2.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 01:31:21 -0000 Hi, I am trying to update amavisd-new from amavisd-new-2.4.5,1 to 2.5.1 on our FreeBSD mail server, and it seems to require an update to file utility and that requires gcc34 and i only have gcc 3.3.3 installed, when either the script or me tries to build gcc34 from the ports collection, i get this errors which i dont know how to diagnose, is there an easier way to update gcc or anyone can help on these errors? /usr/ports/lang/gcc34/work/build/gcc/xgcc -B/usr/ports/lang/gcc34/work/build/gcc/ -B/usr/local/i386- portbld-freebsd5.2.1/bin/ -B/usr/local/i386-portbld-freebsd5.2.1/lib/ -isystem /usr/local/i386-portbld-freebsd5.2.1/include -isystem /usr/local/i386-portbld-freebsd5.2.1/sys-include -c -DHAVE_CONFIG_H -O2 -O -pipe -mcpu=pentiumpro -I. -I../.././..//gcc-3.4.6/libiberty/../include -W -Wall -Wtraditional -pedantic ../.././..//gcc-3.4.6/libiberty/fibheap.c -o fibheap.o `-mcpu=' is deprecated. Use `-mtune=' or '-march=' instead. ../.././..//gcc-3.4.6/libiberty/fibheap.c: In function `fibheap_union': ../.././..//gcc-3.4.6/libiberty/fibheap.c:166: warning: implicit declaration of function `free' ../.././..//gcc-3.4.6/libiberty/fibheap.c: In function `fibheap_delete_node': ../.././..//gcc-3.4.6/libiberty/fibheap.c:285: error: `LONG_MIN' undeclared (first use in this function) ../.././..//gcc-3.4.6/libiberty/fibheap.c:285: error: (Each undeclared identifier is reported only once ../.././..//gcc-3.4.6/libiberty/fibheap.c:285: error: for each function it appears in.) ../.././..//gcc-3.4.6/libiberty/fibheap.c: In function `fibheap_consolidate': ../.././..//gcc-3.4.6/libiberty/fibheap.c:395: warning: implicit declaration of function `memset' gmake[2]: *** [fibheap.o] Error 1 gmake[2]: Leaving directory `/usr/ports/lang/gcc34/work/build/i386- portbld-freebsd5.2.1/libiberty' gmake[1]: *** [all-target-libiberty] Error 2 gmake[1]: Leaving directory `/usr/ports/lang/gcc34/work/build' gmake: *** [bootstrap-lean] Error 2 *** Error code 2 Stop in /usr/ports/lang/gcc34. *** Error code 1 Stop in /usr/ports/lang/gcc34. *** Error code 1 Stop in /usr/ports/sysutils/file. *** Error code 1 Stop in /usr/ports/sysutils/file. *** Error code 1 Stop in /usr/ports/security/amavisd-new. *** Error code 1 Stop in /usr/ports/security/amavisd-new. *** Error code 1 Stop in /usr/ports/security/amavisd-new. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade42713.0 make reinstall egrep: /var/db/pkg/amavisd-new-2.4.5,1/+CONTENTS: No such file or directory ---> Restoring the old version vscan:*:1005:clamav You already have a group "vscan", so I will use it. vscan:*:1004:1005::0:0:Scanning Virus Account:/var/amavis:/bin/sh You already have a user "vscan", so I will use it. Created "/var/amavis" directory. Created "/var/amavis/db" directory. Created "/var/amavis/tmp" directory. Created "/var/amavis/var" directory. Created "/var/virusmails" directory. pkg_add: command '[ ! -f /usr/local/etc/amavisd.conf ] && cp /usr/local/etc/amavisd.conf-dist /usr/local/etc/amavisd.conf' failed ** Fix the installation problem and try again. [Updating the pkgdb in /var/db/pkg ... - 393 packages found (-0 +1) . done] ** Listing the failed packages (*:skipped / !:failed) ! security/amavisd-new (amavisd-new-2.4.5,1) (install error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 01:37:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA72E16A400 for ; Thu, 5 Jul 2007 01:37:52 +0000 (UTC) (envelope-from bob@a1poweruser.com) Received: from mta15.adelphia.net (mta15.mail.adelphia.net [68.168.78.77]) by mx1.freebsd.org (Postfix) with ESMTP id 7298613C459 for ; Thu, 5 Jul 2007 01:37:52 +0000 (UTC) (envelope-from bob@a1poweruser.com) Received: from laptop ([76.190.225.105]) by mta15.adelphia.net (InterMail vM.6.01.05.04 201-2131-123-105-20051025) with SMTP id <20070705013750.IHUM26470.mta15.adelphia.net@laptop>; Wed, 4 Jul 2007 21:37:50 -0400 From: "Bob" To: "Andrew Falanga" , "User Questions" Date: Wed, 4 Jul 2007 21:37:49 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <340a29540707041500g25289b6la1aec3340b5cd628@mail.gmail.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Cc: Subject: RE: How does one start mysql after installing from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bob@a1poweruser.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 01:37:52 -0000 To autostart mysql at boot add this to /etc/rc.conf mysql_enable="YES" Add this to /etc/rc.conf to direct to use location where there is a large enough free disk space to hold your databases mysql_dbdir="/usr/local/mysql" To start or stop mysql server do this /usr/local/share/mysql/mysql.server start /usr/local/share/mysql/mysql.server stop You have to tell mysql to create its internel control db by running this command one time first before trying to create databases. mysql_install_db --user=mysql To verify mysql is operational issue these commands mysqladmin version mysqladmin variables To start command line session with mysql server to create a DB enter mysql -u root The online mysql manual is at http://dev.mysql.com/doc/refman/5.0/en/index.html From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 01:45:52 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C212B16A400; Thu, 5 Jul 2007 01:45:52 +0000 (UTC) (envelope-from ccowart@hal.rescomp.berkeley.edu) Received: from rescomp.berkeley.edu (hal.Rescomp.Berkeley.EDU [169.229.70.150]) by mx1.freebsd.org (Postfix) with ESMTP id AB33113C448; Thu, 5 Jul 2007 01:45:52 +0000 (UTC) (envelope-from ccowart@hal.rescomp.berkeley.edu) Received: by rescomp.berkeley.edu (Postfix, from userid 1225) id F04115B772; Wed, 4 Jul 2007 18:16:33 -0700 (PDT) Date: Wed, 4 Jul 2007 18:16:33 -0700 From: Christopher Cowart To: Joe Holden Message-ID: <20070705011633.GC17271@rescomp.berkeley.edu> Mail-Followup-To: Joe Holden , Alfred Perlstein , questions@freebsd.org, phk@freebsd.org References: <20070705002457.GZ45894@elvis.mu.org> <468C402B.90709@joeholden.co.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XVon4esBxRD1rZiP" Content-Disposition: inline In-Reply-To: <468C402B.90709@joeholden.co.uk> Organization: RSSP-IT, UC Berkeley User-Agent: Mutt/1.5.9i Cc: Alfred Perlstein , questions@freebsd.org, phk@freebsd.org Subject: Re: fsck on a read only partition? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 01:45:52 -0000 --XVon4esBxRD1rZiP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 05, 2007 at 01:49:47AM +0100, Joe Holden wrote: > Alfred Perlstein wrote: > > Hello, how do I fsck my disk if it's mounted? > >=20 > > I have downgraded the mount to read-only, but still geom seems > > to disallow fsck access to it.=20 > >=20 > > Is there a way to tell the system to allow fsck to open it > > read/write? > >=20 > > thanks, > If you unmount it first, you should be able to fsck it fine, /dev/blah > (ad0/1/2/whatever) I think that misses the point; what if it's the / filesystem?=20 I have personally wanted to do this before myself. I had a situation where a deleted file was still being written to by a backgrounded tcpdump, resulting in a full filesystem but no file to rm. It would have been great to quick remount ro, fsck, then remount rw. Instead, I had to schedule downtime, reboot into single, and run fsck -- not fun. --=20 Chris Cowart Lead Systems Administrator Network Infrastructure, RSSP-IT UC Berkeley --XVon4esBxRD1rZiP Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQFGjEZxV3SOqjnqPh0RAmG2AKC0wBoO1WKhEzYW4wlSsfzPEAfMZwCdFNnJ R0c8g+Y04AEa/3vl4GXTjXQ= =d+aN -----END PGP SIGNATURE----- --XVon4esBxRD1rZiP-- From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 02:55:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B643216A46B for ; Thu, 5 Jul 2007 02:55:21 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.239]) by mx1.freebsd.org (Postfix) with ESMTP id 7694513C465 for ; Thu, 5 Jul 2007 02:55:21 +0000 (UTC) (envelope-from kelly.terry.jones@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so1399997wxd for ; Wed, 04 Jul 2007 19:55:20 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Fy2lkrg8PLmKD/cf4uWnu+TWWf2THESIHQlP16vpev6DKUukx7IOQC7AvJd0PZI1ZhED3z0MrGhRTMw00sHD01XaWCR+Mp1KC2V1MhWEdxk1i7VaYVcEb6kcDlgCwNArgRe9fp2lNkprGNMA33NugfaqvwCSYgxnhOw8c1sifbs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=R2PucV0LFABtrxp5TICMGlKETFvCCTrmScsdAqTxvdRzUJ+1DGQOzMC3YsB4y35hNXmTBsxMo7R2VwPwIBGIIKoW4vbaEahtnfMjmxaj/BkBBjq+RRgquSKyyLPWxti/QJnTK/uSbhg8TPgKRKH9lIODwe/sqbAQArnzRXSXH/4= Received: by 10.70.67.15 with SMTP id p15mr11989765wxa.1183602589592; Wed, 04 Jul 2007 19:29:49 -0700 (PDT) Received: by 10.70.16.3 with HTTP; Wed, 4 Jul 2007 19:29:49 -0700 (PDT) Message-ID: <26face530707041929r47a0bf79md6006a680776b1aa@mail.gmail.com> Date: Wed, 4 Jul 2007 20:29:49 -0600 From: "Kelly Jones" To: nmlug@nmlug.org, nmosug-l@mailman.swcp.com, linuxusersgroup@googlegroups.com, techtalk@linuxchix.org, freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Allowing noschg in multi-user mode on Mac OS X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 02:55:21 -0000 Most FreeBSD kernels let you set a flag(?) to decide whether "chflags noschg" will work in multi-user mode. How do I do this w/ Mac OS X? Here's what happens when I do "chflags noschg" in multi-user mode: # chflags noschg test.txt chflags: test.txt: Operation not permitted The opposite, "chflags schg", works fine. I realize this is a security feature (you can protect files in multi-user mode, but not vica versa), but it's annoying. I also realize I can boot into single-user mode (http://docs.info.apple.com/article.html?artnum=106388) where "chflags noschg" works just fine, but I'd like to use noschg more as advisory protection from myself, not something that requires single-user mode to undo. -- 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 Thu Jul 5 03:14:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EE2416A41F for ; Thu, 5 Jul 2007 03:14:39 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout1.cac.washington.edu (mxout1.cac.washington.edu [140.142.32.134]) by mx1.freebsd.org (Postfix) with ESMTP id 7B80813C44C for ; Thu, 5 Jul 2007 03:14:39 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.9] (may be forged)) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.06) with ESMTP id l653EcLb007339 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 4 Jul 2007 20:14:39 -0700 X-Auth-Received: from [192.168.10.45] (c-24-10-12-194.hsd1.ca.comcast.net [24.10.12.194]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l653EclP008395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 4 Jul 2007 20:14:38 -0700 Message-ID: <468C6224.2090003@u.washington.edu> Date: Wed, 04 Jul 2007 20:14:44 -0700 From: Garrett Cooper User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: perryh@pluto.rain.com References: <468c3375.7kSLbuENAWH+mQuo%perryh@pluto.rain.com> In-Reply-To: <468c3375.7kSLbuENAWH+mQuo%perryh@pluto.rain.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.2.304607, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.7.4.195832 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_SUBJ_9 0, __USER_AGENT 0' Cc: FreeBSD Questions , tedm@toybox.placo.com Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 03:14:39 -0000 perryh@pluto.rain.com wrote: >>> If one is going to require the installation of something that may >>> not be part of a base system, that something might as well be bash :) >>> >> Except that bash requires all the icky GNU utilities to build so you >> have to GNUify your system. >> > > And perl doesn't? It was GPL last I knew. > The entirety of Perl falls under the GPL and Artistic license at this time. Read the perl-porters archives for more debate on Perl licensing. >> The second you put in gmake, gmake requires >> iconv, readline and all the other nasty libraries, and from that point >> on if you build something you never know if it's going to link in to >> one of those libraries. >> ... >> This can cause major problems for commercial users. >> > > How? Last I heard, the *L*GPL only requires making the *library* > source available (and that only if the library has been modified). > It doesn't extend to the using application. > > >> I'd love for someone to modify the gmake port to have a variable >> you can set that would build all the GNUified dependency libraries, >> build and install gmake and statically link in all it's GNUified >> libraries, then remove all the GNUified libraries. >> > > Or, change all the gnu ports to install into something like > /usr/local/gnu or /usr/local/gpl instead of straight into > /usr/local. You'd still have the gnu libs when needed, but > without having them included in "normal" search paths. That would seriously muck up a lot of people's assumptions on locations for programs, and would be incredibly necessary. Plus it would make searching for programs in $PATH a slight bit more time consuming (on the order of milliseconds I know, but those milliseconds are the exact reason why I have to manually profile pkg_install to determine bottlenecks). Also, please don't muck up email addresses. It's not cool, by any means. -Garrett From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 03:20:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E804A16A400 for ; Thu, 5 Jul 2007 03:20:47 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.189]) by mx1.freebsd.org (Postfix) with ESMTP id 7D95913C46C for ; Thu, 5 Jul 2007 03:20:47 +0000 (UTC) (envelope-from illoai@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so2610086mue for ; Wed, 04 Jul 2007 20:20:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iaoG2yN5dhodwNQT4ZfNDugDCpoT0z+x8MmbHM3b0haLiD/YpDb+Idl+VM5YMNYM8LglHr2sy38v7PVsi47LQ4b1kCBaPQGmrmg2t6zvP65pzflfHsaVx2OGXLJ3yLVPgEIa8I/J/09Qyb8XVjahJmP5WzDDcciep8+SeYv1irw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QNTFNbhPGfZFThXJEF21Zwm0H9sBwBtkMlifrsnC2usK89jr839mOoE8APeBRQ59YIf5LouCyS0jW04qOGHtb+F6qQt7YQQCAi8gX4Y5AWscrSTxZha3vNBWIXWUKvatEHb8NU3xoR4hUADy2Zaat5fwv2+A7/OpRCerZG+qjI4= Received: by 10.82.112.3 with SMTP id k3mr19247767buc.1183605642521; Wed, 04 Jul 2007 20:20:42 -0700 (PDT) Received: by 10.82.187.6 with HTTP; Wed, 4 Jul 2007 20:20:42 -0700 (PDT) Message-ID: Date: Wed, 4 Jul 2007 22:20:42 -0500 From: "illoai@gmail.com" To: "Kelly Jones" In-Reply-To: <26face530707041929r47a0bf79md6006a680776b1aa@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <26face530707041929r47a0bf79md6006a680776b1aa@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Allowing noschg in multi-user mode on Mac OS X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 03:20:48 -0000 On 04/07/07, Kelly Jones wrote: > Most FreeBSD kernels let you set a flag(?) to decide whether "chflags > noschg" will work in multi-user mode. > > How do I do this w/ Mac OS X? Here's what happens when I do "chflags > noschg" in multi-user mode: > > # chflags noschg test.txt > chflags: test.txt: Operation not permitted > > The opposite, "chflags schg", works fine. I realize this is a security > feature (you can protect files in multi-user mode, but not vica > versa), but it's annoying. > > I also realize I can boot into single-user mode > (http://docs.info.apple.com/article.html?artnum=106388) where "chflags > noschg" works just fine, but I'd like to use noschg more as advisory > protection from myself, not something that requires single-user mode > to undo. (serious crossposting removed) Under FreeBSD this general behaviour is controlled by the kern.securelevel sysctl. On a running system this can be raised, but not lowered, and it would seem that Apple et al have chosen to do it correctly. Pain in the metaphorical arse, but This Isn't Windows(sm). -- -- From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 03:43:20 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84C5216A46C for ; Thu, 5 Jul 2007 03:43:20 +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 0294B13C455 for ; Thu, 5 Jul 2007 03:43:19 +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.12.11) with ESMTP id l653hH4d095155 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 5 Jul 2007 10:43:17 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l653hGPN005355; Thu, 5 Jul 2007 10:43:16 +0700 (ICT) Date: Thu, 5 Jul 2007 10:43:16 +0700 (ICT) Message-Id: <200707050343.l653hGPN005355@banyan.cs.ait.ac.th> From: Olivier Nicole To: kelly.terry.jones@gmail.com, freebsd-questions@freebsd.org In-reply-to: (illoai@gmail.com) References: <26face530707041929r47a0bf79md6006a680776b1aa@mail.gmail.com> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: Subject: Re: Allowing noschg in multi-user mode on Mac OS X X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 03:43:20 -0000 > I also realize I can boot into single-user mode > (http://docs.info.apple.com/article.html?artnum=106388) where "chflags > noschg" works just fine, but I'd like to use noschg more as advisory > protection from myself, not something that requires single-user mode > to undo. Too bad but the schg flag is not an advisory protection, it is a strong denial protection. If you need only advisory protection, use what ever tool is made for advisory protection, for example chmod a-w Bests, Olivier From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 06:17:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A08316A46F for ; Thu, 5 Jul 2007 06:17:36 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.250]) by mx1.freebsd.org (Postfix) with ESMTP id 59ED613C457 for ; Thu, 5 Jul 2007 06:17:36 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so562152anc for ; Wed, 04 Jul 2007 23:17:35 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ti5as++/SYMi5JpKT8Olrbyj9d+rQyk2cTuM+L381y/taQ3JTbta14wn2mxUZr36/juIsZHIu6cyXI35YX2Qrmqepk5MyW5a4jlfUmEyGMAMbcL34IbFwEuktEp/72D6dRfkJfLsCoSYqsyn4n9zccwOIspjVK24Nfq8eos905I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=L28SHLL+HuUE0dWq/8jga73C3fwBp9Hz57EAihvCj5WZFd4Aa+Z2UxCyLqLnDrDLuo30I2M6uLzgXckL4GUb7ZVeW9Ym5K0Fges7UqrlVPsFQB/EbNBfaU3wkrJCx6tzRGmuZiNIAXRsgYXdwG7Urt4c33JYqSTfeIosM/c2InE= Received: by 10.100.125.5 with SMTP id x5mr5152035anc.1183616255173; Wed, 04 Jul 2007 23:17:35 -0700 (PDT) Received: by 10.100.9.14 with HTTP; Wed, 4 Jul 2007 23:17:35 -0700 (PDT) Message-ID: <499c70c0707042317o6be27418mf7664a39f8cf0ea1@mail.gmail.com> Date: Thu, 5 Jul 2007 09:17:35 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: "Sabastian Cooke" In-Reply-To: <7011c8170707041805sf4b4bf8ia1c621b0dc85b65f@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <7011c8170707041805sf4b4bf8ia1c621b0dc85b65f@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Error compiling gcc34 on 5.2.1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 06:17:36 -0000 On 7/5/07, Sabastian Cooke wrote: > Hi, I am trying to update amavisd-new from amavisd-new-2.4.5,1 to 2.5.1 on > our FreeBSD mail server, and it seems to require an update to file utility > and that requires gcc34 and i only have gcc 3.3.3 installed, when either the > script or me tries to build gcc34 from the ports collection, i get this > errors which i dont know how to diagnose, is there an easier way to update > gcc or anyone can help on these errors? If I were you, I would upgrade to FreeBSD 5.5-STABLE, then to RELENG_6.2 or RELENG_6, 5.2.1 is too slow and not supported anymore. -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 06:24:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29D0016A468 for ; Thu, 5 Jul 2007 06:24:56 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id DA1B113C483 for ; Thu, 5 Jul 2007 06:24:55 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 1D68B39898 for ; Thu, 5 Jul 2007 08:24:54 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id CAF4D39884; Thu, 5 Jul 2007 08:24:53 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id 9A6C03987B for ; Thu, 5 Jul 2007 08:24:50 +0200 (CEST) Message-ID: <468C8EB1.1070800@boosten.org> Date: Thu, 05 Jul 2007 08:24:49 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: FreeBSD Questions X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-1, 07/04/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: c_icap port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 06:24:56 -0000 Hi all, I'm experimenting with the c_icap port, but I cannot seem to get it running with clamav support (it crashes on the clamav plugin). Anyone got this running successfully? I'm running 6.2 patchlevel 5. TIA Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 07:38:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BEDF616A421 for ; Thu, 5 Jul 2007 07:38:59 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 9EE0113C480 for ; Thu, 5 Jul 2007 07:38:59 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 59969 invoked from network); 5 Jul 2007 07:34:09 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 5 Jul 2007 07:34:09 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l657cvOb046705 for ; Thu, 5 Jul 2007 01:38:58 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l657cvsM046704 for freebsd-questions@freebsd.org; Thu, 5 Jul 2007 01:38:57 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Thu, 5 Jul 2007 01:38:57 -0600 From: Chad Perrin To: FreeBSD Questions Message-ID: <20070705073857.GD46581@demeter.hydra> Mail-Followup-To: FreeBSD Questions References: <468c3375.7kSLbuENAWH+mQuo%perryh@pluto.rain.com> <468C6224.2090003@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468C6224.2090003@u.washington.edu> User-Agent: Mutt/1.4.2.2i Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 07:38:59 -0000 On Wed, Jul 04, 2007 at 08:14:44PM -0700, Garrett Cooper wrote: > perryh@pluto.rain.com wrote: > >>Except that bash requires all the icky GNU utilities to build so you > >>have to GNUify your system. > > > >And perl doesn't? It was GPL last I knew. > > The entirety of Perl falls under the GPL and Artistic license at this > time. Read the perl-porters archives for more debate on Perl licensing. More to the point, Perl is dual-licensed -- redistributable under the terms of either the GPL or the Artistic License, at your discretion. As such, I tend to think of my Perl installs as being Artistic License, not GPL. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] MacUser, Nov. 1990: "There comes a time in the history of any project when it becomes necessary to shoot the engineers and begin production." From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 07:41:16 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FD3316A41F for ; Thu, 5 Jul 2007 07:41:16 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 3B99F13C489 for ; Thu, 5 Jul 2007 07:41:15 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 3F5BB17382; Thu, 5 Jul 2007 07:20:26 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.1/8.14.1) with ESMTP id l657KPhe010794; Thu, 5 Jul 2007 07:20:26 GMT (envelope-from phk@critter.freebsd.dk) To: Alfred Perlstein From: "Poul-Henning Kamp" In-Reply-To: Your message of "Wed, 04 Jul 2007 17:24:57 MST." <20070705002457.GZ45894@elvis.mu.org> Date: Thu, 05 Jul 2007 07:20:25 +0000 Message-ID: <10793.1183620025@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: questions@freebsd.org Subject: Re: fsck on a read only partition? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 07:41:16 -0000 In message <20070705002457.GZ45894@elvis.mu.org>, Alfred Perlstein writes: >Hello, how do I fsck my disk if it's mounted? > >I have downgraded the mount to read-only, but still geom seems >to disallow fsck access to it. > >Is there a way to tell the system to allow fsck to open it >read/write? Not apart from the dreaded debug option. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 08:11:38 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5420516A421 for ; Thu, 5 Jul 2007 08:11:38 +0000 (UTC) (envelope-from greenant@fastmail.fm) Received: from joe.tiscali.it (joe.tiscali.it [213.205.33.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1972313C4AE for ; Thu, 5 Jul 2007 08:11:37 +0000 (UTC) (envelope-from greenant@fastmail.fm) Received: from [192.168.8.3] (84.223.96.100) by joe.tiscali.it (7.2.079) id 465A9B16005E93FD for questions@freebsd.org; Thu, 5 Jul 2007 10:11:20 +0200 Message-ID: <468CA7A9.2000000@fastmail.fm> Date: Thu, 05 Jul 2007 10:11:21 +0200 From: Alberto Rizzi User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: questions@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Ghostscript and options window X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 08:11:38 -0000 When I build print/ghostscript-gpl on my 6.2-STABLE I have to choose which driver to build through the "GPL Ghostscript driver configuration" window. These settings aren't saved anywhere so, each time I upgrade ghostscript, I have to choose which drivers to install How can I set these options only once? From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 08:26:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D78A16A400 for ; Thu, 5 Jul 2007 08:26:51 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 0534213C43E for ; Thu, 5 Jul 2007 08:26:50 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l658QnAH048133 for ; Thu, 5 Jul 2007 01:26:50 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "User Questions" Date: Thu, 5 Jul 2007 01:27:33 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20070704121712.20F6.GERARD-SEIBERT@seibercom.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Thu, 05 Jul 2007 01:26:50 -0700 (PDT) Subject: RE: Re[2]: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 08:26:51 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Gerard > Sent: Wednesday, July 04, 2007 9:30 AM > To: User Questions > Subject: Re[2]: The worst error message in history belongs to... BIND9! > > > On July 04, 2007 at 09:53AM Ted Mittelstaedt wrote: > > [snip] > > > Actually perl has a lot of problems too. One of the biggest is that > > perl script writers always seem to think like you, in that perl is > > consistent across all platforms. > > > > The biggest problems I've seen with perl scripts are when people use > > perl extensions that are not on the system. You then have to go find > > the extension they use and very few of the perl script writers seem > > to be smart enough to put a section at the beginning of their scripts > > that define the CPAN location of the particular extensions they are > > using. The second biggest problem is perl script writers using > > constructs that are valid in Perl 5.6 and later but not valid in > > Perl 5.0 I don't know how many times I've wanted to strangle > > someone when trying to run a perl script under Perl 5.0 that had > > ONE single friggin statement in the entire thousand line script that > > isn't valid under 5.0 but is under 5.6 And I've also run across > > a number of Perl extensions that won't run under 5.0 as well, even > > though the authors are supposed to regression test under 5.0 > > I was under the impression that Perl 5.6.0 was released on 2000-Mar-22, > while Perl 5.000 was issued on or about 1994-Oct-17. For the life of > me, I cannot comprehend why anyone would be using such an antiquated > version. I should have said the perl 5.0 family. Including 5.004 which is still being maintained by the Perl maintainers. Perl 5.005-04 just came out in 2004 by the way. perl 5.6.2 came out in Nov 2003. > I have a rather limited knowledge of Perl; That's apparent. > however, I am not > going to be bothered regression testing it under a seven year old > obsoleted version. There were major structural changes in perl 5.0 and 5.6 The changes going from 5.6 to 5.8 and 5.9 are much less. You can take it as a given that anything that runs on perl 5.005-04 will run on all perl 5.0 versions, anything that runs on perl 5.6.2 will run on all 5.6 versions, etc. The whole reason that the perl project maintains 5.0, 5.6, 5.8 and so on is that they know that there's systems that have lots of tested programs that have been tested under 5.0 and the system maintainers have not yet gone through the process of testing all that software on newer perl versions. Despite what you probably believe, when an organization has a server that is running fine, they are not frothing at the mouth to upgrade it to the latest version. This is why IMHO that perl is not a good choice to use for building large systems, not because the perl maintainers don't understand the importance of backwards compatability, but because too many programmers like yourself simply don't. If I was building a system that was ONLY going to use perl and the modules supplied with it, and NOT use any other 3rd party modules, then I would consider using perl, there wouldn't be anything wrong with it. But most of the perl scripts out there use many 3rd party modules (and I understand why, it saves them time) and that is where you have the problem, is with those. > I believe that FreeBSD-3.4 was released around > 12/21/1999 or there about. Should we also be testing against that > version also? > I wasn't talking about 1999 software I was talking about 2004 software. Ted From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 08:31:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 005D516A476 for ; Thu, 5 Jul 2007 08:31:52 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id BD1D413C465 for ; Thu, 5 Jul 2007 08:31:52 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l658Voeu048183; Thu, 5 Jul 2007 01:31:51 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: , Date: Thu, 5 Jul 2007 01:32:34 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20070704151326.E91978@fledge.watson.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Thu, 05 Jul 2007 01:31:52 -0700 (PDT) Cc: Subject: RE: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 08:31:53 -0000 Anything you have actually seen is fair game. Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of doug > Sent: Wednesday, July 04, 2007 12:19 PM > To: freebsd-questions@freebsd.org > Subject: Re: OT: Re: The worst error message in history belongs to... > BIND9! > > > > How far do we get to go back in time? From the first online > fortran compiler: > ugh1 and ugh2. In fairness these were conditions that were not > supposed to > happen, but somehow they always do. In more recent times I always liked, > "invalid page fault" this perhaps as late as win98. > _______________________________________________ > 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 Jul 5 08:33:46 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32F5116A46E for ; Thu, 5 Jul 2007 08:33:46 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id 8413013C4BA for ; Thu, 5 Jul 2007 08:33:43 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l658JdYq035112 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 5 Jul 2007 12:19:53 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l658JLU2035111; Thu, 5 Jul 2007 12:19:21 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Thu, 5 Jul 2007 12:19:21 +0400 From: Yuri Pankov To: Alberto Rizzi Message-ID: <20070705081921.GF2472@darklight.org.ru> References: <468CA7A9.2000000@fastmail.fm> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5Mfx4RzfBqgnTE/w" Content-Disposition: inline In-Reply-To: <468CA7A9.2000000@fastmail.fm> User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Thu, 05 Jul 2007 12:20:00 +0400 (MSD) Cc: questions@freebsd.org Subject: Re: Ghostscript and options window X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 08:33:46 -0000 --5Mfx4RzfBqgnTE/w Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jul 05, 2007 at 10:11:21AM +0200, Alberto Rizzi wrote: > When I build print/ghostscript-gpl on my 6.2-STABLE I have to choose > which driver to build through the "GPL Ghostscript driver configuration" > window. >=20 > These settings aren't saved anywhere so, each time I upgrade > ghostscript, I have to choose which drivers to install >=20 > How can I set these options only once? You need to pass BATCH=3Dyes to make. How you'll do it depends on ports tools you use - here's example for portconf: print/ghostscript-*: BATCH=3Dyes HTH, Yuri --5Mfx4RzfBqgnTE/w Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGjKmJeoAklVFrLdgRAoJTAKCCVzuL3Ymiq8lesgMuaGren1KSRQCfdjty 3QnnRDfAQ45Y+skFWJAWrdg= =UweD -----END PGP SIGNATURE----- --5Mfx4RzfBqgnTE/w-- From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 09:13:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F14E16A46B for ; Thu, 5 Jul 2007 09:13:18 +0000 (UTC) (envelope-from kalin@el.net) Received: from mail.el.net (mail.el.net [74.2.36.130]) by mx1.freebsd.org (Postfix) with ESMTP id D3F5E13C44B for ; Thu, 5 Jul 2007 09:13:17 +0000 (UTC) (envelope-from kalin@el.net) Received: (qmail 94727 invoked by uid 1008); 5 Jul 2007 07:21:51 -0000 Received: from unknown (HELO mail.el.net) (127.0.0.1) by mail.el.net with SMTP; 5 Jul 2007 07:21:51 -0000 Received: from 74.64.6.149 (SquirrelMail authenticated user kalin@el.net) by mail.el.net with HTTP; Thu, 5 Jul 2007 03:21:51 -0400 (EDT) Message-ID: <56684.74.64.6.149.1183620111.squirrel@mail.el.net> Date: Thu, 5 Jul 2007 03:21:51 -0400 (EDT) From: "kalin mintchev" To: freebsd-questions@freebsd.org User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: skype question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: kalin@el.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 09:13:18 -0000 hi all.. got skype installed. can't get sound of off it. when i talk people hear me but i can;t hear rings. sound works fine otherwise - i can listen stuff with xmms. in the skype options for hand/headsets the Ringing points to /dev/dsp same as Calls one but the one for ringing is dimmed and i can;t use the pulldown... any ideas? thanks... From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 09:33:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC19E16A41F for ; Thu, 5 Jul 2007 09:33:10 +0000 (UTC) (envelope-from npacemo@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.freebsd.org (Postfix) with ESMTP id 5AC3213C4AE for ; Thu, 5 Jul 2007 09:33:10 +0000 (UTC) (envelope-from npacemo@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4781681pyb for ; Thu, 05 Jul 2007 02:33:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=YR49paN/dL5FjZde9NCLQmHfadHQoRe/7Y2fTIuy1JGgG5QlTdvgnNhRC0J2aiP50+UYMGekolCZMuQCfQta48zA8SGPJb3Eg5B7MLwShmO2c8762Jioc2Rp8jacgReybEffNhv6QmcqUwkecysrxBrO1l8IuuAGUjG7hyZiqeI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=Z4AdNxatS3po6us7LcjAmyjvWArt5qQHdpVvEjxGCYJCjzCdl19fTTjRWgGq8krMV235mcd+EA6g9N34PpIUyMkJYxN7wh1yXIlNRSBxYjna8E05RYfW27NS6nBZuFJDGYbPLzId/gzszZKZXxBCzq2I2rvQFaCRRSUElNnfKkc= Received: by 10.64.156.2 with SMTP id d2mr14164191qbe.1183627989240; Thu, 05 Jul 2007 02:33:09 -0700 (PDT) Received: by 10.64.3.6 with HTTP; Thu, 5 Jul 2007 02:33:09 -0700 (PDT) Message-ID: <666bdb140707050233pfeb79f5n6cb601b5a9db71e8@mail.gmail.com> Date: Thu, 5 Jul 2007 12:33:09 +0300 From: "Vladimir Tsvetkov" To: kalin@el.net In-Reply-To: <56684.74.64.6.149.1183620111.squirrel@mail.el.net> MIME-Version: 1.0 References: <56684.74.64.6.149.1183620111.squirrel@mail.el.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: skype 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, 05 Jul 2007 09:33:10 -0000 Try stopping all sound reproducing programs and start your skype session when the sound device is not busy and gets free. On 05/07/07, kalin mintchev wrote: > > hi all.. > > got skype installed. can't get sound of off it. when i talk people hear me > but i can;t hear rings. sound works fine otherwise - i can listen stuff > with xmms. > in the skype options for hand/headsets the Ringing points to /dev/dsp > same as Calls one but the one for ringing is dimmed and i can;t use the > pulldown... > > any ideas? > > thanks... > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 09:44:25 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FBD116A400 for ; Thu, 5 Jul 2007 09:44:25 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 33C6313C448 for ; Thu, 5 Jul 2007 09:44:25 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 3017 invoked from network); 5 Jul 2007 04:44:24 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 04:44:24 -0500 Date: Thu, 5 Jul 2007 19:44:21 +1000 From: Norberto Meijome To: "Andrew Falanga" Message-ID: <20070705194421.4ba50613@localhost> In-Reply-To: <340a29540707041337n2c71118eh9b708de7bc0cdb48@mail.gmail.com> References: <340a29540707041337n2c71118eh9b708de7bc0cdb48@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: mod_perl port X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 09:44:25 -0000 On Wed, 4 Jul 2007 14:37:59 -0600 "Andrew Falanga" wrote: > I installed Apache 2.2 and the appropriate mod_perl port for this > version of apache. However, it is not referenced in > /usr/local/etc/apache/httpd.conf. How do I get it there? Hi Andrew, Apache 1.x -> /usr/local/etc/apache Apache 2.x -> /usr/local/etc/apache2/ Make sure you are looking in the right config file. If you had apache 1.x installed previously and then upgraded, the config files would be left behind. They (1.x conf files) are not used by Apache 2.x _________________________ {Beto|Norberto|Numard} Meijome "Peace can only be achieved by understanding." Albert Einstein I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 09:46:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDD7116A492 for ; Thu, 5 Jul 2007 09:46:44 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id A101913C46A for ; Thu, 5 Jul 2007 09:46:44 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 3101 invoked from network); 5 Jul 2007 04:46:44 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 04:46:43 -0500 Date: Thu, 5 Jul 2007 19:46:40 +1000 From: Norberto Meijome To: "Vladimir Tsvetkov" Message-ID: <20070705194640.67904160@localhost> In-Reply-To: <666bdb140707050233pfeb79f5n6cb601b5a9db71e8@mail.gmail.com> References: <56684.74.64.6.149.1183620111.squirrel@mail.el.net> <666bdb140707050233pfeb79f5n6cb601b5a9db71e8@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: kalin@el.net, freebsd-questions@freebsd.org Subject: Re: skype 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, 05 Jul 2007 09:46:45 -0000 On Thu, 5 Jul 2007 12:33:09 +0300 "Vladimir Tsvetkov" wrote: > Try stopping all sound reproducing programs and start your skype session > when the sound device is not busy and gets free. or simply increase the number of apps that can access your sound card simultaneously : as root (or sudo): sysctl hw.snd.maxautovchans = [NUMBER_OF_APPS]. I have 8 on mine (Intel HDA) and it works fine. You can set this in /etc/sysctl.conf so it's reset on startup to your new value. > > On 05/07/07, kalin mintchev wrote: > > > > hi all.. > > > > got skype installed. can't get sound of off it. when i talk people hear me > > but i can;t hear rings. sound works fine otherwise - i can listen stuff > > with xmms. > > in the skype options for hand/headsets the Ringing points to /dev/dsp > > same as Calls one but the one for ringing is dimmed and i can;t use the > > pulldown... This is normal. _________________________ {Beto|Norberto|Numard} Meijome "Too bad ignorance isn't painful." Don Lindsay I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 10:00:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 46BFA16A475 for ; Thu, 5 Jul 2007 10:00:35 +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 A2F8313C4E3 for ; Thu, 5 Jul 2007 10:00:34 +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.12.11) with ESMTP id l65A0WwT020787 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 5 Jul 2007 17:00:32 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l65A0Wiq015761; Thu, 5 Jul 2007 17:00:32 +0700 (ICT) Date: Thu, 5 Jul 2007 17:00:32 +0700 (ICT) Message-Id: <200707051000.l65A0Wiq015761@banyan.cs.ait.ac.th> From: Olivier Nicole To: freebsd-questions@freebsd.org X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Subject: Lost SSH X1 Forwarding with Xorg 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: Thu, 05 Jul 2007 10:00:35 -0000 Hi, A nice *feature* that I just noticed, I apologize if it has been mentionned earlier. xorg 7.2 tends to install all the components in /usr/loca insteal of the traditional /usr/X11R6. But sshd is still expecting xauth to be in /usr/X11R6/bin/xauth; so sshd_config has to be modified to reflect the fact that xauth new path is /usr/local/bin/xauth. So the default /etc/ssh/sshd_config should be adapted to reflect this change... Best regards, Olivier From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 10:34:37 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0E9A16A400 for ; Thu, 5 Jul 2007 10:34:37 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.239]) by mx1.freebsd.org (Postfix) with ESMTP id B654913C45D for ; Thu, 5 Jul 2007 10:34:37 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i29so1474006wxd for ; Thu, 05 Jul 2007 03:34:37 -0700 (PDT) Received: by 10.70.44.18 with SMTP id r18mr13011804wxr.1183631676638; Thu, 05 Jul 2007 03:34:36 -0700 (PDT) Received: from ?192.168.0.4? ( [67.189.184.224]) by mx.google.com with ESMTP id i15sm8945271wxd.2007.07.05.03.34.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 05 Jul 2007 03:34:35 -0700 (PDT) Date: Thu, 05 Jul 2007 06:34:49 -0400 To: User Questions Organization: Seibercom.net In-Reply-To: References: X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q Message-Id: <20070705063316.81C4.GERARD-SEIBERT@seibercom.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.31 [en] From: Gerard Subject: Re: m4p conversion to mp4? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: User Questions List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 10:34:38 -0000 On July 04, 2007 at 06:11PM SMITH Dennis \(SPARQ\) wrote: > Warning to potential uses of the AllMusicConverter ( > www.allmusicconverter.com ). If you > are a software developer beware of this application as it disables the > debug environment, probably to prevent reverse engineering. This is > done with some other applications that I know of but most of them put > the system back the way they found it, this one doesn't, and you have to > re-boot in order to debug your apps. > > The company go to extreme lengths to also prevent installing on more > than one PC. There methods would likely cause the application to stop > working even if you upgrade your PC by replacing the motherboard or even > the processor as it checks the system ID. > > Attempts at contacting the company about this have resulted in an total > absence of response. > > Denny Smith - Senior Analyst/Programmer Sparq Solutions, Australia This is a Win32 program. Why post that information, of which you offer no documentation by the way, on this forum? -- Gerard From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 11:40:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 189B716A46B for ; Thu, 5 Jul 2007 11:40:09 +0000 (UTC) (envelope-from g.v.tjongahung@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id BD7CC13C487 for ; Thu, 5 Jul 2007 11:40:08 +0000 (UTC) (envelope-from g.v.tjongahung@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so577219anc for ; Thu, 05 Jul 2007 04:40:08 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=kB/OC8SIJkX7rE5ahzqg+Rdz5Ohjn13MGTSMYMKE3kp4XJiG+5PCgS1t78UQ2gwtuq+62yOTpjVMbQjYjNtBAsuoFWq205LU4boKZtKgmk5/u5uwx2JF0qMYKCpYjutq9XhAle2/54+69nLUdpYBqYDSPapHnfMKwrukfo92YI0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=lBVC9+OLZ2P7WW0EtN7Ny+RWNah23siF4N5VtOhyXteMnGrlISoV71g5aNnzy2mj6TCPNgErY4rxHyMJaFTBt8+H3uyQCRw1nan5X547WbFfC/bQ+09EoNTFw89+DmSlp7qQ/Qb2lFJIFtTv3dAF7KwyFTJGVDF8rHxvmunEPbI= Received: by 10.100.125.5 with SMTP id x5mr5252225anc.1183635607822; Thu, 05 Jul 2007 04:40:07 -0700 (PDT) Received: by 10.100.45.6 with HTTP; Thu, 5 Jul 2007 04:40:07 -0700 (PDT) Message-ID: <822946050707050440y2e4fd269t607c15c8a2f06524@mail.gmail.com> Date: Thu, 5 Jul 2007 13:40:07 +0200 From: "Gabor Tjong A Hung" To: "Norberto Meijome" In-Reply-To: <20070705110308.7096cbe9@localhost> MIME-Version: 1.0 References: <822946050707040018o1877737ia46252c8ae40fc9b@mail.gmail.com> <20070705005329.65be3130@localhost> <822946050707041022p1e55f853n242dfba946f7bf7b@mail.gmail.com> <20070705110308.7096cbe9@localhost> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Fwd: Samba NetBios X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 11:40:09 -0000 Dear all, The idea is to share it over a local area network. This LAN has a wins server. my server has a jail in which samba resides. In order for the LAN to be serviced by my jailed samba I have NATED and RDRed the required packets In order for the LAN to browse the network NETBIOS seems to be a problem. AFAIK when one sends a netBIOS packet an ip is embedded and the response is sent to that ip. NAT only redirects the packet to he appropriate network, but apparently the packet needs to be altered too in order for a response to be sent. I hope this information was sufficient smb_jail_ip="10.0.0.3" int_ip="172.20.25.177" samba_UDP_ports = "{netbios-ns, netbios-dgm}" samba_TCP_ports = "{microsoft-ds, netbios-ssn}" #smb nat on $int_if from $smb_jail_ip to $int_if:network ->$int_ip rdr on $int_if proto TCP from any to $int_ip port $samba_TCP_ports -> $smb_jail_ip rdr on $int_if proto UDP from any to $int_if:broadcast port $samba_UDP_ports -> $smb_jail_ip rdr on $int_if proto UDP from any to $int_ip port $samba_UDP_ports -> $smb_jail_ip pass in quick on $int_if all pass out quick on $int_if all On 7/5/07, Norberto Meijome wrote: > > On Wed, 4 Jul 2007 19:22:13 +0200 > "Gabor Tjong A Hung" wrote: > > > Dear all, > > > > I was told that my questions was better served here than in ports@ > > > > > > > I've recently put my samba server in a jail, but as you can see @ > > > http://www.faughnan.com/netbios.html NetBIOS is a bit of a problem and > can > > > cause alot of headache. I was unable to find a nat helper for pf, so I > was > > > wondering if I could bridge my jail with it's host. the bridge > > > manual >however > > > requires me to have *two* network devices(or so it says), but my > > > jails are just aliases on the same network device. > > > Does anyone know another solution to make browsing possible? or have a > > clue > > > on how to make the solutions I tried work. > > > > > > >ifconfig > > > rl0: flags=8843 mtu 1500 > > > options=8 > > > inet6 fe80::202:44ff:fe30:dd04%rl0 prefixlen 64 scopeid 0x1 > > > inet 172.20.25.177 netmask 0xfffffc00 broadcast 172.20.27.255 > > > inet 10.0.0.3 netmask 0xffffffff broadcast 10.0.0.3 > > > inet 10.0.0.2 netmask 0xffffffff broadcast 10.0.0.2 > > > inet 10.0.0.6 netmask 0xffffffff broadcast 10.0.0.6 > > > inet 10.0.0.4 netmask 0xffffffff broadcast 10.0.0.4 > > > inet 10.0.0.5 netmask 0xffffffff broadcast 10.0.0.5 > > > ether 00:02:44:30:dd:04 > > > media: Ethernet autoselect (100baseTX ) > > > status: active > > hi Gabor, > are you trying to share over SMB between the jails? > between the hosts and the jails? > you may want to explain your plans... using NAT for netbios seems a bit > overkill to me, unless you plan to send SMB packets over the larger > internet...which in itself seems a bad idea. > > If you only need SMB across different LAN segments, setup WINS server(s) > (MS or > from the Samba project). > > B > _________________________ > {Beto|Norberto|Numard} Meijome > > "It is a lesson which all history teaches wise men, to put trust in ideas, > and > not in circumstances." Emerson > > I speak for myself, not my employer. Contents may be hot. Slippery when > wet. > Reading disclaimers makes you go blind. Writing them is worse. You have > been > Warned. > From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:15:01 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA6CF16A41F for ; Thu, 5 Jul 2007 12:15:01 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from smtp-vbr3.xs4all.nl (smtp-vbr3.xs4all.nl [194.109.24.23]) by mx1.freebsd.org (Postfix) with ESMTP id 6A8D613C459 for ; Thu, 5 Jul 2007 12:15:01 +0000 (UTC) (envelope-from Johan@double-l.nl) Received: from w2003s01.double-l.local (dpm.xs4all.nl [213.84.11.61]) by smtp-vbr3.xs4all.nl (8.13.8/8.13.8) with ESMTP id l65Bpgqx005282; Thu, 5 Jul 2007 13:51:42 +0200 (CEST) (envelope-from Johan@double-l.nl) Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.5 Date: Thu, 5 Jul 2007 13:51:40 +0200 Message-ID: <57200BF94E69E54880C9BB1AF714BBCB19BB73@w2003s01.double-l.local> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: How does one start mysql after installing from ports Thread-Index: Ace+ppD1ZOS6lxaBSKWXOMt1F6djlAAU7Seg References: From: "Johan Hendriks" To: X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: RE: How does one start mysql after installing from ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 12:15:01 -0000 >To autostart mysql at boot add this to /etc/rc.conf >mysql_enable=3D"YES" >Add this to /etc/rc.conf to direct to use location where there is a = large >enough free disk space >to hold your databases >mysql_dbdir=3D"/usr/local/mysql" >To start or stop mysql server do this >/usr/local/share/mysql/mysql.server start >/usr/local/share/mysql/mysql.server stop Better is to use /usr/local/etc/rc.d/mysql start cq stop >You have to tell mysql to create its internel control db >by running this command one time first before trying to create = databases. >mysql_install_db --user=3Dmysql If you did use /usr/local/etc/rc.d/mysql start, the above is not needed, = it will do it automaticly if it does not find any database at startup. >To verify mysql is operational issue these commands >mysqladmin version >mysqladmin variables >To start command line session with mysql server to >create a DB enter >mysql -u root >The online mysql manual is at >http://dev.mysql.com/doc/refman/5.0/en/index.html =20 No virus found in this outgoing message. Checked by AVG Free Edition.=20 Version: 7.5.476 / Virus Database: 269.10.0/886 - Release Date: 4-7-2007 = 13:40 =20 From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:15:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D545116A421 for ; Thu, 5 Jul 2007 12:15:54 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id 83FF713C455 for ; Thu, 5 Jul 2007 12:15:54 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id 907A81C8008 for ; Thu, 5 Jul 2007 20:16:17 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28926-01 for ; Thu, 5 Jul 2007 20:16:16 +0800 (CST) Received: from [218.193.55.202] (unknown [125.77.224.188]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by bossdog.realss.com (Postfix) with ESMTP id 997F21C8007 for ; Thu, 5 Jul 2007 20:16:15 +0800 (CST) From: Zhang Weiwu To: freebsd-questions@freebsd.org Content-Type: text/plain Organization: Real Softservice Date: Thu, 05 Jul 2007 20:15:47 +0800 Message-Id: <1183637747.9913.21.camel@esmeralda> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Subject: /boot/device.hints only work for some devices in FreeBSD 6.2? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 12:15:54 -0000 Dear list I followed documents I found on the Internet which says by editing /boot/device.hints I can assign IRQ or disable devices, and I tried to do so, modification in /boot/device.hint do have effect over some device, for example: hint.fdc.0.disable="1" but some seetings do not have effect, e.g. hint.uhci.0.disable="1" No matter what I set to uhci (irq, disable, port, at etc), none of them works, next time the OS start it will always discover this device and assign the same irq, same port: [zhangweiwu@quasimodo ~]$ dmesg | grep hci uhci0: port 0x9000-0x901f irq 11 at device 6.2 on pci0 uhci0: [GIANT-LOCKED] usb0: on uhci0 [zhangweiwu@quasimodo ~]$ Where can I get knowledge of how device.hints works? e.g. maybe it can only work with device that is not managed by a PNP BIOS or maybe it only manage ISA devices but not PCI devices? Thanks! From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:16:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F7C516A421 for ; Thu, 5 Jul 2007 12:16:48 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id EDB4B13C448 for ; Thu, 5 Jul 2007 12:16:47 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 678685191F for ; Thu, 5 Jul 2007 08:16:46 -0400 (EDT) Date: Thu, 5 Jul 2007 13:16:43 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070705131643.0c62254d@gumby.homeunix.com.> In-Reply-To: <20070704224244.68f09a50@gumby.homeunix.com.> References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> <20070704224244.68f09a50@gumby.homeunix.com.> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 12:16:48 -0000 On Wed, 4 Jul 2007 22:42:44 +0100 RW wrote: > On Thu, 5 Jul 2007 02:34:16 +0800 > "Dinesh Pandian" wrote: > > > Good day all! > > > > Please help me out with a really annoying little problem that bugs > > me everytime I try to install applications from ports. > > > > When I try to run portupgrade -a or portmanager -u, > > when Make fetches the files from the servers, fetch > > normally hangs randomly sometime through the downloading > > of the distfile. The only solution I've thought about is aborting > > the upgrade procedure and issuing the same command again, > > hoping that fetch resumes where it left off. > > > This is a bit of a long-shot, but if you are using pf, and the > relevant rule has a "modulate state", try changing it to "keep state" > > Otherwise, what is the output of > > make -V FETCH_CMD Sorry, forgot to mention, you have to be in a port directory for that to work. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:21:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 142AB16A400 for ; Thu, 5 Jul 2007 12:21:49 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id BFFC313C448 for ; Thu, 5 Jul 2007 12:21:48 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id 9BEFB1C8008 for ; Thu, 5 Jul 2007 20:22:12 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28926-03 for ; Thu, 5 Jul 2007 20:22:11 +0800 (CST) Received: from [218.193.55.202] (unknown [125.77.224.188]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by bossdog.realss.com (Postfix) with ESMTP id 802311C8007 for ; Thu, 5 Jul 2007 20:22:11 +0800 (CST) From: Zhang Weiwu To: freebsd-questions@freebsd.org Content-Type: text/plain Organization: Real Softservice Date: Thu, 05 Jul 2007 20:21:42 +0800 Message-Id: <1183638103.9913.28.camel@esmeralda> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Subject: unknown: can't assign resources (irq) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 12:21:49 -0000 Dear list I have seen strange message in my dmesg which says it cannot assign resources to PNP device: [snip] sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 unknown: can't assign resources (port) unknown: can't assign resources (irq) unknown: can't assign resources (port) unknown: can't assign resources (memory) unknown: can't assign resources (port) pcm0: at port 0x530-0x537,0x388-0x38b,0x220-0x233 irq 5 drq 1,0 on isa0 [/snip] I have googled around and discussion around the the topic of "PNPxxx cannot assign resouce" mostly happen in 2002 ~ 2005, they have suggested not to use PNPBIOS option in kernel, which I didn't use at all and cannot see references to this kernel option (so should be a removed option). Others on the forums suggested (in 2003) that I should disable PNP feature in BIOS, which is impossible for me because my old IBM Thinkpad don't offer such config option (the only config option had been change system date/time and start-up-sequence). Even if it doesn't affect the use of the system I'd like to know a bit about the background knowledge. At least two devices on my FreeBSD doesn't work, the COM port and the second PCMCIA slot (anything on that slot doesn't work), though I don't think the two devices are related to this kernel message. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:21:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE39316A478 for ; Thu, 5 Jul 2007 12:21:53 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 7314B13C487 for ; Thu, 5 Jul 2007 12:21:53 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 11552 invoked from network); 5 Jul 2007 07:21:53 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 07:21:52 -0500 Date: Thu, 5 Jul 2007 22:21:49 +1000 From: Norberto Meijome To: Olivier Nicole Message-ID: <20070705222149.413ce477@localhost> In-Reply-To: <200707051000.l65A0Wiq015761@banyan.cs.ait.ac.th> References: <200707051000.l65A0Wiq015761@banyan.cs.ait.ac.th> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Lost SSH X1 Forwarding with Xorg 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: Thu, 05 Jul 2007 12:21:53 -0000 On Thu, 5 Jul 2007 17:00:32 +0700 (ICT) Olivier Nicole wrote: > Hi, > > A nice *feature* that I just noticed, I apologize if it has been > mentionned earlier. > > xorg 7.2 tends to install all the components in /usr/loca insteal of > the traditional /usr/X11R6. > > But sshd is still expecting xauth to be in /usr/X11R6/bin/xauth; so > sshd_config has to be modified to reflect the fact that xauth new path > is /usr/local/bin/xauth. > > So the default /etc/ssh/sshd_config should be adapted to reflect this > change... Hi Olivier, I'm running ssh w/XForwarding for some apps between 2 boxen with xorg 7.2 with no problem at all. I dont recall touching ssh's config - anyway, the setup procedure for xorg 7.2 should symlink /usr/X11R6 to /usr/local/ ...maybe you have that missing? _________________________ {Beto|Norberto|Numard} Meijome "It's not what you do, it's the love you put into it." Mother Theresa. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:34:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7876B16A421 for ; Thu, 5 Jul 2007 12:34:38 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 420A813C448 for ; Thu, 5 Jul 2007 12:34:38 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 12214 invoked from network); 5 Jul 2007 07:34:37 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 07:34:37 -0500 Date: Thu, 5 Jul 2007 22:34:34 +1000 From: Norberto Meijome To: "Gabor Tjong A Hung" Message-ID: <20070705223434.5879e55f@localhost> In-Reply-To: <822946050707050440y2e4fd269t607c15c8a2f06524@mail.gmail.com> References: <822946050707040018o1877737ia46252c8ae40fc9b@mail.gmail.com> <20070705005329.65be3130@localhost> <822946050707041022p1e55f853n242dfba946f7bf7b@mail.gmail.com> <20070705110308.7096cbe9@localhost> <822946050707050440y2e4fd269t607c15c8a2f06524@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Fwd: Samba NetBios X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 12:34:38 -0000 On Thu, 5 Jul 2007 13:40:07 +0200 "Gabor Tjong A Hung" wrote: > Dear all, > > The idea is to share it over a local area network. > This LAN has a wins server. > my server has a jail in which samba resides. > In order for the LAN to be serviced by my jailed samba I have NATED and > RDRed the required packets > In order for the LAN to browse the network NETBIOS seems to be a problem. > AFAIK when one sends a netBIOS packet an ip is embedded and the response is > sent to that ip. NAT only redirects the packet to he appropriate network, > but apparently the packet needs to be altered too in order for a response to > be sent. > I hope this information was sufficient > > > smb_jail_ip="10.0.0.3" > int_ip="172.20.25.177" > samba_UDP_ports = "{netbios-ns, netbios-dgm}" > samba_TCP_ports = "{microsoft-ds, netbios-ssn}" > > #smb > nat on $int_if from $smb_jail_ip to $int_if:network ->$int_ip > rdr on $int_if proto TCP from any to $int_ip port $samba_TCP_ports -> > $smb_jail_ip > rdr on $int_if proto UDP from any to $int_if:broadcast port $samba_UDP_ports > -> $smb_jail_ip > rdr on $int_if proto UDP from any to $int_ip port $samba_UDP_ports -> > $smb_jail_ip > > > pass in quick on $int_if all > pass out quick on $int_if all > Hi Gabor, I dont recall ever doing NAT+netbios myself - maybe just too lazy to work around all this ;). What i've done with no problem is to use WINS (or /mumble/mubmle/lmhosts :) to route the packets from 172.20.25/24 to the 10.0.0./24 subnet, and back. Well, normal TCP/IP routing for routing, and then WINS/LMHOST to solve the issue that the normal Netbios name discovery broadcasts wont reach other subnets. I dont think i've actually done it with jails , but it works with SMB over VPN links to the other side of the world (it makes you cry, though, slow as a dead snail) and different VMNets in VMWare hosts and the outside LAN. Apologies for not actually proposing a solution to your problem... :-P B > > On 7/5/07, Norberto Meijome wrote: > > > > On Wed, 4 Jul 2007 19:22:13 +0200 > > "Gabor Tjong A Hung" wrote: > > > > > Dear all, > > > > > > I was told that my questions was better served here than in ports@ > > > > > > > > > > I've recently put my samba server in a jail, but as you can see @ > > > > http://www.faughnan.com/netbios.html NetBIOS is a bit of a problem and > > can > > > > cause alot of headache. I was unable to find a nat helper for pf, so I > > was > > > > wondering if I could bridge my jail with it's host. the bridge > > > > manual > >however > > > > requires me to have *two* network devices(or so it says), but my > > > > jails are just aliases on the same network device. > > > > Does anyone know another solution to make browsing possible? or have a > > > clue > > > > on how to make the solutions I tried work. > > > > > > > > >ifconfig > > > > rl0: flags=8843 mtu 1500 > > > > options=8 > > > > inet6 fe80::202:44ff:fe30:dd04%rl0 prefixlen 64 scopeid 0x1 > > > > inet 172.20.25.177 netmask 0xfffffc00 broadcast 172.20.27.255 > > > > inet 10.0.0.3 netmask 0xffffffff broadcast 10.0.0.3 > > > > inet 10.0.0.2 netmask 0xffffffff broadcast 10.0.0.2 > > > > inet 10.0.0.6 netmask 0xffffffff broadcast 10.0.0.6 > > > > inet 10.0.0.4 netmask 0xffffffff broadcast 10.0.0.4 > > > > inet 10.0.0.5 netmask 0xffffffff broadcast 10.0.0.5 > > > > ether 00:02:44:30:dd:04 > > > > media: Ethernet autoselect (100baseTX ) > > > > status: active > > > > hi Gabor, > > are you trying to share over SMB between the jails? > > between the hosts and the jails? > > you may want to explain your plans... using NAT for netbios seems a bit > > overkill to me, unless you plan to send SMB packets over the larger > > internet...which in itself seems a bad idea. > > > > If you only need SMB across different LAN segments, setup WINS server(s) > > (MS or > > from the Samba project). > > > > B > > _________________________ > > {Beto|Norberto|Numard} Meijome > > > > "It is a lesson which all history teaches wise men, to put trust in ideas, > > and > > not in circumstances." Emerson > > > > I speak for myself, not my employer. Contents may be hot. Slippery when > > wet. > > Reading disclaimers makes you go blind. Writing them is worse. You have > > been > > Warned. > > _________________________ {Beto|Norberto|Numard} Meijome What you are afraid to do is a clear indicator of the next thing you need to do. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:49:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE69A16A400 for ; Thu, 5 Jul 2007 12:49:42 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-6.eunet.yu (smtpclu-6.eunet.yu [194.247.192.231]) by mx1.freebsd.org (Postfix) with ESMTP id 6FA1E13C4BC for ; Thu, 5 Jul 2007 12:49:42 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-232-137.eunet.yu [213.198.232.137]) by smtpclu-6.eunet.yu (8.13.6/8.13.6) with ESMTP id l65CnYmg000752; Thu, 5 Jul 2007 12:49:37 GMT Message-Id: <200707051249.l65CnYmg000752@smtpclu-6.eunet.yu> Date: Thu, 5 Jul 2007 14:49:32 +0200 From: Nikola Lecic To: Zhang Weiwu In-Reply-To: <1183638103.9913.28.camel@esmeralda> References: <1183638103.9913.28.camel@esmeralda> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_20,TW_BF,TW_DR,TW_XB,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.5 Cc: freebsd-questions@freebsd.org Subject: Re: unknown: can't assign resources (irq) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 12:49:43 -0000 On Thu, 05 Jul 2007 20:21:42 +0800 Zhang Weiwu wrote: > Dear list >=20 > I have seen strange message in my dmesg which says it cannot assign > resources to PNP device: >=20 > [snip] > sc0: VGA <16 virtual consoles, flags=3D0x300> > vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on > isa0 > unknown: can't assign resources (port) > unknown: can't assign resources (irq) > unknown: can't assign resources (port) > unknown: can't assign resources (memory) > unknown: can't assign resources (port) > pcm0: at port 0x530-0x537,0x388-0x38b,0x220-0x233 irq 5 drq > 1,0 on isa0 [/snip] >=20 > I have googled around and discussion around the the topic of "PNPxxx > cannot assign resouce" mostly happen in 2002 ~ 2005, they have > suggested not to use PNPBIOS option in kernel, which I didn't use at > all and cannot see references to this kernel option (so should be a > removed option). Others on the forums suggested (in 2003) that I > should disable PNP feature in BIOS, which is impossible for me > because my old IBM Thinkpad don't offer such config option (the only > config option had been change system date/time and > start-up-sequence). Even if it doesn't affect the use of the system > I'd like to know a bit about the background knowledge. At least two > devices on my FreeBSD doesn't work, the COM port and the second > PCMCIA slot (anything on that slot doesn't work), though I don't > think the two devices are related to this kernel message. Hello Zhang, Those messages are completely harmless (as you have surely already read, resources can't be assigned because certain driver(s) are already using them). There is no elegant way to disable them AFAIK. The fact that your devices are not working properly is not related to them but to something else in your installation. Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 12:57:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C450E16A46B for ; Thu, 5 Jul 2007 12:57:57 +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 9F0B713C480 for ; Thu, 5 Jul 2007 12:57:57 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 6856 invoked from network); 5 Jul 2007 12:57:57 -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 ; 5 Jul 2007 12:57:57 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 1BB292842D; Thu, 5 Jul 2007 08:57:56 -0400 (EDT) To: "Dinesh Pandian" References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> From: Lowell Gilbert Date: Thu, 05 Jul 2007 08:57:55 -0400 In-Reply-To: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> (Dinesh Pandian's message of "Thu\, 5 Jul 2007 02\:34\:16 +0800") Message-ID: <44fy433t4c.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. 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, 05 Jul 2007 12:57:57 -0000 "Dinesh Pandian" writes: > Please help me out with a really annoying little problem that bugs me > everytime I try to install applications from ports. > > When I try to run portupgrade -a or portmanager -u, > when Make fetches the files from the servers, fetch > normally hangs randomly sometime through the downloading > of the distfile. The only solution I've thought about is aborting > the upgrade procedure and issuing the same command again, > hoping that fetch resumes where it left off. > > In bigger files, > 5MB, I'd have to repeat this process several > times to download a single distfile. > > I've tried setting the FTP_PASSIVE_MODE env ON and OFF > to no avail. > > I can't seem to find a problem with the internet connection > as httpd and ftpd works perfectly fine! Is there a firewall in the way? NAT? Have you tried using fetch(1) from the command line, with increased verbosity level? From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:10:37 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3ADAB16A400 for ; Thu, 5 Jul 2007 13:10:37 +0000 (UTC) (envelope-from agus.262@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id E3C6C13C4AD for ; Thu, 5 Jul 2007 13:10:36 +0000 (UTC) (envelope-from agus.262@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4875670pyb for ; Thu, 05 Jul 2007 06:10:36 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=tdHkOcTIp4/eh7H49IJNG4G4+sUr419lEpm2gCKv3HuMc2IghkPiiau3USRSsdJoh4WnzADo7vdJGNXcC153HQlUFIyQgLqaBSG39qy+01UnqmZOGK9e0tOt4H7Hnbog9wrKp+eN/2HHQKEcmOl/GMpsS6GNiPcSLEZd97XFngM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ciE+S7nd3Y21Cow9wazM6RS5IEY18Wajotn97cA8etXlBhvzFdtJX5pN0SgUR7P9XXKaoPruz/lrbrt1KbCLhZYaXxR1eqpIPrTSxZ+AL85GmvoZdlz6NyxpomaxBqN5HBL/qAYZTfJJLPLOQm3IvXqMWxyqML8667GWGP3SkvQ= Received: by 10.64.181.12 with SMTP id d12mr14473511qbf.1183641034806; Thu, 05 Jul 2007 06:10:34 -0700 (PDT) Received: by 10.65.185.20 with HTTP; Thu, 5 Jul 2007 06:10:34 -0700 (PDT) Message-ID: Date: Thu, 5 Jul 2007 10:10:34 -0300 From: Agus To: freebsd-questions In-Reply-To: MIME-Version: 1.0 References: <445024.12701.qm@web53303.mail.re2.yahoo.com> <468C2204.1070408@bellsouth.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: grep 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, 05 Jul 2007 13:10:37 -0000 ---------- Forwarded message ---------- From: Agus Date: 05-jul-2007 10:09 Subject: Re: grep question To: Paul procacci 2007/7/4, Paul procacci : > > ann kok wrote: > > Hi all > > > > how can I use grep to have the output as 60.40.2.x > > > > eg: > > 60.40.2.5 > > 60.40.2.3 > > 60.40.2.7 > > > > except 60.40.2x.x > > > > eg: > > 60.40.20.5 > > 60.40.23.6 > > 60.40.25.7 > > > > Thank you > > > > > > > > > > > ____________________________________________________________________________________ > > Park yourself in front of a world of choices in alternative vehicles. > Visit the Yahoo! Auto Green Center. > > http://autos.yahoo.com/green_center/ > > _______________________________________________ > > 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 > " > > > > > Sorry, after re-reading the question, I must admit I think I > misunderstood. > > Pieter de Goeje's response seems to be more along the lines of what you > were looking for. ;P > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > I think only with, grep '60\.40\.2\.' will suffice. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:15:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86B1C16A46B for ; Thu, 5 Jul 2007 13:15:40 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.180]) by mx1.freebsd.org (Postfix) with ESMTP id 45F4013C44C for ; Thu, 5 Jul 2007 13:15:40 +0000 (UTC) (envelope-from af300wsm@gmail.com) Received: by py-out-1112.google.com with SMTP id u77so4878303pyb for ; Thu, 05 Jul 2007 06:15:39 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DSYg9M6qUKhGwfWlEwb3jwxZKLTdMqvvpWC6nKISPVZreHwc49M55PhGcXrIDO4mt8mH5DmEINTFxAyVSSIGkOCk6hPvHdMf3PdbP81/yVsw5oJIk0R8B8PmlHkxIKgOSF+4+3C10jLbVCXpemM4OypetJC6KMIb4xV04k2Ts64= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=eo3ReW9uN0QbID8Q9mUVykCRFSjYl9UFT4qvqHkXipm2/5fOdjW2A6RMmtDlGpjpU7eBnTpfw42aFuDCoBGFIxAtxkMooclfIfMK+LpTNG4pfRGJqfNkOvtrkDQG0KKpLA4TXm0oXxr2eJzZyh4WUmLrz46GQYs4R1sa8GkpKhs= Received: by 10.35.106.15 with SMTP id i15mr11592176pym.1183641339443; Thu, 05 Jul 2007 06:15:39 -0700 (PDT) Received: by 10.35.17.4 with HTTP; Thu, 5 Jul 2007 06:15:39 -0700 (PDT) Message-ID: <340a29540707050615wff9cccfya686e1eeb80a8097@mail.gmail.com> Date: Thu, 5 Jul 2007 07:15:39 -0600 From: "Andrew Falanga" To: "Pieter de Goeje" In-Reply-To: <200707050032.10161.pieter@degoeje.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <340a29540707041433p29600c83ve800f44788b28ff1@mail.gmail.com> <200707050032.10161.pieter@degoeje.nl> Cc: freebsd-questions@freebsd.org Subject: Re: Does anyone on this list use WebGUI on FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 13:15:40 -0000 On 7/4/07, Pieter de Goeje wrote: > pyotr@lux:/usr/ports> make quicksearch name=apreq2 > Port: libapreq2-2.08 > Path: /usr/ports/www/libapreq2 > Info: Generic Apache2 Request Library > > Port: p5-libapreq2-2.08 > Path: /usr/ports/www/p5-libapreq2 > Info: Generic Apache2 Request Library > > You need the 2nd result. > > HTH, > Pieter de Goeje > > PS. > I suggest you read up on "man ports" (especially the section on search). > > I see. I was doing "make search name=apreq" and was returning no hits. Thanks. Andy From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:19:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0607216A41F for ; Thu, 5 Jul 2007 13:19:54 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.freebsd.org (Postfix) with ESMTP id DC83613C447 for ; Thu, 5 Jul 2007 13:19:53 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 13312 invoked from network); 5 Jul 2007 13:19:53 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 5 Jul 2007 13:19:53 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id C3ACF2842D; Thu, 5 Jul 2007 09:19:52 -0400 (EDT) To: Zhang Weiwu References: <1183637747.9913.21.camel@esmeralda> From: Lowell Gilbert Date: Thu, 05 Jul 2007 09:19:52 -0400 In-Reply-To: <1183637747.9913.21.camel@esmeralda> (Zhang Weiwu's message of "Thu\, 05 Jul 2007 20\:15\:47 +0800") Message-ID: <447ipf3s3r.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: /boot/device.hints only work for some devices in FreeBSD 6.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: Thu, 05 Jul 2007 13:19:54 -0000 Zhang Weiwu writes: > Where can I get knowledge of how device.hints works? e.g. maybe it can > only work with device that is not managed by a PNP BIOS or maybe it only > manage ISA devices but not PCI devices? It sounds like you haven't read "man device.hints". That is a good place to start. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:32:28 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4297516A475 for ; Thu, 5 Jul 2007 13:32:28 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-5.eunet.yu (smtpclu-5.eunet.yu [194.247.192.230]) by mx1.freebsd.org (Postfix) with ESMTP id AE2F813C46A for ; Thu, 5 Jul 2007 13:32:27 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-232-137.eunet.yu [213.198.232.137]) by smtpclu-5.eunet.yu (8.13.6/8.13.6) with ESMTP id l65DWKPC013667; Thu, 5 Jul 2007 15:32:21 +0200 Message-Id: <200707051332.l65DWKPC013667@smtpclu-5.eunet.yu> Date: Thu, 5 Jul 2007 15:32:18 +0200 From: Nikola Lecic To: Zhang Weiwu In-Reply-To: <1183638103.9913.28.camel@esmeralda> References: <1183638103.9913.28.camel@esmeralda> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_00,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -2.6 Cc: freebsd-questions@freebsd.org Subject: Re: unknown: can't assign resources (irq) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 13:32:28 -0000 On Thu, 05 Jul 2007 20:21:42 +0800 Zhang Weiwu wrote: > Even if it doesn't affect the use of the system I'd like to know a > bit about the background knowledge. [...] Actually this is FAQ: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/admin.html#PNP-RESOU= RCES > I have googled around [...] Search at the home first :) Nikola Le=C4=8Di=C4=87 From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:44:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 012D116A421 for ; Thu, 5 Jul 2007 13:44:27 +0000 (UTC) (envelope-from teklimbu@wlink.com.np) Received: from smtp5.wlink.com.np (smtp5.wlink.com.np [202.79.32.52]) by mx1.freebsd.org (Postfix) with SMTP id 957DF13C44B for ; Thu, 5 Jul 2007 13:44:21 +0000 (UTC) (envelope-from teklimbu@wlink.com.np) Received: (qmail 13557 invoked from network); 5 Jul 2007 13:44:13 -0000 Received: from unknown (HELO smtp2.wlink.com.np) (202.79.32.49) by 0 with SMTP; 5 Jul 2007 13:44:13 -0000 Received: (qmail 54506 invoked by uid 98); 5 Jul 2007 13:44:13 -0000 Received: from 202.79.36.216 by smtp2.wlink.com.np (envelope-from , uid 1010) with qmail-scanner-1.25 (clamdscan: 0.90.3/3492. Clear:RC:1(202.79.36.216):. Processed in 0.027963 secs); 05 Jul 2007 13:44:13 -0000 X-Qmail-Scanner-Mail-From: teklimbu@wlink.com.np via smtp2.wlink.com.np X-Qmail-Scanner: 1.25 (Clear:RC:1(202.79.36.216):. Processed in 0.027963 secs) Received: from [202.79.36.216] (HELO teklimbu.wlink.com.np) by smtp2.wlink.com.np (qmail-smtpd) with SMTP; 05 Jul 2007 13:44:10 -0000 (Thu, 05 Jul 2007 19:29:10 +0545) Received: from teklimbu.wlink.com.np (teklimbu.wlink.com.np [202.79.36.216]) by teklimbu.wlink.com.np (Postfix) with SMTP id C64647301B; Thu, 5 Jul 2007 19:22:51 +0545 (NPT) Date: Thu, 5 Jul 2007 19:22:51 +0545 From: Tek Bahadur Limbu To: freebsd-questions@freebsd.org Message-Id: <20070705192251.3ba0abb3.teklimbu@wlink.com.np> Organization: Worldlink Communications Pvt. Ltd. X-Mailer: Sylpheed version 2.2.0 (GTK+ 2.8.12; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Check-By: smtp2.wlink.com.np Spam: No ; 0.3 / 7.0 X-Spam-Status-WL: No, hits=0.3 required=7.0 Subject: bge NIC not supporting 1000baseTX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 13:44:27 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi all, I have a problem with my bge0 (BCM5750A1 NetXtreme) NIC card which is integrated in my Dell 600SC machine. This machine is running on FreeBSD-6.2 (i386). For some reasons, the bge0 NIC interface does not seem to support 1000baseTX settings. When the NIC card is set at either 10/100 baseTX, the bge0 interface shows an active state. However, when I type the following command: ifconfig bge0 media 1000baseTX the status of the bge0 NIC card shows: no carrier Does that mean that this bge0 NIC card does not support speeds of 1000baseTX or do I have to tweak some kernel or sysctl settings? Thanking you.... - -- With best regards and good wishes, Yours sincerely, Tek Bahadur Limbu (TAG/TDG Group) Jwl Systems Department Worldlink Communications Pvt. Ltd. Jawalakhel, Nepal http://www.wlink.com.np -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (FreeBSD) iD8DBQFGjPQvVrOl+eVhOvYRAtEsAKCni1JJ/mBLLOnSroIajz6vO+gwTACdE22N W2fd6dj7OunY/1r5PaZkLMs= =HGVA -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:54:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5ABED16A468 for ; Thu, 5 Jul 2007 13:54:17 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.freebsd.org (Postfix) with ESMTP id E783D13C45B for ; Thu, 5 Jul 2007 13:54:16 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so551024uge for ; Thu, 05 Jul 2007 06:54:15 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=lQGRk2DMwmCNL9iPunu2uDiDIRBDLxQGvyxrpTB4j7uNeDIvILeB1TGc1xP1/WPBHfSLfKuAx8RlwGH6XpNqN/AHGHfQbd6pyn2OsvtVzKPsph+Xkn5dDZddsw6dh8lwfJAVRV4HP05XtAGBMlGE20iMtQl3p2eZ+nd0gvkC2Pk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=SU0P5BSYasnPHGGLCU0iTXSPLCUFguYPzyb2W+vmfK+ba7X3nZAJEz614Dv3UqOUFZS/Iru+FtzQsACymW4UreEMehjPtAadC9R5q4+WUjcbQfdH+R6X/dpRkdWzyVomEdKmsXbEmM7rx6+yxQZvHEMIt+mM4eeDIA6vjoe5NUw= Received: by 10.82.183.19 with SMTP id g19mr20238300buf.1183643655368; Thu, 05 Jul 2007 06:54:15 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id y6sm54528532mug.2007.07.05.06.54.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 05 Jul 2007 06:54:14 -0700 (PDT) From: Zbigniew Komarnicki To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 15:57:21 +0200 User-Agent: KMail/1.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200707051557.21884.cblasius@gmail.com> Subject: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 13:54:17 -0000 Hello, I have also problem with skype. When I try call to friend then I obtain=20 following message:=20 "Problem with sound device". When I run skype from console I get the following message (when I call): "/dev/dsp: Device or resource busy" On my Debian I haven't such problem.=20 I also change,=20 sysctl hw.snd.maxautovchans=3D8 as was in previous message about skype, but still is the problem with sound= =20 device. =46rom 'dmesg', I have: pcm0: port 0xb000-0xb0ff,0xb400-0xb47f mem 0xe8001000-0xe80 01fff irq 21 at device 6.0 on pci0 pcm0: If you need more information I send it to you. Please for help. Thank you in advance, Zbyszek From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:55:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BA7316A46C for ; Thu, 5 Jul 2007 13:55:33 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from a.cs.okstate.edu (a.cs.okstate.edu [139.78.113.1]) by mx1.freebsd.org (Postfix) with ESMTP id 29C7513C44C for ; Thu, 5 Jul 2007 13:55:32 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from [172.18.0.137] (sky_cpfw-1.tulsatech.org [70.168.226.130]) by a.cs.okstate.edu (Postfix) with ESMTP id DFBC4A07A2; Thu, 5 Jul 2007 08:55:31 -0500 (CDT) Message-ID: <468CF842.1080803@cs.okstate.edu> Date: Thu, 05 Jul 2007 08:55:14 -0500 From: Reid Linnemann User-Agent: Thunderbird 2.0.0.0 (X11/20070615) MIME-Version: 1.0 To: Anton Galitch References: <54357.74.64.6.149.1183317914.squirrel@mail.el.net> <18056.11717.973968.984604@jerusalem.litteratus.org> <20070702011717.47687ee9@gumby.homeunix.com.> <200707011937.57100.freebsd@dfwlp.com> <7c80322b0707011754sabd25fcmf3701cc8a5622a2b@mail.gmail.com> <20070702081119.2a989ebc@turion.freeode.co.uk> <7c80322b0707021601n44dab561w48728d1c2d2d7118@mail.gmail.com> <7c80322b0707021607j64ef1ae4j6b0aacba978f6797@mail.gmail.com> In-Reply-To: <7c80322b0707021607j64ef1ae4j6b0aacba978f6797@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: 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, 05 Jul 2007 13:55:33 -0000 Written by Anton Galitch on 07/02/07 18:07>> > and no, with flash7 It doesnt even load the application, just the grey > square, thats the log from the console: > > > > %firefox > *** NSPlugin Wrapper *** WARNING: unhandled variable 11 in NPP_GetValue() > The program 'npviewer.bin' received an X Window System error. > This probably reflects a bug in the program. > The error was 'BadMatch (invalid parameter attributes)'. > (Details: serial 103 error_code 8 request_code 149 minor_code 3) > (Note to programmers: normally, X errors are reported asynchronously; > that is, you will receive the error a while after causing it. > To debug your program, run it with the --sync command line > option to change this behavior. You can then get a meaningful > backtrace from your debugger if you break on the gdk_x_error() function.) I get similar results from both flash9 and flash7 plugins, none of the links in the follow-up posts have helped thus far. The program 'npviewer.bin' received an X Window System error. This probably reflects a bug in the program. The error was 'BadMatch (invalid parameter attributes)'. (Details: serial 89 error_code 8 request_code 147 minor_code 3) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:55:52 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5260816A468 for ; Thu, 5 Jul 2007 13:55:52 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 066CE13C48A for ; Thu, 5 Jul 2007 13:55:51 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 16127 invoked from network); 5 Jul 2007 08:55:51 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 08:55:51 -0500 Date: Thu, 5 Jul 2007 23:55:48 +1000 From: Norberto Meijome To: Zhang Weiwu Message-ID: <20070705235548.684a770d@localhost> In-Reply-To: <1183638103.9913.28.camel@esmeralda> References: <1183638103.9913.28.camel@esmeralda> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: unknown: can't assign resources (irq) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 13:55:52 -0000 On Thu, 05 Jul 2007 20:21:42 +0800 Zhang Weiwu wrote: > Others on the forums suggested (in 2003) that I should disable > PNP feature in BIOS, which is impossible for me because my old IBM > Thinkpad don't offer such config option (the only config option had been > change system date/time and start-up-sequence) Hi Zhang, I'm curious - what model iof thinkpad is it? what you describe (as only being able to set the date and the startup sequence) seems to indicate you dont have admin access to the BIOS...but i could be wrong... _________________________ {Beto|Norberto|Numard} Meijome "Caminante no hay camino, se hace camino al andar" Antonio Machado I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:56:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F04416A46C for ; Thu, 5 Jul 2007 13:56:33 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id 1CDCC13C457 for ; Thu, 5 Jul 2007 13:56:33 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id B9A551C8008 for ; Thu, 5 Jul 2007 21:56:58 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28926-18 for ; Thu, 5 Jul 2007 21:56:57 +0800 (CST) Received: from [218.193.55.202] (unknown [125.77.224.188]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by bossdog.realss.com (Postfix) with ESMTP id EDEA31C8007 for ; Thu, 5 Jul 2007 21:56:56 +0800 (CST) From: Zhang Weiwu To: freebsd-questions@freebsd.org In-Reply-To: <447ipf3s3r.fsf@be-well.ilk.org> References: <1183637747.9913.21.camel@esmeralda> <447ipf3s3r.fsf@be-well.ilk.org> Content-Type: text/plain; charset=utf-8 Organization: Real Softservice Date: Thu, 05 Jul 2007 21:56:11 +0800 Message-Id: <1183643772.9913.59.camel@esmeralda> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Subject: Re: /boot/device.hints only work for some devices in FreeBSD 6.2? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 13:56:33 -0000 在 2007-07-05四的 09:19 -0400,Lowell Gilbert写é“: > Zhang Weiwu writes: > > > Where can I get knowledge of how device.hints works? e.g. maybe it can > > only work with device that is not managed by a PNP BIOS or maybe it only > > manage ISA devices but not PCI devices? > > It sounds like you haven't read "man device.hints". > That is a good place to start. Thanks for pointing out which TFM to read, I am feeling much more welcomed than if someone just drop me a message to RTFM. Are you referring to this section of device.hints(5)? They are most often used by ISA device drivers to specify where the driver will probe for the relevant devices, and what resources it will attempt to use. My uhci0 on pci is using IRQ 11, so does my ep0 which is on 16-bit PCMCIA slot. At first I thought this is impossible because I learnt ISA interrupt share is difficult or impossible; but later I think, maybe my ep0 is an "ISA" device (PC Card Type II slot is shrinked version of ISA slot) but the PC Card bridget is on PCI, thus it can share interrupts. The fact "cbb0" sits on PCI (in dmesg) also looks like a prove of this. Not sure if my understanding is correct. cbb0: mem 0x20822000-0x20822fff at device 2.0 on pci0 pccard0: <16-bit PCCard bus> on cbb0 Thanks again for comment:) From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 13:59:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0677C16A41F for ; Thu, 5 Jul 2007 13:59:16 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id ABD1913C4B0 for ; Thu, 5 Jul 2007 13:59:15 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id 70D161C8008; Thu, 5 Jul 2007 21:59:41 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28954-12; Thu, 5 Jul 2007 21:59:40 +0800 (CST) Received: from [218.193.55.202] (unknown [125.77.224.188]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by bossdog.realss.com (Postfix) with ESMTP id 716861C8007; Thu, 5 Jul 2007 21:59:38 +0800 (CST) From: Zhang Weiwu To: Norberto Meijome In-Reply-To: <20070705235548.684a770d@localhost> References: <1183638103.9913.28.camel@esmeralda> <20070705235548.684a770d@localhost> Content-Type: text/plain; charset=utf-8 Organization: Real Softservice Date: Thu, 05 Jul 2007 21:59:09 +0800 Message-Id: <1183643949.9913.64.camel@esmeralda> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Cc: freebsd-questions@freebsd.org Subject: Re: unknown: can't assign resources (irq) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 13:59:16 -0000 在 2007-07-05四的 23:55 +1000,Norberto Meijome写é“: > On Thu, 05 Jul 2007 20:21:42 +0800 > Zhang Weiwu wrote: > > > Others on the forums suggested (in 2003) that I should disable > > PNP feature in BIOS, which is impossible for me because my old IBM > > Thinkpad don't offer such config option (the only config option had been > > change system date/time and start-up-sequence) > > Hi Zhang, > I'm curious - what model iof thinkpad is it? Thank pad 380XD, press F1 to enter BIOS. I used it since many years ago first with 4.7, later with 5.1 and 6.2. Shamed to still be a newbie after so many years. I mostly use terminal on it for various tasks. > > what you describe (as only being able to set the date and the startup sequence) > seems to indicate you dont have admin access to the BIOS...but i could be > wrong... I guess I need some type of Windows 95 or MS DOS utility issued by IBM in order to do any change in BIOS settings. At least that's what I recall when I get it. Too many years passed and I am not sure now. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 14:56:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F347A16A469 for ; Thu, 5 Jul 2007 14:56:13 +0000 (UTC) (envelope-from gergely.czuczy@harmless.hu) Received: from marvin.harmless.hu (marvin.harmless.hu [195.56.55.204]) by mx1.freebsd.org (Postfix) with ESMTP id B265213C45D for ; Thu, 5 Jul 2007 14:56:13 +0000 (UTC) (envelope-from gergely.czuczy@harmless.hu) Received: from localhost (marvin-mail [192.168.0.2]) by marvin.harmless.hu (Postfix) with ESMTP id 20FAA7C0ACE for ; Thu, 5 Jul 2007 16:24:45 +0200 (CEST) X-Virus-Scanned: by amavisd-new-2.4.2 (20060627) (Debian) at harmless.hu Received: from marvin.harmless.hu ([192.168.0.2]) by localhost (marvin.harmless.hu [192.168.0.2]) (amavisd-new, port 10024) with ESMTP id fusPobcXPHYf for ; Thu, 5 Jul 2007 16:24:44 +0200 (CEST) Received: from marvin.harmless.hu (localhost [127.0.0.1]) by marvin.harmless.hu (Postfix) with ESMTP id B1E137C0AC5 for ; Thu, 5 Jul 2007 16:24:29 +0200 (CEST) Date: Thu, 5 Jul 2007 16:24:29 +0200 From: Gergely CZUCZY To: freebsd-questions@freebsd.org Message-ID: <20070705142429.GA91124@harmless.hu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=x-unknown; protocol="application/pgp-signature"; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline User-Agent: mutt-ng/devel-r804 (FreeBSD) Subject: ich9, ahci X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 14:56:14 -0000 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Good morning, I'd like to whether the ICH9 SATA chipset and the AHCI mode/or-whatever is supported under FreeBSD 6.2 or 6-STABLE. I've just got a new motherboard with this new intel P35 chipset, and it has some brand new hardware. I'm looking for the perspectives, how could i use = this board with freebsd. Is the ICH9 ATA controller supported, and AHCI? If not, are there patches against 6-STABLE, or when will it be supported? Please include me in the replies since I'm not subscribed to the list. Sincerely, Gergely Czuczy mailto: gergely.czuczy@harmless.hu --=20 Weenies test. Geniuses solve problems that arise. --ZGiS0Q5IWpPtfppv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) owFNU71vEzEUL61YLDG0AxNIT2KogFzaJKU0QVVJ069IDEWJxMDku3uXM/XZV9uX 0KKKlaED6ggIwcBYhBALYuIfyD8BqhgQ/wBC8JwqLYvle1+/j+d7fmlqYnJ6+OHT w5uHRy8vHE/NhDeywjnVCzJu+kIFlfn5SlCvVKoLQS1YTOq1ehJWl5L6QlSrbBz+ vdLSyqFyQXcvxwY4fOzmcsmFugNRyo1Ft1y4JFhi47o1YXNthRNaNUAoKRSe5bqG K5ugCdZVpGOheg3YLbTDOMiNUI6HEhnb1DqGTBtF+RJj7dkYpNhBcBoGKboUDdAB 7dZWHTrNbpN4iJx4AFfxKNPcarVpQIxz2gSDlDvsU4+wzBZ5rg3BQaFiCm0YxNXO GiyWq6ANLAadbnP13nrZg/YRHhXWQU/TYFA4oIkeO9TcxDAQLiUsYUcZoo4Stmu3 xlRKIy7CQcoJVWcIofERX0ymxQNusAzt2Qyk1jukExJ9qipHY3OMnOijLUGqBxDp QtIsKCzCMvOY7D8OCUkIbewp23NbRq6Q50ZLSTrPdJ/y8v6ssHYCSnumBn0jnTl3 UYoWeI/WS9LHfpS8OWS9IkgpvawQz2euMLYtkRM7oSJZxAiZv47IGMyloImWUjjS S5DUGtrIiJD2QDv1dVJYRxI6vsyg3KO1b6Lp0Q1a+0W0v8cyLqTTDeidhsvRKHyX zMwkWltOC8aCYLk6zx4gKo/pkGbCJn2Qc0RBS1ppbjS9scxbxWmvRlgss2crUxcn /FMf/ybTk52diTdH318Nhz+2738b7r69PfP0J7z4/WXi9fXP147WTt5f/vrx4ODP u6snx09+Hf4D =iA6z -----END PGP SIGNATURE----- --ZGiS0Q5IWpPtfppv-- From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 15:07:06 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAB7D16A46D for ; Thu, 5 Jul 2007 15:07:06 +0000 (UTC) (envelope-from greenant@fastmail.fm) Received: from averell.tiscali.it (averell.tiscali.it [213.205.33.55]) by mx1.freebsd.org (Postfix) with ESMTP id 8EA8913C465 for ; Thu, 5 Jul 2007 15:07:06 +0000 (UTC) (envelope-from greenant@fastmail.fm) Received: from [192.168.8.3] (84.223.96.100) by averell.tiscali.it (7.2.079) id 46811A7700166565 for questions@freebsd.org; Thu, 5 Jul 2007 17:06:56 +0200 Message-ID: <468D090F.5040404@fastmail.fm> Date: Thu, 05 Jul 2007 17:06:55 +0200 From: Alberto Rizzi User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: questions@freebsd.org References: <468CA7A9.2000000@fastmail.fm> <20070705081921.GF2472@darklight.org.ru> In-Reply-To: <20070705081921.GF2472@darklight.org.ru> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Re: Ghostscript and options window X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 15:07:06 -0000 Yuri Pankov ha scritto: > On Thu, Jul 05, 2007 at 10:11:21AM +0200, Alberto Rizzi wrote: >> When I build print/ghostscript-gpl on my 6.2-STABLE I have to choose >> which driver to build through the "GPL Ghostscript driver configuration" >> window. >> >> These settings aren't saved anywhere so, each time I upgrade >> ghostscript, I have to choose which drivers to install >> >> How can I set these options only once? > > You need to pass BATCH=yes to make. How you'll do it depends on ports > tools you use - here's example for portconf: > > print/ghostscript-*: BATCH=yes > > With BATCH=YES the build process will use default options without asking me first I want to choose which driver to install From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 15:20:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 370BD16A46D for ; Thu, 5 Jul 2007 15:20:53 +0000 (UTC) (envelope-from matt@atopia.net) Received: from mercury.atopia.net (mercury.atopia.net [72.36.237.250]) by mx1.freebsd.org (Postfix) with ESMTP id 1EEDA13C4EA for ; Thu, 5 Jul 2007 15:20:53 +0000 (UTC) (envelope-from matt@atopia.net) Received: by mercury.atopia.net (Postfix, from userid 1003) id AAD00B8A2; Thu, 5 Jul 2007 11:20:52 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mercury.atopia.net (Postfix) with ESMTP id A9DB2B898 for ; Thu, 5 Jul 2007 11:20:52 -0400 (EDT) Date: Thu, 5 Jul 2007 11:20:52 -0400 (EDT) From: Matt Juszczak To: freebsd-questions@freebsd.org Message-ID: <20070705111924.M52275@mercury.atopia.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Verizon VZAccess and FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 15:20:53 -0000 Hi all, I have a blackberry with Tethering support. The only thing keeping me from switching fully over to FreeBSD from Windows is that I use VZAccess Manager with my Blackberry to connect to the net from wherever I am. I'm just wondering if this is supported in FreeBSD at all (and if so, is the high speed EVDO also supported? I know some that have gotten it working as a modem at slower speeds). Thank you, Matt From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 15:27:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60BEE16A468 for ; Thu, 5 Jul 2007 15:27:10 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 1EC4213C457 for ; Thu, 5 Jul 2007 15:27:09 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: by wr-out-0506.google.com with SMTP id i23so305648wra for ; Thu, 05 Jul 2007 08:27:09 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=MsbqHad3kOaTPn35O/5uwP8eFaJcX3ZaIgLD9PwXTMjpOIi1w27sfneRfBLLKqRdQtD1PaH1Q0kmhuY8yk0BNcxBQa7+2ypWmQ9dMEbnD1xHp61MQoQe3LRhOHwhq4shjkqZ/ThIIOaREJNZ24iYrkyLJpe8CA4gwWEsITFzJ+k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=aW0xK38XApnEWAOYIZQ6RRSmg/3QL7tJq1MEMW0RnfKwbL87A96hSkF2tGJ3YWgMWSdlZvBLO7xhCJiI3BQpBGwd4aHwl8AVdhX0XTz1HoZw5owjqYew//oh/GOUwNCTNZBq3Bp54L58fQI+bj4Kw6tamRIdBdcBaGfnV9YStms= Received: by 10.143.39.16 with SMTP id r16mr598978wfj.1183649228661; Thu, 05 Jul 2007 08:27:08 -0700 (PDT) Received: by 10.142.89.5 with HTTP; Thu, 5 Jul 2007 08:27:08 -0700 (PDT) Message-ID: <3ea3ac8f0707050827s165d532cs8967f46a7d48d4f3@mail.gmail.com> Date: Thu, 5 Jul 2007 23:27:08 +0800 From: "Dinesh Pandian" To: freebsd-questions@freebsd.org In-Reply-To: <44fy433t4c.fsf@be-well.ilk.org> MIME-Version: 1.0 References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> <44fy433t4c.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 15:27:10 -0000 No firewall/NAT along the path. It's a direct connection. I'm pretty new to freebsd so I'm guessing that I did something wrong with network config or something. :) -- Dinesh On 7/5/07, Lowell Gilbert wrote: > > "Dinesh Pandian" writes: > > > Please help me out with a really annoying little problem that bugs me > > everytime I try to install applications from ports. > > > > When I try to run portupgrade -a or portmanager -u, > > when Make fetches the files from the servers, fetch > > normally hangs randomly sometime through the downloading > > of the distfile. The only solution I've thought about is aborting > > the upgrade procedure and issuing the same command again, > > hoping that fetch resumes where it left off. > > > > In bigger files, > 5MB, I'd have to repeat this process several > > times to download a single distfile. > > > > I've tried setting the FTP_PASSIVE_MODE env ON and OFF > > to no avail. > > > > I can't seem to find a problem with the internet connection > > as httpd and ftpd works perfectly fine! > > Is there a firewall in the way? NAT? > > Have you tried using fetch(1) from the command line, with increased > verbosity level? > -- Regards, Dinesh Pandian, SOLARA Networks. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 15:38:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7940216A41F for ; Thu, 5 Jul 2007 15:38:13 +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 5E19B13C448 for ; Thu, 5 Jul 2007 15:38:13 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l65FcBpT040624; Thu, 5 Jul 2007 11:38:12 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 11:37:46 -0400 User-Agent: KMail/1.9.6 References: <20070705111924.M52275@mercury.atopia.net> In-Reply-To: <20070705111924.M52275@mercury.atopia.net> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707051137.46585.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: Matt Juszczak Subject: Re: Verizon VZAccess and FreeBSD X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 15:38:13 -0000 On Thursday 05 July 2007 11:20:52 am Matt Juszczak wrote: > Hi all, > > I have a blackberry with Tethering support. The only thing keeping me > from switching fully over to FreeBSD from Windows is that I use VZAccess > Manager with my Blackberry to connect to the net from wherever I am. > > I'm just wondering if this is supported in FreeBSD at all (and if so, is > the high speed EVDO also supported? I know some that have gotten it > working as a modem at slower speeds). For my V620 card, the VZaccess manager is as unnecessary in FreeBSD as it is in Windows. Just create a ppp entry to dial #777 and it should connect (just like only using the Dial-up Networking item in Windows works just fine). JN From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 15:46:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A6B316A469 for ; Thu, 5 Jul 2007 15:46:55 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from mail.freeode.co.uk (mail.freeode.co.uk [87.127.24.125]) by mx1.freebsd.org (Postfix) with ESMTP id CEFF713C459 for ; Thu, 5 Jul 2007 15:46:54 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from turion.freeode.co.uk (turion.freeode.co.uk [10.10.10.7]) by mail.freeode.co.uk (8.13.6/8.13.6) with ESMTP id l65FkqR2012150 for ; Thu, 5 Jul 2007 16:46:53 +0100 (BST) (envelope-from freebsd001@freeode.co.uk) Date: Thu, 5 Jul 2007 16:46:52 +0100 From: John Murphy To: freebsd-questions@freebsd.org Message-ID: <20070705164652.453185d8@turion.freeode.co.uk> In-Reply-To: References: <20070704151326.E91978@fledge.watson.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 15:46:55 -0000 Wasn't there, once upon a time, an error message in FreeBSD which reported 'This doesn't look like Kansas, Toto'? Seem to recall it occurring when I deleted the directory I was 'in'. I may have imagined it though! -- John. From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 16:16:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B6DA16A469; Thu, 5 Jul 2007 16:16:26 +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 4B7A313C48C; Thu, 5 Jul 2007 16:16:26 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l65GGJpT057152; Thu, 5 Jul 2007 12:16:20 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 12:15:53 -0400 User-Agent: KMail/1.9.6 References: <4986.209.145.181.6.1183488849.squirrel@hive.cec.wustl.edu> <20070703195222.GB1289@dan.emsphone.com> <200707031609.37422.lists@jnielsen.net> In-Reply-To: <200707031609.37422.lists@jnielsen.net> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707051215.54217.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: gnome@freebsd.org, epf1@cec.wustl.edu, Dan Nelson Subject: Re: can't build /graphics/poppler-qt after recent cvsup [FIXED] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 16:16:26 -0000 On Tuesday 03 July 2007 04:09:37 pm John Nielsen wrote: > [cc-ing gnome@ as port maintainer] > > On Tuesday 03 July 2007 03:52:22 pm Dan Nelson wrote: > > In the last episode (Jul 03), epf1@cec.wustl.edu said: > > > I'm having an odd proble getting poppler-qt to build after my latest > > > cvsup. > > > > > > I use portmanager to update my ports and when I ran it today I got the > > > following failure as the poppler-qt port was doing it's configure: > > > > > > ---Snip------ > > > checking for Qt headers... /usr/local/include > > > checking for Qt libraries... /usr/local/lib > > > test: xyes: unexpected operator > > > configure: error: Qt development libraries not found > > > > It looks like QT's autoconf test is buggy. > > work/poppler-0.5.4/configure script, line 25757: > > > > if test "x$have_qt4" == "xyes"; then > > > > "==" is not a valid comparison operator for the test command. It must > > be "=". > > I was having the same problem as the OP. After Dan's post I did a "make > patch", then modified the configure script replacing two instances of == > with = on these two lines: > > 25851:if test "x$have_qt" == "xyes"; then > 26033:if test "x$have_qt" == "xyes"; then > > After that I was able to make and install the port. > > gnome@ folks, should I submit a PR or will you guys just take this upstream > directly? Thanks ahze for commiting a fix for this. poppler-qt-0.5.9_2 now builds and installs without any modifications on my system. JN From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 16:18:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3BB716A46B for ; Thu, 5 Jul 2007 16:18:17 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id 6A56B13C4AD for ; Thu, 5 Jul 2007 16:18:17 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l65GIAei052458; Thu, 5 Jul 2007 09:18:13 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Chad Perrin" , "FreeBSD Questions" Date: Thu, 5 Jul 2007 09:19:00 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <20070705073857.GD46581@demeter.hydra> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Thu, 05 Jul 2007 09:18:13 -0700 (PDT) Cc: Subject: RE: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 16:18:17 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Chad Perrin > Sent: Thursday, July 05, 2007 12:39 AM > To: FreeBSD Questions > Subject: Re: The worst error message in history belongs to... BIND9! > > > On Wed, Jul 04, 2007 at 08:14:44PM -0700, Garrett Cooper wrote: > > perryh@pluto.rain.com wrote: > > >>Except that bash requires all the icky GNU utilities to build so you > > >>have to GNUify your system. > > > > > >And perl doesn't? It was GPL last I knew. > > > > The entirety of Perl falls under the GPL and Artistic license at this > > time. Read the perl-porters archives for more debate on Perl licensing. > > More to the point, Perl is dual-licensed -- redistributable under the > terms of either the GPL or the Artistic License, at your discretion. Not correct. The Artistic license is less restrictive than the GPL so GPL advocates can take a Perl install and call it GPLd perl - but the Perl FAQ makes it very clear the intent of the Perl maintainers is not to use GPL. As they said, "there is no GNU Perl" I challenge you to point to one, single Perl scrap of code, that is ONLY gpled. As far as I know, anyone submitting patches or modifications to the Perl maintainers has been required to license their patches under Artistic for them to be included. Of course, if people put Perl extensions under GPL the Perl maintainers cannot help that. I do not think, however, that any extensions that are included with the default install are GPL-only. Ted From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 18:13:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D578416A421 for ; Thu, 5 Jul 2007 18:13:23 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.238]) by mx1.freebsd.org (Postfix) with ESMTP id 930CC13C4C3 for ; Thu, 5 Jul 2007 18:13:23 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: by wr-out-0506.google.com with SMTP id i23so349370wra for ; Thu, 05 Jul 2007 11:13:23 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=ofaZMUjLCE6m6HRtrYV9/YEfz8DUF6IVhOr3JvdQY7PonGhVuw/ugbLNqtI8tqYkikJVwewa++2rYvjHifaF8FPiWPnzheafYgfv5jS4tnmDodu3n5SDYzdZRVRieSuwsWTYCBklUOxmk4z8ZkasZ0pm9DJdG7GeUAoKIgxK5Gk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=TRn80+VkTo5CiSz7yL0nV1A3sTcTtjFVl9Mh7wENrKoJcekzgaGKuNm6Nagwac6JPXvmoLZXZ54kTWYJHZglNCoEqHjV7F0+iE6upZAcsbt9nmSsrHa029Z1Xp0WqXHMpwR6ITbgBZ1XTB3tkhZk/j3kkWsx57IqId61euPcCtg= Received: by 10.142.191.2 with SMTP id o2mr598732wff.1183659202228; Thu, 05 Jul 2007 11:13:22 -0700 (PDT) Received: by 10.142.80.2 with HTTP; Thu, 5 Jul 2007 11:13:22 -0700 (PDT) Message-ID: <72cf361e0707051113v366e8b36ufd68c1d6aba9abc1@mail.gmail.com> Date: Thu, 5 Jul 2007 19:13:22 +0100 From: "Martin Hepworth" To: "Tek Bahadur Limbu" In-Reply-To: <20070705192251.3ba0abb3.teklimbu@wlink.com.np> MIME-Version: 1.0 References: <20070705192251.3ba0abb3.teklimbu@wlink.com.np> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: bge NIC not supporting 1000baseTX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 18:13:24 -0000 HI is the other end auto-negotiating properly? What happens if you force 1000 full at BOTH ends? -- martin On 7/5/07, Tek Bahadur Limbu wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi all, > > I have a problem with my bge0 (BCM5750A1 NetXtreme) NIC card which is > integrated in my Dell 600SC machine. This machine is running on > FreeBSD-6.2 (i386). > > For some reasons, the bge0 NIC interface does not seem to support > 1000baseTX settings. > > When the NIC card is set at either 10/100 baseTX, the bge0 interface > shows an active state. However, when I type the following command: > > ifconfig bge0 media 1000baseTX > > the status of the bge0 NIC card shows: no carrier > > Does that mean that this bge0 NIC card does not support speeds of > 1000baseTX or do I have to tweak some kernel or sysctl settings? > > Thanking you.... > > > - -- > > > With best regards and good wishes, > > Yours sincerely, > > Tek Bahadur Limbu > > (TAG/TDG Group) > Jwl Systems Department > > Worldlink Communications Pvt. Ltd. > > Jawalakhel, Nepal > > http://www.wlink.com.np > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.2.2 (FreeBSD) > > iD8DBQFGjPQvVrOl+eVhOvYRAtEsAKCni1JJ/mBLLOnSroIajz6vO+gwTACdE22N > W2fd6dj7OunY/1r5PaZkLMs= > =HGVA > -----END PGP SIGNATURE----- > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to " > freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 18:16:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A306416A421 for ; Thu, 5 Jul 2007 18:16:45 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.freebsd.org (Postfix) with ESMTP id 436EA13C455 for ; Thu, 5 Jul 2007 18:16:45 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from haiti.nepinc.com (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id l65IGib5068426 for ; Thu, 5 Jul 2007 14:16:45 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <468D358A.5090803@voidmain.net> Date: Thu, 05 Jul 2007 14:16:42 -0400 From: Tom Grove User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: OSS in 6.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 18:16:45 -0000 Has anyone successfully used the OSS in 6.2? I have an Intel HDA card that I would like to be able to record on but when I use the OSS program and modules I get nothing but garbled tones coming from the speakers. The osstest utility also reports errors of timeouts. -Tom From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 18:42:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2B9116A400 for ; Thu, 5 Jul 2007 18:42:38 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id BD9D213C457 for ; Thu, 5 Jul 2007 18:42:38 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 56988 invoked from network); 5 Jul 2007 18:37:46 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 5 Jul 2007 18:37:46 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l65IgaxX050079 for ; Thu, 5 Jul 2007 12:42:36 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l65IgaD3050078 for freebsd-questions@freebsd.org; Thu, 5 Jul 2007 12:42:36 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Thu, 5 Jul 2007 12:42:36 -0600 From: Chad Perrin To: FreeBSD Questions Message-ID: <20070705184236.GC49973@demeter.hydra> Mail-Followup-To: FreeBSD Questions References: <20070705073857.GD46581@demeter.hydra> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Subject: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 18:42:39 -0000 On Thu, Jul 05, 2007 at 09:19:00AM -0700, Ted Mittelstaedt wrote: > > -----Original Message----- > > From: owner-freebsd-questions@freebsd.org > > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Chad Perrin > > Sent: Thursday, July 05, 2007 12:39 AM > > To: FreeBSD Questions > > Subject: Re: The worst error message in history belongs to... BIND9! > > > > More to the point, Perl is dual-licensed -- redistributable under the > > terms of either the GPL or the Artistic License, at your discretion. > > Not correct. The Artistic license is less restrictive than the GPL so > GPL advocates can take a Perl install and call it GPLd perl - but the > Perl FAQ makes it very clear the intent of the Perl maintainers is not > to use GPL. As they said, "there is no GNU Perl" > > I challenge you to point to one, single Perl scrap of code, that is ONLY > gpled. Nothing I said should in any way be construed to mean that Perl, or any part of it, is in any way solely GPLed. I have no idea where you would have gotten such an impression. See above, where I point out that Perl is dual-licensed -- *not* solely GPLed. Also see the rest of what I said in the earlier email, in text you cut out of the quote, indicating that for my purposes Perl is installed under terms of the Perl Artistic License (and not the GPL). Nothing you have said suggests at all that my statement was incorrect, except the two words "not correct". -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Dr. Ron Paul: "Liberty has meaning only if we still believe in it when terrible things happen and a false government security blanket beckons." From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 19:05:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC1DE16A41F for ; Thu, 5 Jul 2007 19:05:11 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by mx1.freebsd.org (Postfix) with ESMTP id 78AF813C4C1 for ; Thu, 5 Jul 2007 19:05:11 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.1/8.13.8) with ESMTP id l65J4PT2003569 for ; Thu, 5 Jul 2007 12:04:25 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.1/8.13.8/Submit) id l65J4PXx003568 for freebsd-questions@freebsd.org; Thu, 5 Jul 2007 12:04:25 -0700 (PDT) (envelope-from sgk) Date: Thu, 5 Jul 2007 12:04:25 -0700 From: Steve Kargl To: freebsd-questions@freebsd.org Message-ID: <20070705190425.GA6990@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Subject: anoncvs server dead? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 19:05:11 -0000 It seems freebsdanoncvs@anoncvs.FreeBSD.org has died. Who do I need to contact to restart/fix the problem? $ cvs update cvs server: cannot read /home/ncvs/CVSROOT/config: Device not configured cvs update: cannot read /home/ncvs/CVSROOT/cvswrappers: Device not configured cvs update: Updating . cvs update: cannot open directory /home/ncvs/src: Device not configured cvs update: skipping directory -- Steve From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 18:44:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2789016A468 for ; Thu, 5 Jul 2007 18:44:07 +0000 (UTC) (envelope-from jnatola@familycareintl.org) Received: from mail.familycareintl.org (mail.familycareintl.org [68.167.21.154]) by mx1.freebsd.org (Postfix) with ESMTP id 0EDA013C4C3 for ; Thu, 5 Jul 2007 18:44:05 +0000 (UTC) (envelope-from jnatola@familycareintl.org) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Date: Thu, 5 Jul 2007 14:44:03 -0400 Message-ID: <3A85D7EF44E1C744BF6434691F5659E9702CE7@www.fcimail.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Upgrade Failure- Thread-Index: Ace/NHWn1Fb13MIUTky5ht1n8IHR0w== From: "Jean-Paul Natola" To: X-Mailman-Approved-At: Thu, 05 Jul 2007 19:10:09 +0000 Subject: Upgrade Failure- X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 18:44:07 -0000 Hi all, I'm once again trying to upgrade from 5.5 to 6.2 So in sysinstall I went to options - changed the release to 6.2-RELEASE = Started the upgrade and I keep getting this error =81Write failure on transfer! (wrote -1 bytes of 1425408 bytes) =81 = =86=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80= =80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80=80= =80=80=80=80=80(100%)=80 I've tried about 12 times using different FTP servers- What am I missing ? Jean-Paul=20 From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 19:32:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36BDB16A474 for ; Thu, 5 Jul 2007 19:32:39 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.freebsd.org (Postfix) with ESMTP id C019B13C4BC for ; Thu, 5 Jul 2007 19:32:38 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from haiti.nepinc.com (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id l65JWTk8069117; Thu, 5 Jul 2007 15:32:29 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <468D474A.5070607@voidmain.net> Date: Thu, 05 Jul 2007 15:32:26 -0400 From: Tom Grove User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: Jean-Paul Natola References: <3A85D7EF44E1C744BF6434691F5659E9702CE7@www.fcimail.org> In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E9702CE7@www.fcimail.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: Upgrade Failure- X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 19:32:39 -0000 Jean-Paul Natola wrote: > Hi all, > > I'm once again trying to upgrade from 5.5 to 6.2 > > So in sysinstall I went to options - changed the release to 6.2-RELEASE > > Started the upgrade and I keep getting this error > > Write failure on transfer! (wrote -1 bytes of 1425408 bytes) > †€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€(100%)€ > > I've tried about 12 times using different FTP servers- > > What am I missing ? > > > > > > > > > > Jean-Paul > > _______________________________________________ > 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" > > Have you tried updating via cvs and rebuilding world? That may work out for you a bit better. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 19:40:02 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4103116A46C for ; Thu, 5 Jul 2007 19:40:02 +0000 (UTC) (envelope-from teklimbu@wlink.com.np) Received: from smtp5.wlink.com.np (smtp5.wlink.com.np [202.79.32.52]) by mx1.freebsd.org (Postfix) with SMTP id E994A13C4C3 for ; Thu, 5 Jul 2007 19:39:59 +0000 (UTC) (envelope-from teklimbu@wlink.com.np) Received: (qmail 47558 invoked from network); 5 Jul 2007 19:39:56 -0000 Received: from unknown (HELO smtp1.wlink.com.np) (202.79.32.76) by 0 with SMTP; 5 Jul 2007 19:39:56 -0000 Received: (qmail 48680 invoked by uid 98); 5 Jul 2007 19:39:56 -0000 Received: from 202.166.207.247 by smtp1.wlink.com.np (envelope-from , uid 1009) with qmail-scanner-1.25 (clamdscan: 0.88.4/2205. Clear:RC:1(202.166.207.247):. Processed in 0.094797 secs); 05 Jul 2007 19:39:56 -0000 X-Qmail-Scanner-Mail-From: teklimbu@wlink.com.np via smtp1.wlink.com.np X-Qmail-Scanner: 1.25 (Clear:RC:1(202.166.207.247):. Processed in 0.094797 secs) Received: from [202.166.207.247] (HELO [202.166.207.247]) by smtp1.wlink.com.np (qmail-smtpd) with SMTP; 05 Jul 2007 19:39:53 -0000 (Fri, 06 Jul 2007 01:24:53 +0545) Message-ID: <468D4903.1040807@wlink.com.np> Date: Fri, 06 Jul 2007 01:24:47 +0545 From: Tek Bahadur Limbu User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Martin Hepworth References: <20070705192251.3ba0abb3.teklimbu@wlink.com.np> <72cf361e0707051113v366e8b36ufd68c1d6aba9abc1@mail.gmail.com> In-Reply-To: <72cf361e0707051113v366e8b36ufd68c1d6aba9abc1@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Check-By: smtp1.wlink.com.np Spam: No ; 3.5 / 7.0 X-Spam-Status-WL: No, hits=3.5 required=7.0 Cc: freebsd-questions@freebsd.org Subject: Re: bge NIC not supporting 1000baseTX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 19:40:02 -0000 Martin Hepworth wrote: > HI > > is the other end auto-negotiating properly? What happens if you force 1000 > full at BOTH ends? > Hi Martin, Actually both the machines are identical. I had connected both NIC cards back to back using a cat6 cross cable. One of the machines is then connected to a RAID Array. If I force 1000baseTX on both NIC cards, their connection status shows: no carrier. However, if I force 100baseTX on both NIC cards, then their connection status shows: active What could be the problem here? The bge0 NIC cards not supporting 1000baseTX settings or am I missing something? Both machines are running on FreeBSD-6.2. Thanking you... > -- > martin > > On 7/5/07, Tek Bahadur Limbu wrote: >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Hi all, >> >> I have a problem with my bge0 (BCM5750A1 NetXtreme) NIC card which is >> integrated in my Dell 600SC machine. This machine is running on >> FreeBSD-6.2 (i386). >> >> For some reasons, the bge0 NIC interface does not seem to support >> 1000baseTX settings. >> >> When the NIC card is set at either 10/100 baseTX, the bge0 interface >> shows an active state. However, when I type the following command: >> >> ifconfig bge0 media 1000baseTX >> >> the status of the bge0 NIC card shows: no carrier >> >> Does that mean that this bge0 NIC card does not support speeds of >> 1000baseTX or do I have to tweak some kernel or sysctl settings? >> >> Thanking you.... >> >> >> - -- >> >> >> With best regards and good wishes, >> >> Yours sincerely, >> >> Tek Bahadur Limbu >> >> (TAG/TDG Group) >> Jwl Systems Department >> >> Worldlink Communications Pvt. Ltd. >> >> Jawalakhel, Nepal >> >> http://www.wlink.com.np >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.2.2 (FreeBSD) >> >> iD8DBQFGjPQvVrOl+eVhOvYRAtEsAKCni1JJ/mBLLOnSroIajz6vO+gwTACdE22N >> W2fd6dj7OunY/1r5PaZkLMs= >> =HGVA >> -----END PGP SIGNATURE----- >> _______________________________________________ >> freebsd-questions@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> To unsubscribe, send any mail to " >> freebsd-questions-unsubscribe@freebsd.org" >> > > > ------------------------------------------------------------------------ > > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.476 / Virus Database: 269.9.14/882 - Release Date: 6/30/2007 3:10 PM -- With best regards and good wishes, Yours sincerely, Tek Bahadur Limbu (TAG/TDG Group) Jwl Systems Department Worldlink Communications Pvt. Ltd. Jawalakhel, Nepal http://www.wlink.com.np From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 19:47:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC82516A421 for ; Thu, 5 Jul 2007 19:47:14 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.freebsd.org (Postfix) with ESMTP id 646AD13C448 for ; Thu, 5 Jul 2007 19:47:13 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so633357uge for ; Thu, 05 Jul 2007 12:47:12 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=PXPCycmDKA8krXQR297miXvkgyXDgSAUQ8chMg7onxhbF9XfngyNKzqZlbIH9fNTW3gpkfAyQv+qUVo1UeiYCnW30wAwFMWhImZtfk0XQX9LmUkeKqv35pzREA8vN0s1LONjlnPFtfBhWHXXkDI8jt9D9Wcz18EFccNp9jBvi0w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=MrZxp49u03DMWMoV0wFjt8xrfRq7jot8nP1jrZEU49zq4/5F73CktV6AS3VIvB7MR+rADkl05XYMdFoVwKjlaDbLXsqQhFa5dZwritqBqxrZO0fK9M91iZCe4ATF/o4YGPMoopWQ/C7jlHiQMvYbEMu5lm7AxfWu1JXmHGfAXkU= Received: by 10.67.15.17 with SMTP id s17mr2150571ugi.1183664832570; Thu, 05 Jul 2007 12:47:12 -0700 (PDT) Received: by 10.66.254.4 with HTTP; Thu, 5 Jul 2007 12:47:12 -0700 (PDT) Message-ID: <539c60b90707051247q760d3fe6n3563b1eb4670379f@mail.gmail.com> Date: Thu, 5 Jul 2007 12:47:12 -0700 From: "Steve Franks" Sender: bahamasfranks@gmail.com To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 96eb7066244dd81a Subject: installing 7 - snapshot iso gives "cannot parse info file for XYZ distribution" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 19:47:14 -0000 I'd like a functional 7.0 on my laptop, mainly since I have no mission-critical data there (all in cvs), and the acpi support for newer laptops in 6.2 is crap (tried. no fun.). I can't seem to get a usable system with the snapsot iso, however. Lots of stuff gives errors. I burned 2 cd's (one cd-r, other cd-rw, different brands) on 2 different computers, so I presume it's not a burner issue, and I've never had a problem with the drive on the laptop. My current issue is needing the src dist to build the ndis wrapper for may crappy wlan. I'd be happy enough to get src from the ftp site, but so far as I can tell, the only thing for 7.0 is the snapshot, no 7.0/src folder. What's the 'right' way to do this? I don't see much on it in the handbook, but my experience with the handbook is I'm usually looking in the wrong place, so I'm all ears for someone to set me straight. Steve From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 19:51:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6823116A468 for ; Thu, 5 Jul 2007 19:51:54 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (bewilderbeast.blackhelicopters.org [198.22.63.8]) by mx1.freebsd.org (Postfix) with ESMTP id 2B1DB13C448 for ; Thu, 5 Jul 2007 19:51:54 +0000 (UTC) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: from bewilderbeast.blackhelicopters.org (localhost [127.0.0.1]) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8) with ESMTP id l65JbDW7085312; Thu, 5 Jul 2007 15:37:13 -0400 (EDT) (envelope-from mwlucas@bewilderbeast.blackhelicopters.org) Received: (from mwlucas@localhost) by bewilderbeast.blackhelicopters.org (8.14.1/8.13.8/Submit) id l65JbAjZ085311; Thu, 5 Jul 2007 15:37:10 -0400 (EDT) (envelope-from mwlucas) Date: Thu, 5 Jul 2007 15:37:10 -0400 From: "Michael W. Lucas" To: John Nielsen Message-ID: <20070705193710.GA85299@bewilderbeast.blackhelicopters.org> References: <20070703183516.GA70961@bewilderbeast.blackhelicopters.org> <200707031510.05713.lists@jnielsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707031510.05713.lists@jnielsen.net> User-Agent: Mutt/1.4.2.2i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (bewilderbeast.blackhelicopters.org [127.0.0.1]); Thu, 05 Jul 2007 15:37:13 -0400 (EDT) Cc: freebsd-questions@freebsd.org Subject: Re: if_lagg(4) and rc.conf X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2007 19:51:54 -0000 On Tue, Jul 03, 2007 at 03:10:05PM -0400, John Nielsen wrote: > On Tuesday 03 July 2007 02:35:16 pm Michael W. Lucas wrote: > > I'm trying to configure a lagg(4) interface out of rc.conf. FreeBSD > > doesn't want to initialize the interface at boot. I'm obviously > > missing some little thing. I'm successfully loading if_lagg into the > > kernel, so that's not the problem. > > > > I can configure the interface at the command line if I do a "ifconfig > > lagg0 create" and then enter the configuration, but there doesn't seem > > to be a rc.conf flag to tell the system to create an interface? > > > > Here's my rc.conf for these interfaces: > > > > ifconfig_em3="up" > > ifconfig_em7="up" > > ifconfig_lagg0="laggproto lacp laggport em3 laggport em7 10.184.1.19 > > netmask 0xffff0000" > > I haven't played with if_lagg yet, but you should be able to use the > cloned_interfaces knob in /etc/rc.conf to create the interface. e.g.: > > cloned_interfaces="lagg0" > ifconfig_em3="up" > ifconfig_em7="up" > ifconfig_lagg0="laggproto lacp laggport em3 laggport em7 10.184.1.19 \ > netmask 0xffff0000" > > if_lagg(4) mentions this briefly (at the end before the examples) This last bit, of course, was the key to the whole thing. I don't know how many times I looked at the man page without seeing that. Thanks for pointing it out. ==ml -- Michael W. Lucas mwlucas@BlackHelicopters.org, mwlucas@FreeBSD.org http://www.BlackHelicopters.org/~mwlucas/ Coming Soon: "Absolute FreeBSD" -- http://www.AbsoluteFreeBSD.com On 5/4/2007, the TSA kept 3 pairs of my soiled undies "for security reasons." From owner-freebsd-questions@FreeBSD.ORG Thu Jul 5 20:34:46 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 760BB16A469 for ; Thu, 5 Jul 2007 20:34:46 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.232]) by mx1.freebsd.org (Postfix) with ESMTP id 25E7213C447 for ; Thu, 5 Jul 2007 20:34:45 +0000 (UTC) (envelope-from maxsec@gmail.com) Received: by wr-out-0506.google.com with SMTP id i23so1610wra for ; Thu, 05 Jul 2007 13:34:44 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=lInCoN+H09VIpKORAMr5gnDjRcWQo1UbDU3/rLxv+6J+G9eIiAzQGvfnUI42qJ3Iw9KNXLQ2xCW5aGibMOJhgLQ0vam7yup7J6bxjdOrkWZ6tGFJ1roVk7AMM7/KdkxEcHyDd+26qQb7TYO9XoDF5DirEgxR1/K0xyyjMOFMdWY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=CEqPdDEIF1/sphMAqeZyGsLPlIVLPCW7+Ml2cwyqWkqfWB7uxgJDnKe8/9gDFMdLB/DVb4HNM7wM0URXqbWCX83pOnIY3yF/q+09XuKeR2oH5gVLxUVwJwryNXDV9V46vp/kPO8bRLEODSDd82pBfL37DY5C3700F7c9SfM4zQI= Received: by 10.143.11.13 with SMTP id o13mr145wfi.1183667683148; Thu, 05 Jul 2007 13:34:43 -0700 (PDT) Received: by 10.142.80.2 with HTTP; Thu, 5 Jul 2007 13:34:43 -0700 (PDT) Message-ID: <72cf361e0707051334g52c7502cr2f4cba0dd572f38@mail.gmail.com> Date: Thu, 5 Jul 2007 21:34:43 +0100 From: "Martin Hepworth" To: "Tek Bahadur Limbu" In-Reply-To: <468D4903.1040807@wlink.com.np> MIME-Version: 1.0 References: <20070705192251.3ba0abb3.teklimbu@wlink.com.np> <72cf361e0707051113v366e8b36ufd68c1d6aba9abc1@mail.gmail.com> <468D4903.1040807@wlink.com.np> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: bge NIC not supporting 1000baseTX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 05 Jul 2007 20:34:46 -0000 Doing a quick google on "BCM5750A1 freebsd" looks like theres a few issues with this driver and certain chipsets.. -- martin On 7/5/07, Tek Bahadur Limbu wrote: > > Martin Hepworth wrote: > > HI > > > > is the other end auto-negotiating properly? What happens if you force > 1000 > > full at BOTH ends? > > > > Hi Martin, > > Actually both the machines are identical. I had connected both NIC cards > back to back using a cat6 cross cable. One of the machines is then > connected to a RAID Array. > > If I force 1000baseTX on both NIC cards, their connection status shows: > no carrier. > > However, if I force 100baseTX on both NIC cards, then their connection > status shows: active > > What could be the problem here? The bge0 NIC cards not supporting > 1000baseTX settings or am I missing something? > > Both machines are running on FreeBSD-6.2. > > Thanking you... > > > > -- > > martin > > > > On 7/5/07, Tek Bahadur Limbu < teklimbu@wlink.com.np> wrote: > >> > >> -----BEGIN PGP SIGNED MESSAGE----- > >> Hash: SHA1 > >> > >> Hi all, > >> > >> I have a problem with my bge0 (BCM5750A1 NetXtreme) NIC card which is > >> integrated in my Dell 600SC machine. This machine is running on > >> FreeBSD-6.2 (i386). > >> > >> For some reasons, the bge0 NIC interface does not seem to support > >> 1000baseTX settings. > >> > >> When the NIC card is set at either 10/100 baseTX, the bge0 interface > >> shows an active state. However, when I type the following command: > >> > >> ifconfig bge0 media 1000baseTX > >> > >> the status of the bge0 NIC card shows: no carrier > >> > >> Does that mean that this bge0 NIC card does not support speeds of > >> 1000baseTX or do I have to tweak some kernel or sysctl settings? > >> > >> Thanking you.... > >> > >> > >> - -- > >> > >> > >> With best regards and good wishes, > >> > >> Yours sincerely, > >> > >> Tek Bahadur Limbu > >> > >> (TAG/TDG Group) > >> Jwl Systems Department > >> > >> Worldlink Communications Pvt. Ltd. > >> > >> Jawalakhel, Nepal > >> > >> http://www.wlink.com.np > >> -----BEGIN PGP SIGNATURE----- > >> Version: GnuPG v1.4.2.2 (FreeBSD) > >> > >> iD8DBQFGjPQvVrOl+eVhOvYRAtEsAKCni1JJ/mBLLOnSroIajz6vO+gwTACdE22N > >> W2fd6dj7OunY/1r5PaZkLMs= > >> =HGVA > >> -----END PGP SIGNATURE----- > >> _______________________________________________ > >> freebsd-questions@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-questions > >> To unsubscribe, send any mail to " > >> freebsd-questions-unsubscribe@freebsd.org" > >> > > > > > > ------------------------------------------------------------------------ > > > > No virus found in this incoming message. > > Checked by AVG Free Edition. > > Version: 7.5.476 / Virus Database: 269.9.14/882 - Release Date: > 6/30/2007 3:10 PM > > > -- > > With best regards and good wishes, > > Yours sincerely, > > Tek Bahadur Limbu > > (TAG/TDG Group) > Jwl Systems Department > > Worldlink Communications Pvt. Ltd. > > Jawalakhel, Nepal > > http://www.wlink.com.np > From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 00:12:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E669916A46F for ; Fri, 6 Jul 2007 00:12:08 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA1513C4BB for ; Fri, 6 Jul 2007 00:12:08 +0000 (UTC) (envelope-from bahamasfranks@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so680467uge for ; Thu, 05 Jul 2007 17:12:07 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=XVUlFwZtzEp04BFEBwaKeObiorlaDuo771m+YyfswfqejxhuU1vdawE7SYS7RdVDHOPfVhN/OrG8yQlG9v+yj+Hr0t04cs238tM5Wjcu1PxCm9kzo1QI9ioki6qZitvJLePk8ph5zKi/TrCp/3aCViFvziGnijZ31sKgqaVd0Lg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=BSiXkLS+3XHk5f7EjKnrlu+D40lazqoI7x/B+GYCJZwiQ9f93s3Y4VAKrSrY5aBvhNvVRBtKMZqn1qOSbT8fmQvwnlrwp7j1ZjSi7jNvfGMl5RvqvWarbDG06dSUul6IeECLcEdPcTEL+YugF/G02dxz5FL3yrvS8+99r8ZhpVc= Received: by 10.66.237.14 with SMTP id k14mr2293075ugh.1183680127254; Thu, 05 Jul 2007 17:02:07 -0700 (PDT) Received: by 10.66.254.4 with HTTP; Thu, 5 Jul 2007 17:02:07 -0700 (PDT) Message-ID: <539c60b90707051702h15605252w988427f5111300ce@mail.gmail.com> Date: Thu, 5 Jul 2007 17:02:07 -0700 From: "Steve Franks" Sender: bahamasfranks@gmail.com To: "User Questions" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: a3c75fae04a2b761 Subject: tablet pc - anyone tried it? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 00:12:09 -0000 Anyone have luck? Does the tablet usually show up as a PS/2 mouse, or is that completely wishful thinking? Steve From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 01:10:00 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3079716A421 for ; Fri, 6 Jul 2007 01:10:00 +0000 (UTC) (envelope-from dmw@unete.cl) Received: from mail01.ifxnetworks.com (mail01.ifxnetworks.com [190.61.128.11]) by mx1.freebsd.org (Postfix) with ESMTP id C4C9413C44B for ; Fri, 6 Jul 2007 01:09:59 +0000 (UTC) (envelope-from dmw@unete.cl) Received: (qmail 23335 invoked from network); 6 Jul 2007 01:09:58 -0000 X-Spam-DCC: sgs_public_dcc_server: mail01.ifxnetworks.com 1199; Body=1 Fuz1=1 Fuz2=1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on mail01.ifxnetworks.com X-Spam-Level: X-Spam-Status: No, score=0.1 required=7.0 tests=RDNS_NONE autolearn=disabled version=3.2.1 Received: from unknown (HELO quake) (dmw@unete.cl@[200.73.29.94]) (envelope-sender ) by mail01.ifxnetworks.com (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 6 Jul 2007 01:09:58 -0000 From: Daniel Molina Wegener Organization: DMW To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 21:09:22 -0400 User-Agent: KMail/1.9.6 References: <468D358A.5090803@voidmain.net> In-Reply-To: <468D358A.5090803@voidmain.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707052109.23061.dmw@unete.cl> Cc: Tom Grove Subject: Re: OSS in 6.2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dmw@unete.cl List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 01:10:00 -0000 On Thursday 05 July 2007 14:16:42 Tom Grove wrote: > Has anyone successfully used the OSS in 6.2? I have an Intel > HDA card that I would like to be able to record on but when I > use the OSS program and modules I get nothing but garbled > tones coming from the speakers. The osstest utility also > reports errors of timeouts. > > -Tom > [SNIP] > Hello, I have an Intel HDA card too, I'm using 6.2-STABLE, where the driver of 7.0-CURRENT from where has been merged into 6.2. It works fine... try updating the source tree with csup or cvsup and recompile the kernel and world. The driver is snd_hda, with snd_hda_load="YES" in boot loader may work. OSS sometimes isn't a good options, I think that HDA matches the case... Regards, -- .O. | Daniel Molina Wegener | C/C++ Developer ..O | dmw [at] unete [dot] cl | FOSS Coding Adict OOO | BSD & Linux User | Standards Rocks! From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 01:12:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CF0616A421 for ; Fri, 6 Jul 2007 01:12:56 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 4828013C45A for ; Fri, 6 Jul 2007 01:12:56 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 17231 invoked from network); 5 Jul 2007 20:12:56 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 20:12:55 -0500 Date: Fri, 6 Jul 2007 11:12:51 +1000 From: Norberto Meijome To: Zbigniew Komarnicki Message-ID: <20070706111251.7366d59e@localhost> In-Reply-To: <200707051557.21884.cblasius@gmail.com> References: <200707051557.21884.cblasius@gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 01:12:56 -0000 On Thu, 5 Jul 2007 15:57:21 +0200 Zbigniew Komarnicki wrote: > Hello, > > I have also problem with skype. When I try call to friend then I obtain > following message: > "Problem with sound device". > > When I run skype from console I get the following message (when I call): > "/dev/dsp: Device or resource busy" > > On my Debian I haven't such problem. > > I also change, > sysctl hw.snd.maxautovchans=8 > > as was in previous message about skype, but still is the problem with sound > device. > > From 'dmesg', I have: > > pcm0: port 0xb000-0xb0ff,0xb400-0xb47f mem > 0xe8001000-0xe80 01fff irq 21 at device 6.0 on pci0 > pcm0: Hi Zbigniew, interestingly...i've had this problem a couple of times a few days ago. The first call would work fine, the following would not at all. Restarting skype would fix it, but then it'd stop working again. what kernel + world (from what day) are you running? mine is FreeBSD ayiin.xxxxxxx.com.au 6.2-STABLE FreeBSD 6.2-STABLE #10: Sun Jul 1 09:50:58 EST 2007 World from same day or a day or 2 earlier. pcm0@pci0:27:0: class=0x040300 card=0x05b71014 chip=0x26688086 rev=0x03 hdr=0x00 vendor = 'Intel Corporation' device = '82801FB/FR/FW/FRW Intel High DefiNition Audio Controller' class = multimedia Sound drivers from -STABLE. Skype 1.3 from ports. cheers, _________________________ {Beto|Norberto|Numard} Meijome "It's not what you do, it's the love you put into it." Mother Theresa. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 01:26:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4ECB916A400 for ; Fri, 6 Jul 2007 01:26:05 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 03DCF13C4AD for ; Fri, 6 Jul 2007 01:26:04 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 17922 invoked from network); 5 Jul 2007 20:26:04 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 20:26:04 -0500 Date: Fri, 6 Jul 2007 11:26:00 +1000 From: Norberto Meijome To: Tom Grove Message-ID: <20070706112600.6452b342@localhost> In-Reply-To: <468D358A.5090803@voidmain.net> References: <468D358A.5090803@voidmain.net> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: OSS in 6.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, 06 Jul 2007 01:26:05 -0000 On Thu, 05 Jul 2007 14:16:42 -0400 Tom Grove wrote: > Has anyone successfully used the OSS in 6.2? I have an Intel HDA card > that I would like to be able to record on but when I use the OSS program > and modules I get nothing but garbled tones coming from the speakers. > The osstest utility also reports errors of timeouts. I tried it over a year ago and it would crash my kernel. I've been using Ariff's since he published them, and the ones in -STABLE since he MFCd them. I may give OSS another try now they have gone open source... _________________________ {Beto|Norberto|Numard} Meijome Never take Life too seriously, no one gets out alive anyway. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 01:34:43 2007 Return-Path: X-Original-To: questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB2A316A41F for ; Fri, 6 Jul 2007 01:34:43 +0000 (UTC) (envelope-from jacobsm@gate.net) Received: from elasmtp-galgo.atl.sa.earthlink.net (elasmtp-galgo.atl.sa.earthlink.net [209.86.89.61]) by mx1.freebsd.org (Postfix) with ESMTP id B403A13C45A for ; Fri, 6 Jul 2007 01:34:43 +0000 (UTC) (envelope-from jacobsm@gate.net) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=dk20050327; d=gate.net; b=KfSiqh/6WPLJJkIXZnS0XXxjD1ASty8Yl1pW6DlJJAWHXvNHS43yOP65NPD4vJjt; h=Received:Subject:From:To:Content-Type:Date:Message-Id:Mime-Version:X-Mailer:Content-Transfer-Encoding:X-ELNK-Trace:X-Originating-IP; Received: from [208.118.37.31] (helo=[192.168.102.10]) by elasmtp-galgo.atl.sa.earthlink.net with asmtp (Exim 4.34) id 1I6cWb-0000OU-Mj for questions@FreeBSD.org; Thu, 05 Jul 2007 21:22:21 -0400 From: Mark Jacobs To: questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Date: Thu, 05 Jul 2007 21:23:53 -0400 Message-Id: <1183685033.87707.4.camel@primary.jacobs.org> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: quoted-printable X-ELNK-Trace: 191835a16b2172361d074dabd4b36e651055bb6027d1a1c7c2e3429634e3656593caf27dac41a8fd350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 208.118.37.31 Cc: Subject: Package Database DOA X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 01:34:43 -0000 My machine froze during a portupgrade process and I was forced to reboot. Now my package database is corrupted. When I issue a pkg_version I receive hundreds of these type errors; pkg_version: the package info for package 'cups-base-1.2.11_2' is corrupt I attempted to delete and rebuild the database with the commands I know but it didn't seem to fix the problem. Can someone assist me in rebuilding the database? Mark Jacobs --=20 "Naturally the common people don't want war; neither in Russia, nor in England, nor in America, nor in Germany. That is understood. But after all, it is the leaders of the country who determine policy, and it is always a simple matter to drag the people along, whether it is a democracy, or a fascist dictatorship, or a parliament, or a communist dictatorship. ...Voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is to tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in any country." Hermann G=F6ring - 1946 From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 01:45:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DC2416A400 for ; Fri, 6 Jul 2007 01:45:17 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from pollux.dfwlp.com (rrcs-64-183-212-244.sw.biz.rr.com [64.183.212.244]) by mx1.freebsd.org (Postfix) with ESMTP id ED9A113C448 for ; Fri, 6 Jul 2007 01:45:16 +0000 (UTC) (envelope-from freebsd@dfwlp.com) Received: from athena.dfwlp.com (athena.dfwlp.com [192.168.125.83]) (authenticated bits=0) by pollux.dfwlp.com (8.13.8/8.13.8) with ESMTP id l661jEJn044407 for ; Thu, 5 Jul 2007 20:45:14 -0500 (CDT) (envelope-from freebsd@dfwlp.com) From: Jonathan Horne To: freebsd-questions@freebsd.org Date: Thu, 5 Jul 2007 20:45:13 -0500 User-Agent: KMail/1.9.6 References: <1183685033.87707.4.camel@primary.jacobs.org> In-Reply-To: <1183685033.87707.4.camel@primary.jacobs.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707052045.13595.freebsd@dfwlp.com> X-Spam-Status: No, score=-4.0 required=3.6 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on pollux.dfwlp.com Subject: Re: Package Database DOA X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 01:45:17 -0000 On Thursday 05 July 2007 20:23:53 Mark Jacobs wrote: > My machine froze during a portupgrade process and I was forced to > reboot. Now my package database is corrupted. When I issue a pkg_version > I receive hundreds of these type errors; > > pkg_version: the package info for package 'cups-base-1.2.11_2' is > corrupt > > I attempted to delete and rebuild the database with the commands I know > but it didn't seem to fix the problem. > > Can someone assist me in rebuilding the database? > > Mark Jacobs try as root: mv /var/db/pkg/pkgdb.db /var/db/pkg/pkgdb.old pkgdb -fu i used this method to straighten mine out just the other day. hth, -- Jonathan Horne http://dfwlpiki.dfwlp.org freebsd@dfwlp.com From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 02:17:34 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A427716A41F for ; Fri, 6 Jul 2007 02:17:34 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd3mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 80B6E13C44B for ; Fri, 6 Jul 2007 02:17:34 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd3mr3so.prod.shaw.ca (pd3mr3so-qfe3.prod.shaw.ca [10.0.141.179]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKQ00JZQJP93L20@l-daemon> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:17:33 -0600 (MDT) Received: from pn2ml2so.prod.shaw.ca ([10.0.121.146]) by pd3mr3so.prod.shaw.ca (Sun Java System Messaging Server 6.2-7.05 (built Sep 5 2006)) with ESMTP id <0JKQ00GFJJP71VI0@pd3mr3so.prod.shaw.ca> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:17:32 -0600 (MDT) Received: from [192.168.2.106] ([70.71.25.56]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKQ000C1JP7R641@l-daemon> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:17:31 -0600 (MDT) Date: Thu, 05 Jul 2007 19:17:30 -0700 From: Andriy Babiy In-reply-to: <20070705195202.7028F16A481@hub.freebsd.org> To: Zbigniew Komarnicki Message-id: <200707051917.30307.ABabiy@shaw.ca> Organization: home MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit Content-disposition: inline References: <20070705195202.7028F16A481@hub.freebsd.org> User-Agent: KMail/1.9.6 Cc: FreeBSD-questions Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 02:17:34 -0000 On July 5, 2007, you wrote: > I have also problem with skype. When I try call to friend then I obtain > following message: > "Problem with sound device". > > When I run skype from console I get the following message (when I call): > "/dev/dsp: Device or resource busy" > > On my Debian I haven't such problem. > > I also change, > sysctl hw.snd.maxautovchans=8 Handbook: 7.2.3 Utilizing Multiple Sound Sources http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-setup.html HTH, Andriy From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 02:29:40 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C2EF16A41F for ; Fri, 6 Jul 2007 02:29:40 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd4mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 1B81313C457 for ; Fri, 6 Jul 2007 02:29:40 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd3mr3so.prod.shaw.ca (pd3mr3so-qfe3.prod.shaw.ca [10.0.141.179]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKQ000YXK8LSQ70@l-daemon> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:29:09 -0600 (MDT) Received: from pn2ml1so.prod.shaw.ca ([10.0.121.145]) by pd3mr3so.prod.shaw.ca (Sun Java System Messaging Server 6.2-7.05 (built Sep 5 2006)) with ESMTP id <0JKQ00G6SK8L1QN0@pd3mr3so.prod.shaw.ca> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:29:09 -0600 (MDT) Received: from [192.168.2.106] ([70.71.25.56]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKQ003B1K8KN9P5@l-daemon> for FreeBSD-questions@freebsd.org; Thu, 05 Jul 2007 20:29:09 -0600 (MDT) Date: Thu, 05 Jul 2007 19:29:07 -0700 From: Andriy Babiy To: FreeBSD-questions Message-id: <200707051929.07747.ABabiy@shaw.ca> Organization: home MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit Content-disposition: inline User-Agent: KMail/1.9.6 Cc: Subject: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 02:29:40 -0000 Hi everybody, Could anyone share their gaming experiences? My son is 8 years old. Card games and balls are good, but I think he wants something more dynamic rather than educational :-) On one machine, with recent video card, I plan to install glest for him. Another machine has P-III and Matrox 8 Mb. Is there anything "peaceful" but dynamic enough for an older video card? Thank you in advance! Andriy From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 02:37:13 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 127E216A400 for ; Fri, 6 Jul 2007 02:37:13 +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 6D66513C469 for ; Fri, 6 Jul 2007 02:37:12 +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.12.11) with ESMTP id l662bACi093209 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 6 Jul 2007 09:37:10 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.13.3/8.12.11) id l662bAoK029407; Fri, 6 Jul 2007 09:37:10 +0700 (ICT) Date: Fri, 6 Jul 2007 09:37:10 +0700 (ICT) Message-Id: <200707060237.l662bAoK029407@banyan.cs.ait.ac.th> From: Olivier Nicole To: ABabiy@shaw.ca In-reply-to: <200707051929.07747.ABabiy@shaw.ca> (message from Andriy Babiy on Thu, 05 Jul 2007 19:29:07 -0700) References: <200707051929.07747.ABabiy@shaw.ca> X-Virus-Scanned: on CSIM by amavisd-milter (http://www.amavis.org/) Cc: FreeBSD-questions@freebsd.org Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 02:37:13 -0000 > Another machine has P-III and Matrox 8 Mb. Is > there anything "peaceful" but dynamic enough for an older video card? Sport game (soccer, etc.) car race games? Even older fight games were not so bloody. I won't give name because I don't know names much. If you target games that came out around year 2000, they should work well on your PIII, and you may find them floating around. Bests, Olivier From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 03:11:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1111D16A46D for ; Fri, 6 Jul 2007 03:11:13 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id B89C813C46C for ; Fri, 6 Jul 2007 03:11:12 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 23734 invoked from network); 5 Jul 2007 22:11:12 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 22:11:11 -0500 Date: Fri, 6 Jul 2007 13:11:07 +1000 From: Norberto Meijome To: Andriy Babiy Message-ID: <20070706131107.35464e87@localhost> In-Reply-To: <200707051917.30307.ABabiy@shaw.ca> References: <20070705195202.7028F16A481@hub.freebsd.org> <200707051917.30307.ABabiy@shaw.ca> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Zbigniew Komarnicki , FreeBSD-questions Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 03:11:13 -0000 On Thu, 05 Jul 2007 19:17:30 -0700 Andriy Babiy wrote: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-setup.html yes, of course. In my case, this has always been set and working fine. it showed the problems I described in my previous email ... and now it's fine again. strange _________________________ {Beto|Norberto|Numard} Meijome Two things have come out of Berkeley, Unix and LSD. It is uncertain which caused the other. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 03:12:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C77116A400 for ; Fri, 6 Jul 2007 03:12:05 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id B4C8413C487 for ; Fri, 6 Jul 2007 03:12:04 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 23827 invoked from network); 5 Jul 2007 22:12:05 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 5 Jul 2007 22:12:04 -0500 Date: Fri, 6 Jul 2007 13:12:01 +1000 From: Norberto Meijome To: "Steve Franks" Message-ID: <20070706131201.1acd9c64@localhost> In-Reply-To: <539c60b90707051702h15605252w988427f5111300ce@mail.gmail.com> References: <539c60b90707051702h15605252w988427f5111300ce@mail.gmail.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: tablet pc - anyone tried it? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 03:12:05 -0000 On Thu, 5 Jul 2007 17:02:07 -0700 "Steve Franks" wrote: > Anyone have luck? Does the tablet usually show up as a PS/2 mouse, or > is that completely wishful thinking? > Steve, which 'tablet pc'? you may want to ask in freebsd-mobile@freebsd.org - i've seen several threads on the subject there. _________________________ {Beto|Norberto|Numard} Meijome "In my opinion, we don't devote nearly enough scientific research to finding a cure for jerks." Calvin I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 03:47:41 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 284D216A41F for ; Fri, 6 Jul 2007 03:47:41 +0000 (UTC) (envelope-from parv@pair.com) Received: from mta15.adelphia.net (mta15.mail.adelphia.net [68.168.78.77]) by mx1.freebsd.org (Postfix) with ESMTP id A95A713C459 for ; Fri, 6 Jul 2007 03:47:40 +0000 (UTC) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([24.126.17.68]) by mta15.adelphia.net (InterMail vM.6.01.05.04 201-2131-123-105-20051025) with ESMTP id <20070706034739.KRIU26470.mta15.adelphia.net@default.chvlva.adelphia.net>; Thu, 5 Jul 2007 23:47:39 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 4D8DEB5E7; Thu, 5 Jul 2007 23:48:37 -0400 (EDT) Date: Thu, 5 Jul 2007 23:48:37 -0400 From: Parv To: Andriy Babiy Message-ID: <20070706034837.GA5650@holestein.holy.cow> Mail-Followup-To: Andriy Babiy , FreeBSD-questions References: <200707051929.07747.ABabiy@shaw.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707051929.07747.ABabiy@shaw.ca> Cc: FreeBSD-questions Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: f-q List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 03:47:41 -0000 in message <200707051929.07747.ABabiy@shaw.ca>, wrote Andriy Babiy thusly... > > Could anyone share their gaming experiences? My son is 8 years > old. Card games and balls are good, but I think he wants something > more dynamic rather than educational :-) On one machine, with > recent video card, I plan to install glest for him. Another > machine has P-III and Matrox 8 Mb. Is there anything "peaceful" > but dynamic enough for an older video card? I am not 8 years old anymore, so I cannot say what your son would like but should be suitable for your computers. I personally like atris & xpuzzletama, my sister likes xjewel more -- all three are tetris like in one way or other. Oh, there is also koth (& scorched3D) which takes^Wtests patience & aiming skills. I remember a Mac version (around 1994-1997) being not so hard. - Parv -- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 07:50:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D89A16A46F for ; Fri, 6 Jul 2007 07:50:48 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 21E8113C459 for ; Fri, 6 Jul 2007 07:50:47 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so740062uge for ; Fri, 06 Jul 2007 00:50:46 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=urUK6C12kTwllfDpnDfl+R6I5nGWgdcb5LNl52PtFFKVFkdV1MrKs6zCdyctejbh0iqCbgKq6T6xlVdeKXCGGuoRk7N5tNhrg+ma9VfTa2Se1ikMIC8R9YO3ZIYToGdJmPiI6rkdbsdDGwxt4z/IH9XVAOQ005nXYFBvu0yX/QI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=EjKaeGna5VP616tRNsolX9ew1TADz/t6A/TiZsKe765XXuPfUEbEL/TlgrywCH7HrjwJfP3ZuWhf1wAL6LA4+quauF8lPKQkMGECalVI4rpolQ6BjkHO9Ewo+P4o1xJ1rd6Hv/W9H1WUsAEad1OLiPQcrK/cNpfrb1XOynvsZlM= Received: by 10.66.217.5 with SMTP id p5mr2556604ugg.1183708246864; Fri, 06 Jul 2007 00:50:46 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id f19sm24094755fka.2007.07.06.00.50.44 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2007 00:50:45 -0700 (PDT) From: Zbigniew Komarnicki To: Norberto Meijome Date: Fri, 6 Jul 2007 09:53:52 +0200 User-Agent: KMail/1.9.6 References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> In-Reply-To: <20070706111251.7366d59e@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707060953.53640.cblasius@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 07:50:48 -0000 On Friday 06 of July 2007 03:12:51 you wrote: > Hi Zbigniew, > interestingly...i've had this problem a couple of times a few days ago. The > first call would work fine, the following would not at all. Restarting > skype would fix it, but then it'd stop working again. I have that all the time Skype doesn't working, even when i restart it. > what kernel + world (from what day) are you running? > mine is > FreeBSD ayiin.xxxxxxx.com.au 6.2-STABLE FreeBSD 6.2-STABLE #10: Sun Jul 1 > 09:50:58 EST 2007 I have: FreeBSD xxxxx.xxx 6.2-STABLE FreeBSD 6.2-STABLE #0: Mon Jun 18 20:55:05 CEST 2007 > World from same day or a day or 2 earlier. I also. > pcm0@pci0:27:0: class=0x040300 card=0x05b71014 chip=0x26688086 rev=0x03 > hdr=0x00 vendor = 'Intel Corporation' > device = '82801FB/FR/FW/FRW Intel High DefiNition Audio Controller' > class = multimedia pcm0@pci0:6:0: class=0x040100 card=0xa0021458 chip=0x008a10de rev=0xa1 hdr=0x00 vendor = 'NVIDIA Corporation' device = 'nForce AC'97 Audio Codec Interface' class = multimedia subclass = audio > Sound drivers from -STABLE. Skype 1.3 from ports. I have 1.3.0.30 from ports also > cheers, > _________________________ > {Beto|Norberto|Numard} Meijome Best regards, Zbyszek From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 08:05:29 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FF3116A41F for ; Fri, 6 Jul 2007 08:05:29 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.freebsd.org (Postfix) with ESMTP id A8F9F13C468 for ; Fri, 6 Jul 2007 08:05:28 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so742364uge for ; Fri, 06 Jul 2007 01:05:27 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=pvBijvvRzcw1Mzg3on5xYCCKpc/smeKBox0gUvkuBhxTq9tJVg1uqqH1za1eZZvyCQYWi/bnMXG0f4YtPt1s6ATRRXOgojH1DVe7kDXDYrWrwiM8VP4jvL291G4N1I9Uvr+zfXxo0NV8qzeSnHCjqTDJsfJPRyFAFOZgLELoptI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=PXXS8CbKNGg7ytN0C1iRvp7GFONDldZHXM3w2GsI2nWj735SJekF1n4HM3XnJ5Od03aEPgswsVXqVMp61I6JQvrlyNVDS4KErffSLYLWmLGxjePkkLsWX/JoGdrcwUTtfGz52PU1PW2T+uGTml+gXN1nzYRPUrgGCiDGxV2Bwa0= Received: by 10.67.15.15 with SMTP id s15mr2573054ugi.1183709127273; Fri, 06 Jul 2007 01:05:27 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id o11sm24116959fkf.2007.07.06.01.05.25 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2007 01:05:25 -0700 (PDT) From: Zbigniew Komarnicki To: Andriy Babiy Date: Fri, 6 Jul 2007 10:08:33 +0200 User-Agent: KMail/1.9.6 References: <20070705195202.7028F16A481@hub.freebsd.org> <200707051917.30307.ABabiy@shaw.ca> In-Reply-To: <200707051917.30307.ABabiy@shaw.ca> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200707061008.33686.cblasius@gmail.com> Cc: FreeBSD-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 08:05:29 -0000 On Friday 06 of July 2007 04:17:30 you wrote: > Handbook: 7.2.3 Utilizing Multiple Sound Sources > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/sound-setup.html > > HTH, > Andriy I cheched it, mayby I missed something, byt still Skype has a problem with= =20 sound device. I set also this # sysctl hw.snd.pcm0.vchans=3D8 # sysctl hw.snd.maxautovchans=3D8=20 =46rom this comand I obtain # cat /dev/sndstat =46reeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xb000, 0xb400 irq 21 bufsz 16384 (1p/1r/= 8v=20 channels duplex default) =20 I have compiled in my kernel the following devices device sound device snd_ich What I must also check or set to Skype work?=20 Thank you in advance. Best regards, Zbyszek From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 08:29:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from misaki (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id DF5E116A468; Fri, 6 Jul 2007 08:29:38 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Date: Fri, 6 Jul 2007 16:29:34 +0800 From: Ariff Abdullah To: Norberto Meijome , cblasius@gmail.com Message-Id: <20070706162934.5d962e77.ariff@FreeBSD.org> In-Reply-To: <20070706111251.7366d59e@localhost> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__6_Jul_2007_16_29_35_+0800_La2aQOy8NOsh3l+p" Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 08:29:40 -0000 --Signature=_Fri__6_Jul_2007_16_29_35_+0800_La2aQOy8NOsh3l+p Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 6 Jul 2007 11:12:51 +1000 Norberto Meijome wrote: > On Thu, 5 Jul 2007 15:57:21 +0200 > Zbigniew Komarnicki wrote: >=20 > > Hello, > >=20 > > I have also problem with skype. When I try call to friend then I > > obtain following message:=20 > > "Problem with sound device". > >=20 > > When I run skype from console I get the following message (when I > > call): "/dev/dsp: Device or resource busy" > >=20 > > On my Debian I haven't such problem.=20 > >=20 > > I also change,=20 > > sysctl hw.snd.maxautovchans=3D8 > >=20 > > as was in previous message about skype, but still is the problem > > with sound device. > >=20 > > From 'dmesg', I have: > >=20 > > pcm0: port 0xb000-0xb0ff,0xb400-0xb47f mem > > 0xe8001000-0xe80 01fff irq 21 at device 6.0 on pci0 > > pcm0: >=20 > Hi Zbigniew, > interestingly...i've had this problem a couple of times a few days > ago. The first call would work fine, the following would not at all. > Restarting skype would fix it, but then it'd stop working again. > what kernel + world (from what day) are you running? > mine is=20 > FreeBSD ayiin.xxxxxxx.com.au 6.2-STABLE FreeBSD 6.2-STABLE #10: Sun > Jul 1 09:50:58 EST 2007=20 >=20 > World from same day or a day or 2 earlier. > pcm0@pci0:27:0: class=3D0x040300 card=3D0x05b71014 chip=3D0x26688086 > rev=3D0x03 hdr=3D0x00 > vendor =3D 'Intel Corporation' > device =3D '82801FB/FR/FW/FRW Intel High DefiNition Audio > Controller' class =3D multimedia >=20 > Sound drivers from -STABLE. Skype 1.3 from ports. >=20 Show me the output of #fstat|grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' .. before/after opening skype. -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Fri__6_Jul_2007_16_29_35_+0800_La2aQOy8NOsh3l+p Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjf1vlr+deMUwTNoRAiBgAKCnqjrTeR0t0llOW+katfbpzunsNQCaAz4y g9HRcMhMrs7J6kctmgqwjbk= =VVqF -----END PGP SIGNATURE----- --Signature=_Fri__6_Jul_2007_16_29_35_+0800_La2aQOy8NOsh3l+p-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 08:46:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 921BD16A421 for ; Fri, 6 Jul 2007 08:46:59 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.freebsd.org (Postfix) with ESMTP id 23C6A13C45B for ; Fri, 6 Jul 2007 08:46:58 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so748943uge for ; Fri, 06 Jul 2007 01:46:57 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=QpPpwgLYKU8fZPjXU1r5o/9r4UjLyVsrI/Odm1d+THP66MdvLzfyEYfIzZdKoc/vRNCedE3UpW1lr48KSg51Y5CJ54pHVf6VTcxXEwWpRwo99fY7ag8Htzt/6KuVjQJMnLNkUPvR8K1H9chPWQxuGHrMfGWXm/UHvunBA5Fi1NY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=scgGmxvII4WZflPnhnB3ULYP2VrEUin7n64kJ3fl5h/WwjIn+krwK/pnzEPy7EbqeWgojUkWllM0ev0OLMF6ZdZ+SX+7bPN2l5oMDGZfxAaGVjdw5y4owbkbbXSilTNhdciQ1faugzZfwhYmZmB40CK5z2hkd1Zb6UGnkV9W3vw= Received: by 10.67.92.1 with SMTP id u1mr2590243ugl.1183711617814; Fri, 06 Jul 2007 01:46:57 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id k29sm24199203fkk.2007.07.06.01.46.56 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2007 01:46:56 -0700 (PDT) From: Zbigniew Komarnicki To: Ariff Abdullah Date: Fri, 6 Jul 2007 10:50:04 +0200 User-Agent: KMail/1.9.6 References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> In-Reply-To: <20070706162934.5d962e77.ariff@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707061050.04874.cblasius@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 08:46:59 -0000 On Friday 06 of July 2007 10:29:34 you wrote: > Show me the output of > > #fstat|grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > > .. before/after opening skype. Before: # fstat|grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw- mixer0 rw zbyszek artsd 87899 9 /dev 38 crw-rw-rw- dsp0.0 rw and after: # fstat | grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' zbyszek skype_bin 74183 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 73910 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 73909 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 73908 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 73093 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 72813 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw- mixer0 rw zbyszek artsd 87899 9 /dev 38 crw-rw-rw- dsp0.0 rw From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 09:32:34 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 798C616A469 for ; Fri, 6 Jul 2007 09:32:34 +0000 (UTC) (envelope-from karel.miklav@siol.net) Received: from dsl.inetis.com (cpe-212-18-40-64.static.amis.net [212.18.40.64]) by mx1.freebsd.org (Postfix) with ESMTP id BA99113C448 for ; Fri, 6 Jul 2007 09:32:33 +0000 (UTC) (envelope-from karel.miklav@siol.net) Received: from [192.168.110.14] ([192.168.110.14]) by inetis.com with MailEnable ESMTP; Fri, 06 Jul 2007 11:12:20 +0200 Message-ID: <468E074D.8050705@siol.net> Date: Fri, 06 Jul 2007 11:11:41 +0200 From: Karel Miklav User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 09:32:34 -0000 TuxRacer. MAME, DOSBox, MLDonkey. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 09:39:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0778E16A469 for ; Fri, 6 Jul 2007 09:39:26 +0000 (UTC) (envelope-from idiotbg@gmail.com) Received: from smtp.studnetz.uni-leipzig.de (smtp.studnetz.uni-leipzig.de [139.18.143.252]) by mx1.freebsd.org (Postfix) with ESMTP id 9338013C45E for ; Fri, 6 Jul 2007 09:39:25 +0000 (UTC) (envelope-from idiotbg@gmail.com) Received: from localhost (localhost [127.0.0.1]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id 6D42625F; Fri, 6 Jul 2007 11:39:24 +0200 (CEST) X-Virus-Scanned: by amavisd-new at studnetz-ul Received: from smtp.studnetz.uni-leipzig.de ([127.0.0.1]) by localhost (smtp.studnetz.uni-leipzig.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gF-EMDwkKaGS; Fri, 6 Jul 2007 11:39:24 +0200 (CEST) Received: from [192.168.63.4] (a144026.studnetz.uni-leipzig.de [139.18.144.26]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id 4D6CA24F; Fri, 6 Jul 2007 11:39:24 +0200 (CEST) From: Momchil Ivanov To: freebsd-questions@freebsd.org Date: Fri, 6 Jul 2007 11:39:20 +0200 User-Agent: KMail/1.9.6 References: <200707051929.07747.ABabiy@shaw.ca> In-Reply-To: <200707051929.07747.ABabiy@shaw.ca> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart18212858.i4RYDSoDib"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200707061139.24801.idiotbg@gmail.com> Cc: Andriy Babiy Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 09:39:26 -0000 --nextPart18212858.i4RYDSoDib Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 06 July 2007 04:29:07 Andriy Babiy wrote: > Hi everybody, > > Could anyone share their gaming experiences? My son is 8 years old. Card > games and balls are good, but I think he wants something more dynamic > rather than educational :-) On one machine, with recent video card, I plan > to install glest for him. Another machine has P-III and Matrox 8 Mb. Is > there anything "peaceful" but dynamic enough for an older video card? > > Thank you in advance! > Andriy You can try the mame emulator (it is in ports). There were a lot of games f= or=20 8 bit consoles when I was about 8 years old :) and believe me, they were an= d=20 still are amaizing. There is no such experience as playing the whole=20 night "Tanks" with a friend getting to the last level or so. There were a l= ot=20 of "Mario*" games, Load runner was one of my favouries too, there is a port= =20 in games: Path: /usr/ports/games/xscavenger Info: A Lode Runner clone for X11 I beleive I haven`t tried that one though. Btw "Contra" was one of the best= =20 shooting games for those boxes. As I said there are tooooooooo many games f= or=20 those old boxes, that you can play with the mame emulator. You can also try with some windows games on windows or using the wine emula= tor=20 (the P-III won`t be fast enough for emulation). StartCraft* is one of my=20 favouries (runs with the wine emulator under FreeBSD). There are some games in ports like xjewels (super cool tetris game as far a= s I=20 remember), xboing is good too. In the end I should say: install as more games as you can and give your son= =20 the chance to choose what to play :) a lot of games is always good, one can= =20 always find at least one that he can play the whole day long. Having less=20 games is somehow limiting. =2D-=20 This correspondence is strictly confidential. Any screening, filtering and/or production for the purpose of public or otherwise disclosure is forbidden without written permission by the author signed above. If you are not the intended recipient, please immediately notify the sender and permanently delete any copies PGP KeyID: 0x3118168B Keyserver: pgp.mit.edu Key fingerprint BB50 2983 0714 36DC D02E =C2=A0158A E03D 56DA 3118 168B =20 --nextPart18212858.i4RYDSoDib Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGjg3J4D1W2jEYFosRAmdtAJ9VEesN61tJ1DE2NoavCwpyguW2KACfSvC2 Znf+cXOUq5EbBAWNd77RQk8= =Jn/l -----END PGP SIGNATURE----- --nextPart18212858.i4RYDSoDib-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 09:43:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from misaki (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id AF55E16A400; Fri, 6 Jul 2007 09:43:04 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Date: Fri, 6 Jul 2007 17:43:01 +0800 From: Ariff Abdullah To: Zbigniew Komarnicki Message-Id: <20070706174301.4766c511.ariff@FreeBSD.org> In-Reply-To: <200707061050.04874.cblasius@gmail.com> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> <200707061050.04874.cblasius@gmail.com> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__6_Jul_2007_17_43_01_+0800_ecdvfd+5r8d3C6L3" Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 09:43:05 -0000 --Signature=_Fri__6_Jul_2007_17_43_01_+0800_ecdvfd+5r8d3C6L3 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 6 Jul 2007 10:50:04 +0200 Zbigniew Komarnicki wrote: > On Friday 06 of July 2007 10:29:34 you wrote: > > Show me the output of > > > > #fstat|grep > > #'\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > > > > .. before/after opening skype. >=20 > Before: > # fstat|grep > # '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw- mixer0 > rw zbyszek artsd 87899 9 /dev 38 crw-rw-rw-=20 > dsp0.0 rw ^^ >=20 Looks like artsd consuming your record channel, which is why skype fail to grab it for its own purpose. You have to disable artsd. > and after: > # fstat | grep > # '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > zbyszek skype_bin 74183 30 /dev 37 crw-rw-rw- mixer0 > rw zbyszek skype_bin 73910 30 /dev 37 crw-rw-rw-=20 > mixer0 rw zbyszek skype_bin 73909 30 /dev 37 > crw-rw-rw- mixer0 rw zbyszek skype_bin 73908 30 /dev =20 > 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 73093 30 /dev =20 > 37 crw-rw-rw- mixer0 rw > zbyszek skype_bin 72813 30 /dev 37 crw-rw-rw- mixer0 > rw zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw-=20 > mixer0 rw zbyszek artsd 87899 9 /dev 38 > crw-rw-rw- dsp0.0 rw >=20 -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Fri__6_Jul_2007_17_43_01_+0800_ecdvfd+5r8d3C6L3 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjg6llr+deMUwTNoRAsUAAKC5MwA1FBFPLvwtBysKem5XYM1mlQCgmYgE vr1/BsAvk7UBBZ4Rf8xbdMg= =EPdq -----END PGP SIGNATURE----- --Signature=_Fri__6_Jul_2007_17_43_01_+0800_ecdvfd+5r8d3C6L3-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 09:49:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7F0A16A400 for ; Fri, 6 Jul 2007 09:49:57 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 75B3913C4B0 for ; Fri, 6 Jul 2007 09:49:57 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id DC70D39898 for ; Fri, 6 Jul 2007 11:49:55 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id 9716639884; Fri, 6 Jul 2007 11:49:55 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id 807773987B for ; Fri, 6 Jul 2007 11:49:52 +0200 (CEST) Message-ID: <468E103F.3040403@boosten.org> Date: Fri, 06 Jul 2007 11:49:51 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200707051929.07747.ABabiy@shaw.ca> <200707061139.24801.idiotbg@gmail.com> In-Reply-To: <200707061139.24801.idiotbg@gmail.com> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-2, 07/05/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 09:49:57 -0000 Momchil Ivanov wrote: > You can try the mame emulator (it is in ports). There were a lot of games for > 8 bit consoles when I was about 8 years old :) and believe me, they were and > still are amaizing. There is no such experience as playing the whole > night "Tanks" with a friend getting to the last level or so. True: they don't make them like they used to :-) From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 10:04:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A680E16A41F for ; Fri, 6 Jul 2007 10:04:11 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 3A74613C4B7 for ; Fri, 6 Jul 2007 10:04:11 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so761682uge for ; Fri, 06 Jul 2007 03:04:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=iqL5bldLYJtCWypjn19Uqw1NAokvz2jcCEGyJxsmmYbECysShjQ+26bdvKGX1aFTAfHSOHbXf6nXw930HTZrabi63tfREpxbyaiCzuT7XsFwS04XVJzDTTN990uOFVNDwRg62AESJd93V7GQxHPZdmo+ef3J5XWnk/b2gs/4tfA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=PWQ57yqmHQ/juyhcjHvarpHG4uEAf7F4JeSLafc8f8FJ/u0QSzf5r7+ylqhJYTAlAYcHsKyZTdWw/1fkV/Vzvx3O5TwWdVV9J3A4J1hzRqaFfoKqnF+nTKvMzk6JK2KFhL2DtflGIxP5yCAMZDnqkPAilsopjJS34roPQkzyW28= Received: by 10.82.178.11 with SMTP id a11mr1375160buf.1183716249880; Fri, 06 Jul 2007 03:04:09 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id p38sm24360476fke.2007.07.06.03.04.07 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2007 03:04:09 -0700 (PDT) From: Zbigniew Komarnicki To: Ariff Abdullah Date: Fri, 6 Jul 2007 12:07:16 +0200 User-Agent: KMail/1.9.6 References: <200707051557.21884.cblasius@gmail.com> <200707061050.04874.cblasius@gmail.com> <20070706174301.4766c511.ariff@FreeBSD.org> In-Reply-To: <20070706174301.4766c511.ariff@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707061207.16739.cblasius@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 10:04:11 -0000 On Friday 06 of July 2007 11:43:01 you wrote: > > Before: > > # fstat|grep > > # '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > > zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw- mixer0 > > rw zbyszek artsd 87899 9 /dev 38 crw-rw-rw- > > dsp0.0 rw > > ^^ > > Looks like artsd consuming your record channel, which is why skype > fail to grab it for its own purpose. You have to disable artsd. When I disabled artsd, skype works. Thank you. Now, after start skype I have # fstat | grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' zbyszek skype_bin 68381 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 68381 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 67507 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 67507 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 67506 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 67506 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 67505 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 67505 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 66961 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 66961 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 65863 30 /dev 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 65863 31 /dev 38 crw-rw-rw- dsp0.0 rw zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw- mixer0 rw I have a question. Is possible to use skype without disabling artsd, in my case? In Debian it works, so I suppose that it must work, but how to do it under FreeBSD? Thank you a lot Ariff ! Best regards :-) Zbyszek From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 10:21:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from misaki (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 0694A16A421; Fri, 6 Jul 2007 10:21:48 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Date: Fri, 6 Jul 2007 18:21:44 +0800 From: Ariff Abdullah To: Zbigniew Komarnicki Message-Id: <20070706182144.2200ce95.ariff@FreeBSD.org> In-Reply-To: <200707061207.16739.cblasius@gmail.com> References: <200707051557.21884.cblasius@gmail.com> <200707061050.04874.cblasius@gmail.com> <20070706174301.4766c511.ariff@FreeBSD.org> <200707061207.16739.cblasius@gmail.com> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__6_Jul_2007_18_21_44_+0800_RI45.bLtDwjKEDD8" Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 10:21:50 -0000 --Signature=_Fri__6_Jul_2007_18_21_44_+0800_RI45.bLtDwjKEDD8 Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 6 Jul 2007 12:07:16 +0200 Zbigniew Komarnicki wrote: > On Friday 06 of July 2007 11:43:01 you wrote: > > > Before: > > > # fstat|grep > > > # '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > > > zbyszek kdeinit 88649 10 /dev 37 crw-rw-rw-=20 > > > mixer0 rw zbyszek artsd 87899 9 /dev 38 > > > crw-rw-rw- dsp0.0 rw > > > > ^^ > > > > Looks like artsd consuming your record channel, which is why skype > > fail to grab it for its own purpose. You have to disable artsd. >=20 > When I disabled artsd, skype works. Thank you. >=20 > Now, after start skype I have > # fstat | grep > # '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > zbyszek skype_bin 68381 30 /dev 37 crw-rw-rw- mixer0 > rw zbyszek skype_bin 68381 31 /dev 38 crw-rw-rw-=20 > dsp0.0 rw zbyszek skype_bin 67507 30 /dev 37 > crw-rw-rw- mixer0 rw zbyszek skype_bin 67507 31 /dev =20 > 38 crw-rw-rw- dsp0.0 rw zbyszek skype_bin 67506 30 /dev =20 > 37 crw-rw-rw- mixer0 rw > zbyszek skype_bin 67506 31 /dev 38 crw-rw-rw- dsp0.0 > rw zbyszek skype_bin 67505 30 /dev 37 crw-rw-rw-=20 > mixer0 rw zbyszek skype_bin 67505 31 /dev 38 > crw-rw-rw- dsp0.0 rw zbyszek skype_bin 66961 30 /dev =20 > 37 crw-rw-rw- mixer0 rw zbyszek skype_bin 66961 31 /dev =20 > 38 crw-rw-rw- dsp0.0 rw > zbyszek skype_bin 65863 30 /dev 37 crw-rw-rw- mixer0 > rw zbyszek skype_bin 65863 31 /dev 38 crw-rw-rw-=20 > dsp0.0 rw zbyszek kdeinit 88649 10 /dev 37 > crw-rw-rw- mixer0 rw >=20 >=20 > I have a question. Is possible to use skype without disabling artsd, > in my case? In Debian it works, so I suppose that it must work, but > how to do it under FreeBSD?=20 >=20 Not possible with 6.x, unless you willing to apply patch or using binary modules from http://people.freebsd.org/~ariff/ . This is not an issue anymore for -current or future 7.x. > Thank you a lot Ariff !=20 >=20 > Best regards :-) > Zbyszek >=20 >=20 >=20 > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" >=20 >=20 -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Fri__6_Jul_2007_18_21_44_+0800_RI45.bLtDwjKEDD8 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjhe4lr+deMUwTNoRAoFUAKC1k3/RkJiAwcjkyoa1g32xjODGfACeLZWB ySrim9mivG4fBb2vnMAvPrM= =75XS -----END PGP SIGNATURE----- --Signature=_Fri__6_Jul_2007_18_21_44_+0800_RI45.bLtDwjKEDD8-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 10:39:30 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AFA2816A46E for ; Fri, 6 Jul 2007 10:39:30 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 42DFF13C4C1 for ; Fri, 6 Jul 2007 10:39:30 +0000 (UTC) (envelope-from cblasius@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so767428uge for ; Fri, 06 Jul 2007 03:39:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=gyIE6B+SnYSlp61NOiU/rxIUSWwmMJ1pT4Dy3zTigGk2f5nmbZSv5cURF4lj0ZMDzIq/u0/GIYFsu8dcHSJOMYT21d7dyOT8fU5bsG/vqo2JELmNzGIka/c7cJC32Md1EBQUeGPd3P088xfQiJqlxYjiV1/feuXO3bq3Tef8Y9U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:user-agent:references:in-reply-to:cc:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=SSCQ9dFo0F7ueo5YOBUNd9dZGmIWuh9+aP8hZFnCGSqMuMa44tPCVZ5Lm0KE1Vvvc9oGmu1gQhOm2zXlWeVXUBsUI/myl44GljS1za9eGUlChhtTsL04aW/M0NNnPYCCN61jKvrNf3Qc6VjPYf4eXViHCS93witKozF3U0NnfwQ= Received: by 10.67.20.11 with SMTP id x11mr2659612ugi.1183718368940; Fri, 06 Jul 2007 03:39:28 -0700 (PDT) Received: from xdsl-5405.zgora.dialog.net.pl ( [84.40.169.29]) by mx.google.com with ESMTP id f19sm24440185fka.2007.07.06.03.39.26 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2007 03:39:27 -0700 (PDT) From: Zbigniew Komarnicki To: Ariff Abdullah Date: Fri, 6 Jul 2007 12:42:35 +0200 User-Agent: KMail/1.9.6 References: <200707051557.21884.cblasius@gmail.com> <200707061207.16739.cblasius@gmail.com> <20070706182144.2200ce95.ariff@FreeBSD.org> In-Reply-To: <20070706182144.2200ce95.ariff@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707061242.35912.cblasius@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 10:39:30 -0000 > Not possible with 6.x, unless you willing to apply patch or > using binary modules from http://people.freebsd.org/~ariff/ . > > This is not an issue anymore for -current or future 7.x. Thank you again :-) From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 10:58:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED66416A400 for ; Fri, 6 Jul 2007 10:58:53 +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 B4CF113C448 for ; Fri, 6 Jul 2007 10:58:53 +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 l66AvDtb011872; Fri, 6 Jul 2007 06:57:13 -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 l66AvDmj011871; Fri, 6 Jul 2007 06:57:13 -0400 (EDT) (envelope-from jerrymc) Date: Fri, 6 Jul 2007 06:57:13 -0400 From: Jerry McAllister To: John Murphy Message-ID: <20070706105713.GC11782@gizmo.acns.msu.edu> References: <20070704151326.E91978@fledge.watson.org> <20070705164652.453185d8@turion.freeode.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070705164652.453185d8@turion.freeode.co.uk> User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 10:58:54 -0000 On Thu, Jul 05, 2007 at 04:46:52PM +0100, John Murphy wrote: > Wasn't there, once upon a time, an error message in FreeBSD which > reported 'This doesn't look like Kansas, Toto'? I remember seeing that error message somewhere, but do not remember where or if it was in FreeBSD. ////jerry > > Seem to recall it occurring when I deleted the directory I was 'in'. > > I may have imagined it though! > > -- > John. > _______________________________________________ > 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 Jul 6 11:09:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D28216A46F for ; Fri, 6 Jul 2007 11:09:11 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 26EC313C4BF for ; Fri, 6 Jul 2007 11:09:10 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 19472 invoked from network); 6 Jul 2007 06:09:10 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 6 Jul 2007 06:09:10 -0500 Date: Fri, 6 Jul 2007 21:09:06 +1000 From: Norberto Meijome To: Ariff Abdullah Message-ID: <20070706210906.5a58b7b2@localhost> In-Reply-To: <20070706162934.5d962e77.ariff@FreeBSD.org> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cblasius@gmail.com, freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:09:11 -0000 On Fri, 6 Jul 2007 16:29:34 +0800 Ariff Abdullah wrote: > Show me the output of > > #fstat|grep '\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > > .. before/after opening skype. Hi Ariff :) I haven't had the problem since.But i decided to check with fstat...and I was amazed at the number of file descriptors (to /dev/[sound_related]) that skype keeps open. I use skype extensively, both for chat + voice. I've had skype running for over 12 hours, probably 24 hours (my uptime says 1 day 21 hours...so maybe as long as that). When I run your command, I got 2700+ entries - all but 2 were skype's! You can see it for yourself at http://www.meijome.net/files/freebsd/20070706/withskype_12hrs+.txt I then shut down skype : http://www.meijome.net/files/freebsd/20070706/b4skype.txt And opened it again, waited it to log in and go another snapshot: http://www.meijome.net/files/freebsd/20070706/withskype.txt (no changes really). I then did a test call to the skype test call bot, while the call was running i got: http://www.meijome.net/files/freebsd/20070706/skype_1_call.txt which is , i suppose, ok... but AFTER the call, I still had several entries left over: http://www.meijome.net/files/freebsd/20070706/skype_1_call_finished.txt Is this normal / expected? Thanks again for all your help. B _________________________ {Beto|Norberto|Numard} Meijome "Lots of people who complained about us receiving the MBE received theirs for heroism in the war -- for killing people. We received ours for entertaining other people. I'd say we deserve ours more." John Lennon I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:21:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EF52116A41F for ; Fri, 6 Jul 2007 11:21:39 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from astro.systems.pipex.net (astro.systems.pipex.net [62.241.163.6]) by mx1.freebsd.org (Postfix) with ESMTP id B857313C448 for ; Fri, 6 Jul 2007 11:21:39 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from [192.168.23.2] (62-31-10-181.cable.ubr05.edin.blueyonder.co.uk [62.31.10.181]) by astro.systems.pipex.net (Postfix) with ESMTP id 2641AE00057C; Fri, 6 Jul 2007 12:21:37 +0100 (BST) Message-ID: <468E25C1.5010107@dial.pipex.com> Date: Fri, 06 Jul 2007 12:21:37 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20061205 X-Accept-Language: en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20070704151326.E91978@fledge.watson.org> <20070705164652.453185d8@turion.freeode.co.uk> <20070706105713.GC11782@gizmo.acns.msu.edu> In-Reply-To: <20070706105713.GC11782@gizmo.acns.msu.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Jerry McAllister , John Murphy Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:21:40 -0000 Jerry McAllister wrote: >On Thu, Jul 05, 2007 at 04:46:52PM +0100, John Murphy wrote: > > > >>Wasn't there, once upon a time, an error message in FreeBSD which >>reported 'This doesn't look like Kansas, Toto'? >> >> > >I remember seeing that error message somewhere, but do not remember >where or if it was in FreeBSD. > > It's a fortune. Whether it has also ever been an error message I cannot say, but not in 5.4 unless it's well hidden. "Gee, Toto, I don't think we are in Kansas anymore." find /usr/src -type f -print0 | xargs -0 egrep -l Kansas --Alex From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:38:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A93116A400 for ; Fri, 6 Jul 2007 11:38:48 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 2A48A13C4B0 for ; Fri, 6 Jul 2007 11:38:48 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I6lr5-0003ah-8e for freebsd-questions@freebsd.org; Fri, 06 Jul 2007 13:20:07 +0200 MIME-Version: 1.0 Date: Fri, 6 Jul 2007 13:20:07 +0200 From: Zbigniew Szalbot To: freebsd-questions@freebsd.org Message-ID: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Subject: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:38:48 -0000 hi, Thank you all for your comments re FreeBSD as a parental control and gateway server. I have both squid and dansguardian working and I am left with configuring them to optimize web browsing and the desired level of control. I do not yet have FreeBSD functioning as a real gateway as I will be able to do it at a later stage. However, there is one thing that leaves me wondering. In order to use the content filtering as provided by Dansguardian, I need to configure the browser to look for proxy on port 8080. Now, if someone just changes the port in their browser to 3128 (squid proxy port), then all content filtering will be bypassed. What do I need to do in order to avoid someone escaping the control? I am also wondering how I should bring pf into the picture? I haven't tried yet as the box is behind a router firewall anyway but I would appreciate your comments how to marry squid & dansguardian with pf. Thank you very much in advance! Warm regards from otherwise cold and rainy Poland, Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:44:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84B7316A468 for ; Fri, 6 Jul 2007 11:44:06 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 40B0C13C46A for ; Fri, 6 Jul 2007 11:44:06 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 582CF39898 for ; Fri, 6 Jul 2007 13:44:05 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id E981639884; Fri, 6 Jul 2007 13:44:04 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id 8A7113987B for ; Fri, 6 Jul 2007 13:44:01 +0200 (CEST) Message-ID: <468E2B00.7040802@boosten.org> Date: Fri, 06 Jul 2007 13:44:00 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> In-Reply-To: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-2, 07/05/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:44:06 -0000 Zbigniew Szalbot wrote: > hi, > > Thank you all for your comments re FreeBSD as a parental control and > gateway server. I have both squid and dansguardian working and I am left > with configuring them to optimize web browsing and the desired level of > control. > > I do not yet have FreeBSD functioning as a real gateway as I will be able > to do it at a later stage. However, there is one thing that leaves me > wondering. In order to use the content filtering as provided by > Dansguardian, I need to configure the browser to look for proxy on port > 8080. Now, if someone just changes the port in their browser to 3128 (squid > proxy port), then all content filtering will be bypassed. > > What do I need to do in order to avoid someone escaping the control? ACL in squid.conf is your magic word... Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:46:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from misaki (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 49FAD16A421; Fri, 6 Jul 2007 11:46:39 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Date: Fri, 6 Jul 2007 19:46:34 +0800 From: Ariff Abdullah To: Norberto Meijome Message-Id: <20070706194634.3dcb08c3.ariff@FreeBSD.org> In-Reply-To: <20070706210906.5a58b7b2@localhost> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> <20070706210906.5a58b7b2@localhost> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__6_Jul_2007_19_46_34_+0800_Ets.Y8mlQ7vQTwyE" Cc: cblasius@gmail.com, freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:46:40 -0000 --Signature=_Fri__6_Jul_2007_19_46_34_+0800_Ets.Y8mlQ7vQTwyE Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 6 Jul 2007 21:09:06 +1000 Norberto Meijome wrote: > On Fri, 6 Jul 2007 16:29:34 +0800 > Ariff Abdullah wrote: >=20 >=20 > > Show me the output of > >=20 > > #fstat|grep > > #'\(\(dsp\|audio\|dspW\|mixer\)[0-9]\|\(snd\|midi\)stat\)' > >=20 > > .. before/after opening skype. >=20 > Hi Ariff :)=20 >=20 > I haven't had the problem since.But i decided to check with > fstat...and I was amazed at the number of file descriptors (to > /dev/[sound_related]) that skype keeps open. >=20 > I use skype extensively, both for chat + voice. I've had skype > running for over 12 hours, probably 24 hours (my uptime says 1 day > 21 hours...so maybe as long as that). When I run your command, I > got 2700+ entries - all but 2 were skype's! You can see it for > yourself at >=20 > http://www.meijome.net/files/freebsd/20070706/withskype_12hrs+.txt >=20 > I then shut down skype : > http://www.meijome.net/files/freebsd/20070706/b4skype.txt >=20 > And opened it again, waited it to log in and go another snapshot: > http://www.meijome.net/files/freebsd/20070706/withskype.txt (no > changes really). >=20 > I then did a test call to the skype test call bot, while the call > was running i got: > http://www.meijome.net/files/freebsd/20070706/skype_1_call.txt >=20 > which is , i suppose, ok... but AFTER the call, I still had several > entries left over: > http://www.meijome.net/files/freebsd/20070706/skype_1_call_finished.txt >=20 Most of it are actually duplicates due to spawning threads or child forks, so it is safe to ignore it. > Is this normal / expected?=20 >=20 It is as "normal/expected" as it is since I don't have any skype sources to examine with :) . Why it leaves so many dangling opened devices is beyond my comprehension. -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Fri__6_Jul_2007_19_46_34_+0800_Ets.Y8mlQ7vQTwyE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjiualr+deMUwTNoRApThAKDcneoLE3AKqlTKED0xKuJeeYC5wQCfYWFH HiiMSqLuxDsAsD4Y+oA4oqE= =4xsG -----END PGP SIGNATURE----- --Signature=_Fri__6_Jul_2007_19_46_34_+0800_Ets.Y8mlQ7vQTwyE-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:50:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F29116A400 for ; Fri, 6 Jul 2007 11:50:17 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id CC86113C44B for ; Fri, 6 Jul 2007 11:50:16 +0000 (UTC) (envelope-from anton.galitch@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so778825uge for ; Fri, 06 Jul 2007 04:50:15 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=oCp3F6FKofdqHjNP7Ax+mzJVBbfsnAv0uS2mUPOnY1WP7YzuVPIhx2dSE+7qEZ3EM9Y5WzX6nX54gl9BaTCPy6L+eKpIwPs3/dmHVflJRatpZPxH9pgrCL4d61EDIs1+ZqR+dASsWt9XLknnoKtqIUZabuDICs/sWixVKQRMlE8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=gD1x40ktZINnNnvRi1cPADjsADtZ3VLpeHKrI3zk4n+V4dHLI9C68MbyotNkpcDDEpPzm64bdS1aduPKRdRyyu7B0Zqe0/qF2MSdPSBdyoHqbqOWf0awfSVnA/Zd5IlX0ZDayppM2mo33kVlD+jV/Shw8/uatjysqQmBWUps0aI= Received: by 10.82.162.14 with SMTP id k14mr1582067bue.1183722615176; Fri, 06 Jul 2007 04:50:15 -0700 (PDT) Received: by 10.82.148.3 with HTTP; Fri, 6 Jul 2007 04:50:15 -0700 (PDT) Message-ID: <7c80322b0707060450k76782cb0i2761edeb60446920@mail.gmail.com> Date: Fri, 6 Jul 2007 08:50:15 -0300 From: "Anton Galitch" To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: problem with games/linux-enemyterritory X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:50:17 -0000 Well, actually I installed this, and when I execute it I can only see a black screen. Thats the log from the console: -------------------------- %et ET 2.60b linux-i386 May 8 2006 ----- FS_Startup ----- Current search path: /home/anton/.etwolf/etmain /usr/local/lib/enemyterritory/etmain/pak2.pk3 (22 files) /usr/local/lib/enemyterritory/etmain/pak1.pk3 (10 files) /usr/local/lib/enemyterritory/etmain/pak0.pk3 (3725 files) /usr/local/lib/enemyterritory/etmain/mp_bin.pk3 (6 files) /usr/local/lib/enemyterritory/etmain ---------------------- 3763 files in pk3 files execing default.cfg couldn't exec language.cfg couldn't exec autoexec.cfg Hunk_Clear: reset the hunk ok ------- Input Initialization ------- Joystick is not active. ------------------------------------ Bypassing CD checks ----- Client Initialization ----- ----- Initializing Renderer ---- ------------------------------- ----- Client Initialization Complete ----- ----- R_Init ----- ...loading libGL.so.1: Initializing OpenGL display ...setting mode 4: 800 600 Using XFree86-VidModeExtension Version 2.2 XF86DGA Mouse (Version 2.0) initialized XFree86-VidModeExtension Activated at 800x600 Using 8/8/8 Color bits, 24 depth, 0 stencil display. ERROR: couldn't create font (XLoadQueryFont) GL_RENDERER: GeForce 6100/PCI/SSE2/3DNOW! Initializing OpenGL extensions ...using GL_S3_s3tc ...ignoring GL_EXT_texture_env_add ...using GL_ARB_multitexture ...using GL_EXT_compiled_vertex_array ...ignoring GL_NV_fog_distance ...ignoring GL_EXT_texture_filter_anisotropic Initializing GLX extensions ...using GLX_SGI_swap_control ...using GLX_SGI_video_sync XF86 Gamma extension initialized GL_VENDOR: NVIDIA Corporation GL_RENDERER: GeForce 6100/PCI/SSE2/3DNOW! GL_VERSION: 2.1.0 NVIDIA 97.46 GL_EXTENSIONS: GL_ARB_color_buffer_float GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_half_float_pixel GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_shadow GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_object GL_EXT_gpu_program_parameters GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_clear_tag GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_sRGB GL_EXT_timer_query GL_EXT_vertex_array GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KTX_buffer_region GL_NV_blend_square GL_NV_copy_depth_to_color GL_NV_depth_clamp GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_texgen_reflection GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum GLX_EXTENSIONS: GLX_EXT_visual_info GLX_EXT_visual_rating GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGI_video_sync GLX_SGI_swap_control GLX_EXT_texture_from_pixmap GLX_ARB_multisample GLX_NV_float_buffer GLX_ARB_fbconfig_float GLX_ARB_get_proc_address GL_MAX_TEXTURE_SIZE: 4096 GL_MAX_ACTIVE_TEXTURES_ARB: 4 PIXELFORMAT: color(24-bits) Z(24-bit) stencil(0-bits) MODE: 4, 800 x 600 fullscreen hz:N/A GAMMA: hardware w/ 0 overbright bits CPU: rendering primitives: single glDrawElements texturemode: GL_LINEAR_MIPMAP_NEAREST picmip: 1 texture bits: 0 multitexture: enabled compiled vertex arrays: enabled texenv add: disabled compressed textures: enabled anisotropy: 1.0 NV distance fog: disabled Initializing Shaders ----- finished R_Init ----- ------- sound initialization ------- /dev/dsp: Device or resource busy Could not open /dev/dsp ------------------------------------ Sound memory manager started Sys_LoadDll(/home/anton/.etwolf/etmain/ui.mp.i386.so)... Sys_LoadDll(/home/anton/.etwolf/etmain/ui.mp.i386.so) failed: "/home/anton/.etwolf/etmain/ui.mp.i386.so: cannot open shared object file: No such file or directory" Sys_LoadDll(/usr/local/lib/enemyterritory/etmain/ui.mp.i386.so)... ok Sys_LoadDll(ui) found **vmMain** at 0x31d85f40 Sys_LoadDll(ui) succeeded! Found high quality video and fast CPU --- Common Initialization Complete --- Opening IP socket: localhost:27960 NET_GetInterfaces: SIOCGIFADDR plip0 error - -1 Hostname: feudaltimes Alias: feudaltimes.my.domain IP: 127.0.0.1 Started tty console (use +set ttycon 0 to disable) execing preset_high.cfg r_colorbits will be changed upon restarting. r_depthbits will be changed upon restarting. r_picmip will be changed upon restarting. r_mode will be changed upon restarting. r_texturebits will be changed upon restarting. RE_Shutdown( 1 ) Hunk_Clear: reset the hunk ok ----- Initializing Renderer ---- ------------------------------- ----- R_Init ----- ...loading libGL.so.1: Initializing OpenGL display ...setting mode 6: 1024 768 Using XFree86-VidModeExtension Version 2.2 XF86DGA Mouse (Version 2.0) initialized XFree86-VidModeExtension Activated at 1024x768 Using 4/4/4 Color bits, 24 depth, 0 stencil display. ERROR: couldn't create font (XLoadQueryFont) GL_RENDERER: GeForce 6100/PCI/SSE2/3DNOW! Initializing OpenGL extensions ...using GL_S3_s3tc ...ignoring GL_EXT_texture_env_add ...using GL_ARB_multitexture ...using GL_EXT_compiled_vertex_array ...ignoring GL_NV_fog_distance ...ignoring GL_EXT_texture_filter_anisotropic Initializing GLX extensions ...using GLX_SGI_swap_control ...using GLX_SGI_video_sync XF86 Gamma extension initialized GL_VENDOR: NVIDIA Corporation GL_RENDERER: GeForce 6100/PCI/SSE2/3DNOW! GL_VERSION: 2.1.0 NVIDIA 97.46 GL_EXTENSIONS: GL_ARB_color_buffer_float GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_half_float_pixel GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_shadow GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_object GL_EXT_gpu_program_parameters GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_clear_tag GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_sRGB GL_EXT_timer_query GL_EXT_vertex_array GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KTX_buffer_region GL_NV_blend_square GL_NV_copy_depth_to_color GL_NV_depth_clamp GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_texgen_reflection GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum GLX_EXTENSIONS: GLX_EXT_visual_info GLX_EXT_visual_rating GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGI_video_sync GLX_SGI_swap_control GLX_EXT_texture_from_pixmap GLX_ARB_multisample GLX_NV_float_buffer GLX_ARB_fbconfig_float GLX_ARB_get_proc_address GL_MAX_TEXTURE_SIZE: 4096 GL_MAX_ACTIVE_TEXTURES_ARB: 4 PIXELFORMAT: color(32-bits) Z(24-bit) stencil(0-bits) MODE: 6, 1024 x 768 fullscreen hz:N/A GAMMA: hardware w/ 0 overbright bits CPU: rendering primitives: single glDrawElements texturemode: GL_LINEAR_MIPMAP_LINEAR picmip: 0 texture bits: 32 multitexture: enabled compiled vertex arrays: enabled texenv add: disabled compressed textures: enabled anisotropy: 1.0 NV distance fog: disabled Initializing Shaders ----- finished R_Init ----- Sys_LoadDll(/home/anton/.etwolf/etmain/ui.mp.i386.so)... Sys_LoadDll(/home/anton/.etwolf/etmain/ui.mp.i386.so) failed: "/home/anton/.etwolf/etmain/ui.mp.i386.so: cannot open shared object file: No such file or directory" Sys_LoadDll(/usr/local/lib/enemyterritory/etmain/ui.mp.i386.so)... ok Sys_LoadDll(ui) found **vmMain** at 0x31d85f40 Sys_LoadDll(ui) succeeded! Unknown command "+topshots" Unknown command "+stats" Received signal 15, exiting... X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 137 Minor opcode of failed request: 10 Serial number of failed request: 1230 Shutdown tty console -------------------------------- Could anyone make it work?? Im using fbsd 6.2 stable. Thanks. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:52:59 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B20B16A46F for ; Fri, 6 Jul 2007 11:52:59 +0000 (UTC) (envelope-from nvass@teledomenet.gr) Received: from smtp.teledomenet.gr (smtp.teledomenet.gr [213.142.128.2]) by mx1.freebsd.org (Postfix) with ESMTP id C3A1313C459 for ; Fri, 6 Jul 2007 11:52:58 +0000 (UTC) (envelope-from nvass@teledomenet.gr) Received: from iris (unknown [192.168.1.71]) by smtp.teledomenet.gr (Postfix) with ESMTP id 6274F143416; Fri, 6 Jul 2007 14:52:56 +0300 (EEST) From: Nikos Vassiliadis To: freebsd-questions@freebsd.org Date: Fri, 6 Jul 2007 14:52:36 +0300 User-Agent: KMail/1.9.1 References: <539c60b90707051247q760d3fe6n3563b1eb4670379f@mail.gmail.com> In-Reply-To: <539c60b90707051247q760d3fe6n3563b1eb4670379f@mail.gmail.com> X-NCC-RegID: gr.telehouse MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707061452.36599.nvass@teledomenet.gr> Cc: Steve Franks Subject: Re: installing 7 - snapshot iso gives "cannot parse info file for XYZ distribution" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 11:52:59 -0000 On Thursday 05 July 2007 22:47, Steve Franks wrote: > My current issue is needing the src dist to build the ndis wrapper for > may crappy wlan. > > I'd be happy enough to get src from the ftp site, but so far as I can > tell, the only thing for 7.0 is the snapshot, no 7.0/src folder. Don't you have the ISO image? At least on the 7.0-CURRENT-200705 snapshot the 7.0-CURRENT-200705/src directory has the source. > What's the 'right' way to do this? Few suggestions, more or less related... I had problems using snapshots mainly 'cause of OS version tag. I think installing the system from a snapshot, getting the updated source and building it from scrath, would be better. And if you really want, you can get the source from a specific date(the snapshot's apparently) using cvs -D. HTH, Nikos From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 11:56:06 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 571B216A469 for ; Fri, 6 Jul 2007 11:56:06 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from thenetnow.com (thenetnow.com [69.90.69.141]) by mx1.freebsd.org (Postfix) with ESMTP id 35FF713C44C for ; Fri, 6 Jul 2007 11:56:06 +0000 (UTC) (envelope-from gpeel@thenetnow.com) Received: from hpeel.ody.ca ([216.240.12.2] helo=GRANT) by constellation.thenetnow.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1I6mPt-000CN5-Eg for freebsd-questions@freebsd.org; Fri, 06 Jul 2007 07:56:05 -0400 Message-ID: <004f01c7bfc4$a2137d70$6501a8c0@GRANT> From: "Grant Peel" To: Date: Fri, 6 Jul 2007 07:56:05 -0400 Organization: The Net Now MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: mbr on second drive. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Grant Peel List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 11:56:06 -0000 Hi all, I recently used sysinstall to partition and label a new scsi drive. /dev/da0s1 b (swap) d / e /usr f /var g /home I then 'restored' 4 filesystems to it: / /usr /var /home Somehow, the disk is not bootable. I get a 'BTX HAlted" when I try to = boot it. IS there a way to check the mbr nad fix it if necessary? Currently, I have a boot drive as the primary, and the one mentioned = above as a second drive on the machine. The first drive is a ATA and the = second (broken) is a SCSI. -GRant From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 12:04:28 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A489D16A469 for ; Fri, 6 Jul 2007 12:04:28 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from tiltup.nepinc.com (tiltup.nepinc.com [66.207.136.20]) by mx1.freebsd.org (Postfix) with ESMTP id 69D0C13C459 for ; Fri, 6 Jul 2007 12:04:28 +0000 (UTC) (envelope-from freebsd@voidmain.net) Received: from haiti.nepinc.com (pgh.nepinc.com [66.207.129.50]) (authenticated bits=0) by tiltup.nepinc.com (8.13.4/8.13.4) with ESMTP id l66C4SOA073613; Fri, 6 Jul 2007 08:04:28 -0400 (EDT) (envelope-from freebsd@voidmain.net) Message-ID: <468E2FC9.2080700@voidmain.net> Date: Fri, 06 Jul 2007 08:04:25 -0400 From: Tom Grove User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: dmw@unete.cl References: <468D358A.5090803@voidmain.net> <200707052109.23061.dmw@unete.cl> In-Reply-To: <200707052109.23061.dmw@unete.cl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: OSS in 6.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, 06 Jul 2007 12:04:28 -0000 Daniel Molina Wegener wrote: > On Thursday 05 July 2007 14:16:42 Tom Grove wrote: > >> Has anyone successfully used the OSS in 6.2? I have an Intel >> HDA card that I would like to be able to record on but when I >> use the OSS program and modules I get nothing but garbled >> tones coming from the speakers. The osstest utility also >> reports errors of timeouts. >> >> -Tom >> [SNIP] >> >> > > Hello, > > I have an Intel HDA card too, I'm using 6.2-STABLE, where the > driver of 7.0-CURRENT from where has been merged into 6.2. > > It works fine... try updating the source tree with csup or > cvsup and recompile the kernel and world. > > The driver is snd_hda, with snd_hda_load="YES" in boot loader > may work. > > OSS sometimes isn't a good options, I think that HDA matches the > case... > > Regards, > Are you able to record with that driver? -Tom From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 12:07:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C17A016A47B for ; Fri, 6 Jul 2007 12:07:57 +0000 (UTC) (envelope-from javier@kjsl.com) Received: from skywagon.kjsl.com (skywagon.kjsl.com [69.36.240.252]) by mx1.freebsd.org (Postfix) with ESMTP id A830F13C46C for ; Fri, 6 Jul 2007 12:07:57 +0000 (UTC) (envelope-from javier@kjsl.com) Received: from dhcp-64-102-51-214.cisco.com (dhcp-64-102-51-214.cisco.com [64.102.51.214]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: javier) by skywagon.kjsl.com (Postfix) with ESMTP id 22A4E2A68DE; Fri, 6 Jul 2007 08:07:56 -0400 (EDT) Date: Fri, 6 Jul 2007 08:07:44 -0400 From: Javier Henderson To: freebsd-hardware@freebsd.org, freebsd-questions@freebsd.org Message-ID: <20070706080744899037.5642d86d@kjsl.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: GyazMail version 1.5.5 Cc: Subject: Motherboard with console redirection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 12:07:57 -0000 Greetings, I'm looking for recommendations for motherboards that sport serial console redirection, which are known to work well with FreeBSD. I don't have a processor religion, and relatively modest needs: a few SATA ports, preferably built-in video (for the initial setup), at least one IDE channel, support for at least 2GB of RAM and one processor slot (or two, if it will work with a single processor). Built-in gigabit Ethernet would be nice. Thanks. -jav From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 12:39:53 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B421016A468 for ; Fri, 6 Jul 2007 12:39:53 +0000 (UTC) (envelope-from slepov@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.freebsd.org (Postfix) with ESMTP id 4811D13C465 for ; Fri, 6 Jul 2007 12:39:53 +0000 (UTC) (envelope-from slepov@gmail.com) Received: by ug-out-1314.google.com with SMTP id o4so787923uge for ; Fri, 06 Jul 2007 05:39:52 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:to:subject:date:message-id:mime-version:content-type:content-transfer-encoding:x-mailer:x-mimeole:thread-index; b=BcnDNC4GFLGngXIILNNK+5ALNmuEGeiBzeB8neOX6UXn8tRrOrdT85FznoMdRzOX7U7s7mD80bFMs99HAu8uCVOHD2mzDi/UseZkOisU+ODE1pnfUZphrIE7PsOi+9blJH11g9y9ehcmxQU5lk0y1jQL1VsYkBqB/+jdfEfNowU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:to:subject:date:message-id:mime-version:content-type:content-transfer-encoding:x-mailer:x-mimeole:thread-index; b=DPZs1cyM9G5HxdOFWejft0vFBBBfK/bzSpU7EaEefKL4QhOaE8O5CuRfC5qzTckXkJdnZNJqvWf9gOpBH5SBrmKcUHVu22KcXw3MvQe9cqjlqgiR5GL5poYwmZANqgNi7mNWtlnAwydc8TLao11IsSPdNnowlzzPyoa6iMCMdzM= Received: by 10.82.136.4 with SMTP id j4mr1592974bud.1183723947074; Fri, 06 Jul 2007 05:12:27 -0700 (PDT) Received: from sergef2313b2a2 ( [217.107.79.9]) by mx.google.com with ESMTP id h6sm4906965nfh.2007.07.06.05.12.25 (version=SSLv3 cipher=RC4-MD5); Fri, 06 Jul 2007 05:12:26 -0700 (PDT) From: "Serge Slepov" To: Date: Fri, 6 Jul 2007 18:12:22 +0600 Message-ID: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> 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.3138 Thread-Index: Ace/xtPiOR/kgNa+RE6D7CsowxV2BA== Subject: How to produce FreeBSD app under Windows? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 12:39:53 -0000 Hello, I need to compile a C++ source into a binary that will run under FreeBSD, but I only have Windows installed. What's the easiest way for me to do this? Do I have to install FreeBSD? Thanks in advance. -Serge From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 12:52:48 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D713716A421 for ; Fri, 6 Jul 2007 12:52:48 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id 87A8913C46E for ; Fri, 6 Jul 2007 12:52:48 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 24099 invoked from network); 6 Jul 2007 07:52:48 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 6 Jul 2007 07:52:47 -0500 Date: Fri, 6 Jul 2007 22:52:43 +1000 From: Norberto Meijome To: Ariff Abdullah Message-ID: <20070706225243.0ce4ff88@localhost> In-Reply-To: <20070706194634.3dcb08c3.ariff@FreeBSD.org> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> <20070706210906.5a58b7b2@localhost> <20070706194634.3dcb08c3.ariff@FreeBSD.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: cblasius@gmail.com, freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 12:52:48 -0000 On Fri, 6 Jul 2007 19:46:34 +0800 Ariff Abdullah wrote: > Most of it are actually duplicates due to spawning threads or child > forks, so it is safe to ignore it. > gotcha. > > Is this normal / expected? > > > > It is as "normal/expected" as it is since I don't have any skype > sources to examine with :) . Why it leaves so many dangling opened > devices is beyond my comprehension. :) touche. I meant, is it normal to see so many opened devices.. answered :) cheers _________________________ {Beto|Norberto|Numard} Meijome I used to hate weddings; all the Grandmas would poke me and say, "You're next sonny!" They stopped doing that when i started to do it to them at funerals. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 12:58:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5998A16A468 for ; Fri, 6 Jul 2007 12:58:05 +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 1311913C4B8 for ; Fri, 6 Jul 2007 12:58:04 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I6nNr-0006HB-EY for freebsd-questions@freebsd.org; Fri, 06 Jul 2007 14:58:03 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Jul 2007 14:58:03 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 06 Jul 2007 14:58:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: Ivan Voras Date: Fri, 06 Jul 2007 14:57:49 +0200 Lines: 31 Message-ID: References: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigF69327225EED9165EA8A9B07" X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 1.5.0.12 (X11/20060911) In-Reply-To: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> X-Enigmail-Version: 0.94.2.0 Sender: news Subject: Re: How to produce FreeBSD app under Windows? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 12:58:05 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF69327225EED9165EA8A9B07 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Serge Slepov wrote: > I need to compile a C++ source into a binary that will run under FreeBS= D, > but I only have Windows installed. What's the easiest way for me to do= > this? Do I have to install FreeBSD? The Easiest Way (tm) for you is to install FreeBSD in a virtual machine=20 (see for example the free VMWare Server product). --------------enigF69327225EED9165EA8A9B07 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org iD8DBQFGjjxUldnAQVacBcgRAs1AAJ9wrU5G9wmJKOkQXjJNvrItM/zkqACgkZMH 33Z9GL335UBxGF6D1HPMnN0= =tZyJ -----END PGP SIGNATURE----- --------------enigF69327225EED9165EA8A9B07-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 13:02:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FF4716A46D for ; Fri, 6 Jul 2007 13:02:26 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: from sigma.octantis.com.au (ns2.octantis.com.au [207.44.189.124]) by mx1.freebsd.org (Postfix) with ESMTP id B7DEB13C455 for ; Fri, 6 Jul 2007 13:02:25 +0000 (UTC) (envelope-from freebsd@meijome.net) Received: (qmail 24741 invoked from network); 6 Jul 2007 08:02:25 -0500 Received: from 203-158-42-242.dyn.iinet.net.au (HELO localhost) (203.158.42.242) by sigma.octantis.com.au with (DHE-RSA-AES256-SHA encrypted) SMTP; 6 Jul 2007 08:02:24 -0500 Date: Fri, 6 Jul 2007 23:02:21 +1000 From: Norberto Meijome To: "Serge Slepov" Message-ID: <20070706230221.0e444055@localhost> In-Reply-To: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> References: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: How to produce FreeBSD app under Windows? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 13:02:26 -0000 On Fri, 6 Jul 2007 18:12:22 +0600 "Serge Slepov" wrote: > I need to compile a C++ source into a binary that will run under FreeBSD, > but I only have Windows installed. What's the easiest way for me to do > this? Do I have to install FreeBSD? Burn a CD with Freesbie (confirm first the compiler is available), boot with it, upload your src to it (via the network / USB key), compile, download away . alternatively...do any of the free shell hosters provide compilers? i doubt ... but u never know _________________________ {Beto|Norberto|Numard} Meijome What you are afraid to do is a clear indicator of the next thing you need to do. I speak for myself, not my employer. Contents may be hot. Slippery when wet. Reading disclaimers makes you go blind. Writing them is worse. You have been Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 13:08:28 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CA9616A400 for ; Fri, 6 Jul 2007 13:08:28 +0000 (UTC) (envelope-from M.Apitz@oclcpica.org) Received: from mail.pica.nl (mail.pica.nl [192.87.44.30]) by mx1.freebsd.org (Postfix) with ESMTP id C56F913C484 for ; Fri, 6 Jul 2007 13:08:27 +0000 (UTC) (envelope-from M.Apitz@oclcpica.org) Received: from rebelion.Sisis.de ([193.31.10.34]) by mail.pica.nl with Microsoft SMTPSVC(6.0.3790.3959); Fri, 6 Jul 2007 15:08:33 +0200 Received: (from guru@localhost) by rebelion.Sisis.de (8.13.8/8.13.8/Submit) id l66D8P6N050609; Fri, 6 Jul 2007 15:08:25 +0200 (CEST) (envelope-from m.apitz@oclcpica.org) X-Authentication-Warning: rebelion.Sisis.de: guru set sender to m.apitz@oclcpica.org using -f Date: Fri, 6 Jul 2007 15:08:25 +0200 From: Matthias Apitz To: freebsd-questions@freebsd.org Message-ID: <20070706130825.GA47249@rebelion.Sisis.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD 6.2-RELEASE (i386) X-OriginalArrivalTime: 06 Jul 2007 13:08:34.0127 (UTC) FILETIME=[C1F055F0:01C7BFCE] Cc: Grossmann Martin Subject: 6.2-REL && booting from USB to install X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 13:08:28 -0000 Hello, I've some server (a 2 years old HP NAT 1000s storage system) and I want to drop the installed W2k system and re-install it with FreeBSD 6.2R and later use it as a central backup-system with Bacula. The problem is that this server has no CD or DVD device, but can (theoretically) boot from external USB CD/DVD (which I too don't have). So I came up with the idea to put a 6.2-REL install CD onto an USB stick (960KByte), based on what Martin figured out in detail and described here: http://groups.google.com/group/lucky.freebsd.questions/msg/5c759b1c87376b22 The boot works fine in some notebook (in some other with USB 2.0 the BTX panics) but in the above mentioned HP box is says: error 1 lba 752976 No /boot/loader FreBSD/x86 Default: 0:ad(0,a)/boot/kernel/loader boot: Any idea about: - Why BTX panics with USB 2.0? - Why it says 'No /boot/loader' in the other box? (of course, the file is there). Thx in advance. Martin, btw: the line in your description: # echo "/dev/da0 / ufs rw,noatime 1 1" >/mnt/etc/fstab perhaps should be: # echo "/dev/da0s1 / ufs rw,noatime 1 1" >/mnt/etc/fstab matthias -- Matthias Apitz Manager Technical Support - OCLC PICA GmbH Gruenwalder Weg 28g - 82041 Oberhaching - Germany t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.oclcpica.org/ http://guru.UnixArea.de/ b http://gurucubano.blogspot.com/ OCLC PICA GmbH, Geschaeftsfuehrer: Christine Magin-Weeger, Norbert Weinberger Sitz der Gesellschaft: Oberhaching, HRB Muenchen: 113261 From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 13:27:30 2007 Return-Path: X-Original-To: freebsd-questions@FreeBSD.org Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07BB416A421 for ; Fri, 6 Jul 2007 13:27:30 +0000 (UTC) (envelope-from jorge.bigarte@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.230]) by mx1.freebsd.org (Postfix) with ESMTP id BC74413C45E for ; Fri, 6 Jul 2007 13:27:29 +0000 (UTC) (envelope-from jorge.bigarte@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so174324nzf for ; Fri, 06 Jul 2007 06:27:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=NS8U452BrfJPDtFY4Zp+R0cRakEWs9Xn0kr9/MqLTJ2tg2T93NWLE4bVL8q9vQRqf8Xm1B1fyT74wajtK7GR4i3VBgPMTNJ5t8p9iCR4jkO/QCaTeP6oXSFUJwDKsNXGetGopvXEp1dRKlFAmrp6N4eBoeX9NA8VyjGWTvagSXA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=k6Hf7cEZb+LArwN3A1XnjpNf9LzK24b5NLzxhe8bw6XNgl1r6chmnJjFx5BNqGjNt9RBOA8sbb9VRQVzEDqipn2Xx1iGgPBMCm8fcD3R0mZRAyU/3hr6QXCKJJI72wMpLZ6pmP+10wH8twk8RPcAJxQOf912HnhVZHeyt8DA/OM= Received: by 10.140.249.20 with SMTP id w20mr185735rvh.1183726994080; Fri, 06 Jul 2007 06:03:14 -0700 (PDT) Received: by 10.141.76.6 with HTTP; Fri, 6 Jul 2007 06:03:14 -0700 (PDT) Message-ID: <9da451100707060603v3582e50anace78e9d9917e84d@mail.gmail.com> Date: Fri, 6 Jul 2007 14:03:14 +0100 From: "Jorge Rosa - (BIGARTE)" To: freebsd-questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: iteam - Linux project, to freeBSD team. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 13:27:30 -0000 Hello all there. We are developing a open-source game called "iteam". It will be an "worms/wormux/gunbound" game like, with new ideas, etc. We wanna make it like a tribute to ALL (major) linux distros, includindg yours, of course, ;) and to Linux world specifically. So to be more "ralistic/oficial", we need your opinion about the character that is similar to your symbol (logotipe). Will be great if we could also count with your code skills, etc. We are using C++, SDL, etc. Please, see images and our main links here: (there is also our IRC channel) http://www.via2b.com/iteam/produtos.asp?highlight=Downloads_and_Links&id=509 Thankyou jorgerosa (iteam art and graphics) From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 13:38:18 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from misaki (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with SMTP id 7507716A400; Fri, 6 Jul 2007 13:38:17 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Date: Fri, 6 Jul 2007 21:38:13 +0800 From: Ariff Abdullah To: Norberto Meijome Message-Id: <20070706213813.5c2e6634.ariff@FreeBSD.org> In-Reply-To: <20070706225243.0ce4ff88@localhost> References: <200707051557.21884.cblasius@gmail.com> <20070706111251.7366d59e@localhost> <20070706162934.5d962e77.ariff@FreeBSD.org> <20070706210906.5a58b7b2@localhost> <20070706194634.3dcb08c3.ariff@FreeBSD.org> <20070706225243.0ce4ff88@localhost> Organization: FreeBSD X-Mailer: /usr/local/lib/ruby/1.8/net/smtp.rb Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__6_Jul_2007_21_38_13_+0800_EPAhrm0tq9MKR/_P" Cc: cblasius@gmail.com, freebsd-questions@freebsd.org Subject: Re: Skype - problem with sound device X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 13:38:18 -0000 --Signature=_Fri__6_Jul_2007_21_38_13_+0800_EPAhrm0tq9MKR/_P Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, 6 Jul 2007 22:52:43 +1000 Norberto Meijome wrote: > On Fri, 6 Jul 2007 19:46:34 +0800 > Ariff Abdullah wrote: >=20 > > Most of it are actually duplicates due to spawning threads or > > child forks, so it is safe to ignore it. > >=20 >=20 > gotcha. >=20 > > > Is this normal / expected?=20 > > > =20 > >=20 > > It is as "normal/expected" as it is since I don't have any skype > > sources to examine with :) . Why it leaves so many dangling opened > > devices is beyond my comprehension. >=20 > :) touche. I meant, is it normal to see so many opened devices.. > answered :) >=20 I don't recall skype being some kind of sound driver torture test regression software suite, but well... :) -- Ariff Abdullah FreeBSD ... Recording in stereo is obviously too advanced and confusing for us idiot ***** users :P ........ --Signature=_Fri__6_Jul_2007_21_38_13_+0800_EPAhrm0tq9MKR/_P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjkXFlr+deMUwTNoRAhDWAKC4QB22iWee8nhjLnPYSTzIeiEAbACfRlhr NRSlRopnTliQ9mWpcQIuRxQ= =SNov -----END PGP SIGNATURE----- --Signature=_Fri__6_Jul_2007_21_38_13_+0800_EPAhrm0tq9MKR/_P-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:00:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08D2216A46B for ; Fri, 6 Jul 2007 15:00:35 +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 D7E2C13C45D for ; Fri, 6 Jul 2007 15:00:34 +0000 (UTC) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 27239 invoked from network); 6 Jul 2007 15:00:33 -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 ; 6 Jul 2007 15:00:33 -0000 Received: by be-well.ilk.org (Postfix, from userid 1147) id 753F22842E; Fri, 6 Jul 2007 11:00:32 -0400 (EDT) To: "Dinesh Pandian" References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> <44fy433t4c.fsf@be-well.ilk.org> <3ea3ac8f0707050827s165d532cs8967f46a7d48d4f3@mail.gmail.com> From: Lowell Gilbert Date: Fri, 06 Jul 2007 11:00:32 -0400 In-Reply-To: <3ea3ac8f0707050827s165d532cs8967f46a7d48d4f3@mail.gmail.com> (Dinesh Pandian's message of "Thu\, 5 Jul 2007 23\:27\:08 +0800") Message-ID: <44vecx4lwv.fsf@be-well.ilk.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.99 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-questions@freebsd.org Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. 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, 06 Jul 2007 15:00:35 -0000 Please don't top-post. "Dinesh Pandian" writes: > On 7/5/07, Lowell Gilbert wrote: >> >> "Dinesh Pandian" writes: >> >> > Please help me out with a really annoying little problem that bugs me >> > everytime I try to install applications from ports. >> > >> > When I try to run portupgrade -a or portmanager -u, >> > when Make fetches the files from the servers, fetch >> > normally hangs randomly sometime through the downloading >> > of the distfile. The only solution I've thought about is aborting >> > the upgrade procedure and issuing the same command again, >> > hoping that fetch resumes where it left off. >> > >> > In bigger files, > 5MB, I'd have to repeat this process several >> > times to download a single distfile. >> > >> > I've tried setting the FTP_PASSIVE_MODE env ON and OFF >> > to no avail. >> > >> > I can't seem to find a problem with the internet connection >> > as httpd and ftpd works perfectly fine! >> >> Is there a firewall in the way? NAT? >> >> Have you tried using fetch(1) from the command line, with increased >> verbosity level? >> > No firewall/NAT along the path. It's a direct connection. > I'm pretty new to freebsd so I'm guessing that I did > something wrong with network config or something. :) > > -- Dinesh Possibly, but that would tend to make the transfer not start at all. Try to get more information from the download process, either by increasing the verbosity of the fetch(1) program, by comparing to other FTP download methods, by tracing the traffic, or better yet all of the above. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:24:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A59316A421 for ; Fri, 6 Jul 2007 15:24:16 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.freebsd.org (Postfix) with ESMTP id BE4AF13C468 for ; Fri, 6 Jul 2007 15:24:15 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: by ug-out-1314.google.com with SMTP id o4so825992uge for ; Fri, 06 Jul 2007 08:24:14 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=mRonDIQahBXRLB8DAm8zo/4t79/+OVP6iXEh5uTm84C+LsEdYzAIfM/kiDI/nGAidE0xoFwU88urAePx86pIyeySMUfYv5HxQg/3IYsjk+63vOY2MugqxMZRAau56M4K5MtKGBz9i33bkQ6AhIHa7+6AtizVzVsjLVquXQ/S8qY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer; b=iERxvJFo1+rI//5FBak2z8QO+iGIhiJ1MHAC3K7C5Y03IMffl6Nxm0okqFhI92TU3B9SWBcxYRu1Ho1RIYgKjIXdVi2Fbvq7FiR7Tz5f/goCYUdoMIDOC2BR3h5OwOcRYk9GVf4dxd5RwHHam1EFgwOkAFPY2d6XsDVIeC7uuEA= Received: by 10.78.184.2 with SMTP id h2mr350777huf.1183735454516; Fri, 06 Jul 2007 08:24:14 -0700 (PDT) Received: from ?IPv6:::ffff:127.0.0.1%709431296? ( [217.206.187.79]) by mx.google.com with ESMTP id h7sm18129546nfh.2007.07.06.08.24.12 (version=SSLv3 cipher=RC4-MD5); Fri, 06 Jul 2007 08:24:13 -0700 (PDT) From: Tom Evans To: "Jorge Rosa - (BIGARTE)" In-Reply-To: <9da451100707060603v3582e50anace78e9d9917e84d@mail.gmail.com> References: <9da451100707060603v3582e50anace78e9d9917e84d@mail.gmail.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-KAjlEvrnWVOWucxWD0fu" Date: Fri, 06 Jul 2007 16:24:11 +0100 Message-Id: <1183735451.1490.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Cc: freebsd-questions@FreeBSD.org Subject: Re: iteam - Linux project, to freeBSD team. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 15:24:16 -0000 --=-KAjlEvrnWVOWucxWD0fu Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2007-07-06 at 14:03 +0100, Jorge Rosa - (BIGARTE) wrote: > Hello all there. >=20 > We are developing a open-source game called "iteam". > It will be an "worms/wormux/gunbound" game like, with new ideas, etc. >=20 > We wanna make it like a tribute to ALL (major) linux distros, includindg > yours, of course, ;) and to Linux world specifically. When asking for assistance/coders from FreeBSD world, probably best to not refer to FreeBSD as a 'linux distro' ;) >=20 > So to be more "ralistic/oficial", we need your opinion about the characte= r > that is similar to your symbol (logotipe). >=20 > Will be great if we could also count with your code skills, etc. > We are using C++, SDL, etc. >=20 > Please, see images and our main links here: (there is also our IRC channe= l) > http://www.via2b.com/iteam/produtos.asp?highlight=3DDownloads_and_Links&i= d=3D509 >=20 > Thankyou > jorgerosa (iteam art and graphics) Looks good though :) --=-KAjlEvrnWVOWucxWD0fu Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGjl6WlcRvFfyds/cRAi6WAKCh02hg6WPy4wFSHPSbl2EAQycyhgCgsf3e 2Ib9mzC6FJGKT92SaLA2dDc= =YToT -----END PGP SIGNATURE----- --=-KAjlEvrnWVOWucxWD0fu-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:25:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 243AF16A492 for ; Fri, 6 Jul 2007 15:25:03 +0000 (UTC) (envelope-from darom@kern.ca.us) Received: from SM.kern.ca.us (SM.kern.ca.us [206.169.45.174]) by mx1.freebsd.org (Postfix) with ESMTP id 0C2F413C465 for ; Fri, 6 Jul 2007 15:25:02 +0000 (UTC) (envelope-from darom@kern.ca.us) Received: from localhost (localhost [127.0.0.1]) by SM.kern.ca.us (Postfix) with ESMTP id 504912D376; Fri, 6 Jul 2007 07:53:12 -0700 (PDT) Received: from SM.kern.ca.us ([127.0.0.1]) by localhost (mail [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32287-10; Fri, 6 Jul 2007 07:53:12 -0700 (PDT) Received: from sm.kern.ca.us (localhost [127.0.0.1]) by SM.kern.ca.us (Postfix) with ESMTP id 159FB2932B; Fri, 6 Jul 2007 07:53:12 -0700 (PDT) Received: from 206.169.45.183 (SquirrelMail authenticated user darom@kern.ca.us) by sm.kern.ca.us with HTTP; Fri, 6 Jul 2007 07:53:12 -0700 (PDT) Message-ID: <57122.206.169.45.183.1183733592.squirrel@sm.kern.ca.us> Date: Fri, 6 Jul 2007 07:53:12 -0700 (PDT) From: "Denis R." To: "Zbigniew Szalbot" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: amavisd-new at kern.ca.us Cc: freebsd-questions@freebsd.org Subject: re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 15:25:03 -0000 >>Now, if someone just changes the port in their browser to 3128 (squid proxy port), then all content filtering will be bypassed. I have the same setup at home for my kids. Check the /etc/ipnat.conf file to redirect all web traffic to your FreeBSD_gateway_IP_address:8080 (assuming your FreeBSD box acts as a firewall/squid/gateway). Regards, Den From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:27:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 788E216A473 for ; Fri, 6 Jul 2007 15:27:13 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 2F68B13C48A for ; Fri, 6 Jul 2007 15:27:13 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I6pi9-0004IU-GY; Fri, 06 Jul 2007 17:27:09 +0200 MIME-Version: 1.0 Date: Fri, 6 Jul 2007 17:27:09 +0200 From: Zbigniew Szalbot To: Denis R. In-Reply-To: <57122.206.169.45.183.1183733592.squirrel@sm.kern.ca.us> References: <57122.206.169.45.183.1183733592.squirrel@sm.kern.ca.us> Message-ID: <2edfd3b9ce6f94eaf624f1f3f5486eca@szalbot.homedns.org> X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 15:27:13 -0000 Hello, >>>Now, if someone just changes the port in their browser to 3128 (squid > proxy port), then all content filtering will be bypassed. > > I have the same setup at home for my kids. > > Check the /etc/ipnat.conf file to redirect all web traffic to your > FreeBSD_gateway_IP_address:8080 (assuming your FreeBSD box acts as a > firewall/squid/gateway). Now, I am not sure one thing. ipnat.conf is an ipfilter conf file. I use pf. I was wondering - maybe I should use squid setup defining an acl that would banned connection to port 3128 in squid? I am not sure yet how to do it (all of this is totally new to me) but I guess it is probably quite simple. Then I should probably set squid in the transparent mode which would enable me to point browsers to auto-discover proxy settings? Again, I am not sure my thinking is correct. Thanks! -- Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:35:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AAD3A16A469 for ; Fri, 6 Jul 2007 15:35:05 +0000 (UTC) (envelope-from jnatola@familycareintl.org) Received: from mail.familycareintl.org (mail.familycareintl.org [68.167.21.154]) by mx1.freebsd.org (Postfix) with ESMTP id 6E29213C4B8 for ; Fri, 6 Jul 2007 15:35:05 +0000 (UTC) (envelope-from jnatola@familycareintl.org) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 6 Jul 2007 11:35:04 -0400 Message-ID: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: buildworld inquiry Thread-Index: Ace/4zlr1Yzg0daSSNeOV2EFrUzJNQ== From: "Jean-Paul Natola" To: Subject: buildworld 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: Fri, 06 Jul 2007 15:35:05 -0000 Hi all, After failing to upgrade to 6.2 , I'm taking a members advice and going = to buildworld- I have two questions- How long will it take- And do I need to stop the other programs from running - The reason I ask is because I use the bsd box as a mail filter=20 Running Exim SA and ClamAv so I need to know how long it would take if I = have to take it off line- My box is a PIII 500mhz with 512 ram Filesystem Size Used Avail Capacity Mounted on /dev/ad0s1a 248M 90M 138M 40% / devfs 1.0K 1.0K 0B 100% /dev /dev/ad0s1e 248M 4.9M 223M 2% /tmp /dev/ad0s1f 4.9G 1.7G 2.8G 38% /usr /dev/ad0s1d 248M 128M 100M 56% /var Jean-Paul Natola Network Administrator Information Technology Family Care International 588 Broadway Suite 503 New York, NY 10012 Phone:212-941-5300 xt 36 Fax: 212-941-5563 Mailto: Jnatola@Familycareintl.org From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:50:39 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 350C416A46C for ; Fri, 6 Jul 2007 15:50:39 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id BC28B13C4C4 for ; Fri, 6 Jul 2007 15:50:38 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from 80-218-187-205.dclient.hispeed.ch ([80.218.187.205] helo=gahrtop.localhost) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1I6q4r-0001f4-Ae; Fri, 06 Jul 2007 17:50:37 +0200 Message-ID: <468E64C1.3000608@gahr.ch> Date: Fri, 06 Jul 2007 17:50:25 +0200 From: Pietro Cerutti User-Agent: Thunderbird 2.0.0.4 (X11/20070618) MIME-Version: 1.0 To: Jean-Paul Natola , User Questions References: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> X-Enigmail-Version: 0.95.0 OpenPGP: id=9571F78E; url=http://www.gahr.ch/pgp Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig2643C56163B3AD54A1B83481" X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - gahr.ch X-Source: X-Source-Args: X-Source-Dir: Cc: Subject: Re: buildworld 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: Fri, 06 Jul 2007 15:50:39 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig2643C56163B3AD54A1B83481 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Jean-Paul Natola wrote: > Hi all, Hello, >=20 > After failing to upgrade to 6.2 , I'm taking a members advice and going= to > buildworld- >=20 > I have two questions- >=20 > How long will it take- Hard to guess.. I have a PIII w/ 128M of ram and it takes around an hour or so... > And do I need to stop the other programs from running - No. You just have to reboot for the "installworld" step. Consult /usr/src/UPDATING (around line 390) for the right procedure. >=20 > The reason I ask is because I use the bsd box as a mail filter=20 >=20 > Running Exim SA and ClamAv so I need to know how long it would take if = I have > to take it off line- As said, just the time it takes to installworld, which is much less than it takes to buildworld, let's say a dozen of minutes... > Jean-Paul Natola > Network Administrator > Information Technology > Family Care International > 588 Broadway Suite 503 > New York, NY 10012 > Phone:212-941-5300 xt 36 > Fax: 212-941-5563 > Mailto: Jnatola@Familycareintl.org --=20 Pietro Cerutti PGP Public Key: http://gahr.ch/pgp --------------enig2643C56163B3AD54A1B83481 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFGjmTGwMJqmJVx944RCiNqAJ93HoJlTrRtWbJ/LwTrFIPQ/qm51gCdF7A7 2G3UmQq5Reo2qrO0mevQYSo= =AInJ -----END PGP SIGNATURE----- --------------enig2643C56163B3AD54A1B83481-- From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 15:53:14 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AA8716A421 for ; Fri, 6 Jul 2007 15:53:14 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.183]) by mx1.freebsd.org (Postfix) with ESMTP id 0999C13C45A for ; Fri, 6 Jul 2007 15:53:13 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so305247pye for ; Fri, 06 Jul 2007 08:53:13 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=n2J7NpuK5Hjmy/LJLYTN/LcjN8eKNn1JHZfm+JFw6Va1Z2tIzKCvHgNHOhcH1Z1sn7NuyNQ/IcirBdAoLty6tKjw5drk3Y6BxZBkeD6DyZ0kDDdki7llEDli7XB2/aj3Y42Y7un7Ma+IQd+4G9OwDF/Nv72PpniN6ioZQPj+Gmg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=qqvOyvJYx7qpvzr+brx5sMklA+0uNo3WgHVN49anCSrEjwK9SBn8QbhasWBpscki5YbUddD+6sU1UH9rsCQgYjdou64m/fjCZHivCb2MTeTLSybZ1prucOrNi1IarAUYDqyWYX+Xrg2s4itDaG8h7Jj7M1uLnBKHUdPYU5lUmPE= Received: by 10.35.85.1 with SMTP id n1mr1502067pyl.1183737192752; Fri, 06 Jul 2007 08:53:12 -0700 (PDT) Received: from ?192.168.1.2? ( [209.240.66.157]) by mx.google.com with ESMTP id x56sm17918990pyg.2007.07.06.08.53.11 (version=SSLv3 cipher=OTHER); Fri, 06 Jul 2007 08:53:12 -0700 (PDT) In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> References: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Eric Crist Date: Fri, 6 Jul 2007 10:53:09 -0500 To: Jean-Paul Natola X-Mailer: Apple Mail (2.752.3) Cc: freebsd-questions@freebsd.org Subject: Re: buildworld 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: Fri, 06 Jul 2007 15:53:14 -0000 On Jul 6, 2007, at 10:35 AMJul 6, 2007, Jean-Paul Natola wrote: > Hi all, > > After failing to upgrade to 6.2 , I'm taking a members advice and > going to > buildworld- > > I have two questions- > > How long will it take- > And do I need to stop the other programs from running - > > The reason I ask is because I use the bsd box as a mail filter > > Running Exim SA and ClamAv so I need to know how long it would take > if I have > to take it off line- > > My box is a PIII 500mhz with 512 ram > > Filesystem Size Used Avail Capacity > Mounted on > /dev/ad0s1a 248M 90M 138M 40% / > devfs 1.0K 1.0K 0B 100% /dev > /dev/ad0s1e 248M 4.9M 223M 2% /tmp > /dev/ad0s1f 4.9G 1.7G 2.8G 38% /usr > /dev/ad0s1d 248M 128M 100M 56% /var > Jean-Paul, You don't need to take the box offline, although it may slow things down a tad bit. You're probably looking at an overnight event for the buildworld. Make sure you buildkernel as well. Alternatively, you *could* buildworld/kernel on a second box, NFS mount the /usr/src and /usr/obj directories and installworld/kernel from there. We have ~30 similar FreeBSD systems and one build box. Kinda helps us stay consistent, etc. HTH Eric Crist From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 16:20:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1FCC16A46E for ; Fri, 6 Jul 2007 16:20:56 +0000 (UTC) (envelope-from dan@slightlystrange.org) Received: from catflap.slightlystrange.org (cpc5-cmbg1-0-0-cust497.cmbg.cable.ntl.com [86.6.1.242]) by mx1.freebsd.org (Postfix) with ESMTP id 95DF713C48C for ; Fri, 6 Jul 2007 16:20:56 +0000 (UTC) (envelope-from dan@slightlystrange.org) Received: by catflap.slightlystrange.org (Postfix, from userid 106) id 7BE1B64AE; Fri, 6 Jul 2007 17:20:54 +0100 (BST) Received: from stoopid.slightlystrange.org (stoopid.slightlystrange.org [10.1.3.142]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by catflap.slightlystrange.org (Postfix) with ESMTP id A49CB6182; Fri, 6 Jul 2007 17:20:53 +0100 (BST) Message-ID: <468E6BE2.3010203@slightlystrange.org> Date: Fri, 06 Jul 2007 17:20:50 +0100 From: Daniel Bye User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: Zbigniew Szalbot References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> In-Reply-To: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 16:20:57 -0000 Zbigniew Szalbot wrote: > hi, > > Thank you all for your comments re FreeBSD as a parental control and > gateway server. I have both squid and dansguardian working and I am left > with configuring them to optimize web browsing and the desired level of > control. > > I do not yet have FreeBSD functioning as a real gateway as I will be able > to do it at a later stage. However, there is one thing that leaves me > wondering. In order to use the content filtering as provided by > Dansguardian, I need to configure the browser to look for proxy on port > 8080. Now, if someone just changes the port in their browser to 3128 (squid > proxy port), then all content filtering will be bypassed. > > What do I need to do in order to avoid someone escaping the control? I am > also wondering how I should bring pf into the picture? I haven't tried yet > as the box is behind a router firewall anyway but I would appreciate your > comments how to marry squid & dansguardian with pf. You can use pf's redirection to catch all outbound traffic destined for port 80: rdr on $int_if inet proto tcp from $internal_net to ! port www -> $proxy_host port $proxy_port Define the macros appropriately in /etc/pf.conf and you're away. is a pf table that contains all the firewall machine's addresses: table persist { self } Any packets originating from your internal network, bound for port 80 on any host other than the firewall (you may need to fine tune this, depending on your needs), are redirected to the designated host/port. No need to set up per-client proxies as the firewall handles it transparently. Make sure squid is built with SQUID_PF=1 (from make config). There are some settings in squid.conf you may need to tweak - there's plenty of documentation on their website. Transparent proxying requires no client configuration, but it also means that proxy authentication won't work, because as far as the client is concerned, it is talking to an end server, not a proxy. If this is a concern, then you can just set up your clients to explicitly look for the proxy, and tighten up your firewall rules so that altering the proxy settings might bypass the proxy/filter, but will also get any web traffic blocked at the firewall. They'll soon go back to using the supplied proxy settings! I'm not sure about automatic proxy config, as I've never used it. It is not, though, a type of transparent proxying, which is run entirely on the firewall/proxy hosts, without any knowledge of it on the part of the client. HTH Dan From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 16:24:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2889116A46E for ; Fri, 6 Jul 2007 16:24:36 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout2.cac.washington.edu (mxout2.cac.washington.edu [140.142.33.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0878313C43E for ; Fri, 6 Jul 2007 16:24:36 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout2.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.06) with ESMTP id l66GOZCL007071 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 6 Jul 2007 09:24:35 -0700 X-Auth-Received: from [192.168.10.45] (c-24-10-12-194.hsd1.ca.comcast.net [24.10.12.194]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l66GOY5j013388 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 6 Jul 2007 09:24:34 -0700 Message-ID: <468E6CC8.1070608@u.washington.edu> Date: Fri, 06 Jul 2007 09:24:40 -0700 From: Garrett Cooper User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Gergely CZUCZY References: <20070705142429.GA91124@harmless.hu> In-Reply-To: <20070705142429.GA91124@harmless.hu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.2.304607, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.7.6.90636 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: freebsd-questions@freebsd.org Subject: Re: ich9, ahci X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 16:24:36 -0000 Gergely CZUCZY wrote: > Good morning, > > I'd like to whether the ICH9 SATA chipset and the AHCI mode/or-whatever is > supported under FreeBSD 6.2 or 6-STABLE. > > I've just got a new motherboard with this new intel P35 chipset, and it has > some brand new hardware. I'm looking for the perspectives, how could i use this > board with freebsd. > > Is the ICH9 ATA controller supported, and AHCI? > If not, are there patches against 6-STABLE, or when will it be supported? > > Please include me in the replies since I'm not subscribed to the list. > > Sincerely, > > Gergely Czuczy > mailto: gergely.czuczy@harmless.hu > > 965/975 works under FreeBSD, but that's ICH8. I think that the new chipset should work though. -Garrett From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 16:26:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A82AB16A41F for ; Fri, 6 Jul 2007 16:26:42 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 5F45513C487 for ; Fri, 6 Jul 2007 16:26:42 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I6qdg-0004Wx-Hz; Fri, 06 Jul 2007 18:26:36 +0200 MIME-Version: 1.0 Date: Fri, 6 Jul 2007 18:26:36 +0200 From: Zbigniew Szalbot To: Daniel Bye In-Reply-To: <468E6BE2.3010203@slightlystrange.org> References: <468E6BE2.3010203@slightlystrange.org> Message-ID: <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 16:26:42 -0000 Hi Daniel, On Fri, 06 Jul 2007 17:20:50 +0100, Daniel Bye wrote: > You can use pf's redirection to catch all outbound traffic destined for > port 80: > > rdr on $int_if inet proto tcp from $internal_net to ! port www -> > $proxy_host port $proxy_port > > Define the macros appropriately in /etc/pf.conf and you're away. > > is a pf table that contains all the firewall machine's addresses: > > table persist { self } > > Any packets originating from your internal network, bound for port 80 on > any host other than the firewall (you may need to fine tune this, > depending on your needs), are redirected to the designated host/port. No > need to set up per-client proxies as the firewall handles it > transparently. Great! Thank you so much! Now this should really speed me up nd it is perfect solution as no client configuration is needed and no escaping possible! Thanks again! I really appreciate such a helpful community as is here! Hard to find these days. Thank you! -- Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:00:47 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4B4216A400 for ; Fri, 6 Jul 2007 17:00:47 +0000 (UTC) (envelope-from jnatola@familycareintl.org) Received: from mail.familycareintl.org (mail.familycareintl.org [68.167.21.154]) by mx1.freebsd.org (Postfix) with ESMTP id 71E3613C4D0 for ; Fri, 6 Jul 2007 17:00:47 +0000 (UTC) (envelope-from jnatola@familycareintl.org) X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 6 Jul 2007 13:00:46 -0400 Message-ID: <3A85D7EF44E1C744BF6434691F5659E9702CEC@www.fcimail.org> In-Reply-To: <468E64C1.3000608@gahr.ch> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: buildworld inquiry-Failing Thread-Index: Ace/5WvYG5rrU7/sSkuB8OJK/tys0gACUfXQ From: "Jean-Paul Natola" To: "Pietro Cerutti" , "User Questions" Cc: Subject: RE: buildworld inquiry-Failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 17:00:47 -0000 Jean-Paul Natola wrote: > Hi all, Hello, >=20 > After failing to upgrade to 6.2 , I'm taking a members advice and = going to > buildworld- >=20 > I have two questions- >=20 > How long will it take- Hard to guess.. I have a PIII w/ 128M of ram and it takes around an hour or so... > And do I need to stop the other programs from running - No. You just have to reboot for the "installworld" step. Consult /usr/src/UPDATING (around line 390) for the right procedure. >=20 > The reason I ask is because I use the bsd box as a mail filter=20 >=20 > Running Exim SA and ClamAv so I need to know how long it would take if = I have > to take it off line- As said, just the time it takes to installworld, which is much less than it takes to buildworld, let's say a dozen of minutes... Ok this has run 2 times with the same result- is this a "sign" that = my box is doomed for disaster- sysinstall upgrade failed - the CD upgrade failed - and now CVS upgrade is failing- Is there anywhere that would tell me WHY its failing? arsing supfile "standard-supfile" Connecting to cvsup7.FreeBSD.org Connected to cvsup7.FreeBSD.org Server software version: SNAP_16_1g Negotiating file attribute support Exchanging collection information Establishing multiplexed-mode data connection Running Updating collection src-all/cvs Cleaning up ... Inactivity timeout Will retry at 12:06:25 Retrying Connecting to cvsup7.FreeBSD.org Connected to cvsup7.FreeBSD.org Server software version: SNAP_16_1g Negotiating file attribute support Exchanging collection information Establishing multiplexed-mode data connection Running Updating collection src-all/cvs Cleaning up ... Inactivity timeout Will retry at 13:05:15 From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:02:00 2007 Return-Path: X-Original-To: FreeBSD-questions@FreeBSD.org Delivered-To: FreeBSD-questions@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 645) id 8F2BF16A46E; Fri, 6 Jul 2007 17:02:00 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20070706170200.8F2BF16A46E@hub.freebsd.org> Date: Fri, 6 Jul 2007 17:02:00 +0000 (UTC) From: grog@FreeBSD.ORG (Greg Lehey) Cc: Subject: How to get best results from FreeBSD-questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 17:02:00 -0000 How to get the best results from FreeBSD questions. =================================================== Last update $Date: 2005/08/10 02:21:44 $ This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. ===================================================================== Contents: I: Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V: How to answer a question to FreeBSD-questions I: Introduction =============== This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions ============================================== When you subscribed to FreeBSD-questions, you got a welcome message from freebsd-questions-request@FreeBSD.ORG. In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions@freebsd.org mailing list! If you ever want to unsubscribe or change your options (eg, switch to or from digest mode, change your password, etc.), visit your subscription page at: http://lists.freebsd.org/mailman/options/freebsd-questions/me@me.org (obviously, substitute your mail address for "me@me.org"). You can also make such adjustments via email by sending a message to: freebsd-questions-request@freebsd.org with the word 'help' in the subject or body (don't include the quotes), and you will get back a message with instructions. You must know your password to change your options (including changing the password, itself) or to unsubscribe. Normally, Mailman will remind you of your freebsd.org mailing list passwords once every month, although you can disable this if you prefer. This reminder will also include instructions on how to unsubscribe or change your account options. There is also a button on your options page that will email your current password to you. Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as grog@lemis.de. Since then, I have changed it to grog@lemis.com. If I were to try to remove grog@lemis.com from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to FreeBSD-questions. If that's the case, you'll have to figure out which one it is and get your name taken off that one. If you're not sure which one it might be, check the headers of the messages you receive from freebsd-questions: maybe there's a clue there. If you've done all this, and you still can't figure out what's going on, send a message to Postmaster@FreeBSD.org, and he will sort things out for you. Don't send a message to FreeBSD-questions: they can't help you. III: Should I ask -questions or -hackers? ========================================= Two mailing lists handle general questions about FreeBSD, FreeBSD-questions and FreeBSD-hackers. In some cases, it's not really clear which group you should ask. The following criteria should help for 99% of all questions, however: If the question is of a general nature, first check whether this isn't a Frequently Asked Question (FAQ). There's a list of these questions at http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/index.html, and also on your own system (once you've installed it) at /usr/share/doc/en/books/faq/index.html. Check there, and if you don't find an answer, ask FreeBSD-questions. Examples might be questions about installing FreeBSD or the use of a particular UNIX utility. If you think the question relates to a bug, but you're not sure, or you don't know how to look for it, send the message to FreeBSD-questions. If the question relates to a bug, and you're almost sure that it's a bug (for example, you can pinpoint the place in the code where it happens, and you maybe have a fix), then send the message to FreeBSD-hackers. You should also enter a problem report with the send-pr utility. If the question relates to enhancements to FreeBSD, and you can make suggestions about how to implement them, then send the message to FreeBSD-hackers. If the question is of particularly technical nature, such as implementation details or suggestions for improvements, then send the message to FreeBSD-hackers. There are also a number of other specialized mailing lists, for example FreeBSD-isp, which caters to the interests of ISPs (Internet Service Providers) who run FreeBSD. If you happen to be an ISP, this doesn't mean you should automatically send your questions to FreeBSD-isp. The criteria above still apply, and it's in your interest to stick to them, since you're more likely to get good results that way. IV: How to submit a question ============================= When submitting a question to FreeBSD-questions, consider the following points: 1. Remember that nobody gets paid for answering a FreeBSD question. They do it of their own free will. You can influence this free will positively by submitting a well-formulated question supplying as much relevant information as possible. You can influence this free will negatively by submitting an incomplete, illegible, or rude question. It's perfectly possible to send a message to FreeBSD-questions and not get an answer even if you follow these rules. It's much more possible to not get an answer if you don't. In the rest of this document, we'll look at how to get the most out of your question to FreeBSD-questions. 2. Not everybody who answers FreeBSD questions reads every message: they look at the subject line and decide whether it interests them. Clearly, it's in your interest to specify a subject. ``FreeBSD problem'' or ``Help'' aren't enough. If you provide no subject at all, many people won't bother reading it. If your subject isn't specific enough, the people who can answer it may not read it. 3. When sending a new message, well, send a new message. Don't reply to some other message, erase the old content and change the subject line. That leaves an In-reply-to: header which many mail readers use to thread messages, so your message shows up as a reply to some other message. People often delete messages a whole thread at a time, so apart from irritating people, you also run a chance of having the message deleted unread. 4. Format your message so that it is legible, and PLEASE DON'T SHOUT!!!!!. We appreciate that a lot of people don't speak English as their first language, and we try to make allowances for that, but it's really painful to try to read a message written full of typos or without any line breaks. A lot of badly formatted messages come from bad mailers or badly configured mailers. The following mailers are known to send out badly formatted messages without you finding out about them: Eudora exmh Microsoft Exchange Microsoft Internet Mail Microsoft Outlook Netscape As you can see, the mailers in the Microsoft world are frequent offenders. If at all possible, use a UNIX mailer. If you must use a mailer under Microsoft environments, make sure it is set up correctly. Try not to use MIME: a lot of people use mailers which don't get on very well with MIME. For further information on this subject, check out http://www.lemis.com/email.html. 5. Make sure your time and time zone are set correctly. This may seem a little silly, since your message still gets there, but many of the people you are trying to reach get several hundred messages a day. They frequently sort the incoming messages by subject and by date, and if your message doesn't come before the first answer, they may assume they missed it and not bother to look. 6. Don't include unrelated questions in the same message. Firstly, a long message tends to scare people off, and secondly, it's more difficult to get all the people who can answer all the questions to read the message. 7. Specify as much information as possible. This is a difficult area, and we need to expand on what information you need to submit, but here's a start: If you get error messages, don't say ``I get error messages'', say (for example) ``I get the error message 'No route to host'''. If your system panics, don't say ``My system panicked'', say (for example) ``my system panicked with the message 'free vnode isn't'''. If you have difficulty installing FreeBSD, please tell us what hardware you have. In particular, it's important to know the IRQs and I/O addresses of the boards installed in your machine. If you have difficulty getting PPP to run, describe the configuration. Which version of PPP do you use? What kind of authentication do you have? Do you have a static or dynamic IP address? What kind of messages do you get in the log file? 8. If you don't get an answer immediately, or if you don't even see your own message appear on the list immediately, don't resend the message. Wait at least 24 hours. The FreeBSD mailer offloads messages to a number of subordinate mailers around the world, and sometimes it can take several hours for the mail to get through. And once it gets through, the one person who might know the answer will probably just have gone to bed in his part of the world. 9. If you do all this, and you still don't get an answer, there could be other reasons. For example, the problem is so complicated that nobody knows the answer, or the person who does know the answer was offline. If you don't get an answer after, say, a week, it might help to re-send the message. If you don't get an answer to your second message, though, you're probably not going to get one from this forum. Resending the same message again and again will only make you unpopular. To summarize, let's assume you know the answer to the following question (yes, it's the same one in each case :-). You choose which of these two questions you would be more prepared to answer: Message 1: Subject: (none) I just can't get hits damn silly FereBSD system to workd, and Im really good at this tsuff, but I have never seen anythign sho difficult to install, it jst wont work whatever I try so why don't y9ou guys tell me what I doing wrong. ---------------------------------------------------------------------- Message 2: Subject: Problems installing FreeBSD I've just got the FreeBSD 2.1.5 CD-ROM from Walnut Creek, and I'm having a lot of difficulty installing it. I have a 66 MHz 486 with 16 MB of memory and an Adaptec 1540A SCSI board, a 1.2GB Quantum Fireball disk and a Toshiba 3501XA CD-ROM drive. The installation works just fine, but when I try to reboot the system, I get the message "Missing Operating System". ---------------------------------------------------------------------- V: How to follow up to a question ================================= Often you will want to send in additional information to a question you have already sent. The best way to do this is to reply to your original message. This has three advantages: 1. You include the original message text, so people will know what you're talking about. Don't forget to trim unnecessary text out, though. 2. The text in the subject line stays the same (you did remember to put one in, didn't you?). Many mailers will sort messages by subject. This helps group messages together. 3. The message reference numbers in the header will refer to the previous message. Some mailers, such as mutt, can thread messages, showing the exact relationships between the messages. VI: How to answer a question ============================ Before you answer a question to FreeBSD-questions, consider: 1. A lot of the points on submitting questions also apply to answering questions. Read them. 2. Has somebody already answered the question? The easiest way to check this is to sort your incoming mail by subject: then (hopefully) you'll see the question followed by any answers, all together. If somebody has already answered it, it doesn't automatically mean that you shouldn't send another answer. But it makes sense to read all the other answers first. 3. Do you have something to contribute beyond what has already been said? In general, "Yeah, me too" answers don't help much, although there are exceptions, like when somebody is describing a problem he's having, and he doesn't know whether it's his fault or whether there's something wrong with the hardware or software. If you do send a "me too" answer, you should also include any further relevant information. 4. Are you sure you understand the question? Very frequently, the person who asks the question is confused or doesn't express himself very well. Even with the best understanding of the system, it's easy to send a reply which doesn't answer the question. This doesn't help: you'll leave the person who submitted the question more frustrated or confused than ever. If nobody else answers, and you're not too sure either, you can always ask for more information. 5. Are you sure your answer is correct? If not, wait a day or so. If nobody else comes up with a better answer, you can still reply and say, for example, "I don't know if this is correct, but since nobody else has replied, why don't you try replacing your ATAPI CD-ROM with a frog?". 6. Unless there's a good reason to do otherwise, reply to the sender and to FreeBSD-questions. Many people on the FreeBSD-questions are "lurkers": they learn by reading messages sent and replied to by others. If you take a message which is of general interest off the list, you're depriving these people of their information. Be careful with group replies; lots of people send messages with hundreds of CCs. If this is the case, be sure to trim the Cc: lines appropriately. 7. Include relevant text from the original message. Trim it to the minimum, but don't overdo it. It should still be possible for somebody who didn't read the original message to understand what you're talking about. 8. Use some technique to identify which text came from the original message, and which text you add. I personally find that prepending ``> '' to the original message works best. Leaving white space after the ``> '' and leave empty lines between your text and the original text both make the result more readable. 9. Put your response in the correct place (after the text to which it replies). It's very difficult to read a thread of responses where each reply comes before the text to which it replies. 10. Most mailers change the subject line on a reply by prepending a text such as ``Re: ''. If your mailer doesn't do it automatically, you should do it manually. 11. If the submitter didn't abide by format conventions (lines too long, inappropriate subject line), please fix it. In the case of an incorrect subject line (such as ``HELP!!??''), change the subject line to (say) ``Re: Difficulties with sync PPP (was: HELP!!??)''. That way other people trying to follow the thread will have less difficulty following it. In such cases, it's appropriate to say what you did and why you did it, but try not to be rude. If you find you can't answer without being rude, don't answer. If you just want to reply to a message because of its bad format, just reply to the submitter, not to the list. You can just send him this message in reply, if you like. $Id: Howto-ask-questions,v 1.6 2005/08/10 02:21:44 grog Exp $ _______________________________________________ Thanks to Josh Paetzel for updating this document to describe mailman. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:02:00 2007 Return-Path: X-Original-To: FreeBSD-questions@FreeBSD.org Delivered-To: FreeBSD-questions@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 645) id 93AB016A474; Fri, 6 Jul 2007 17:02:00 +0000 (UTC) To: FreeBSD-questions@FreeBSD.org Message-Id: <20070706170200.93AB016A474@hub.freebsd.org> Date: Fri, 6 Jul 2007 17:02:00 +0000 (UTC) From: grog@FreeBSD.ORG (Greg Lehey) Cc: Subject: "The Complete FreeBSD": errata and addenda X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 17:02:00 -0000 The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, The Complete FreeBSD, published by O'Reilly, is no exception. Inevitably, a number of bugs and changes have surfaced. "The Complete FreeBSD" has been through a total of five editions, including its predecessor "Installing and Running FreeBSD". Two of these have been reprinted with corrections. I maintain a series of errata pages. Start at http://www.lemis.com/errata-4.html to find out how to get the errata information. Note also that the book has now been released for free download in PDF form. Instead of downloading the changed pages, you may prefer to download the entire book. See http://www.lemis.com/grog/Documentation/CFBSD/ for more information. Have you found a problem with the book, or maybe something confusing? Please let me know: I'm no longer constantly updating it, but I may be able to help Greg From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:14:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 59CB916A400 for ; Fri, 6 Jul 2007 17:14:22 +0000 (UTC) (envelope-from lnb@freebsdsystems.com) Received: from mx1.freebsdsystems.com (ns.freebsdsystems.com [69.90.68.2]) by mx1.freebsd.org (Postfix) with ESMTP id 0218613C4C2 for ; Fri, 6 Jul 2007 17:14:21 +0000 (UTC) (envelope-from lnb@freebsdsystems.com) Received: (qmail 82805 invoked by uid 89); 6 Jul 2007 16:46:54 -0000 Received: from unknown (HELO panda.freebsdsystems.com) (lnb@freebsdsystems.com@216.235.8.115) by mx1.freebsdsystems.com with ESMTPA; 6 Jul 2007 16:46:54 -0000 Message-ID: <468E723B.9010809@freebsdsystems.com> Date: Fri, 06 Jul 2007 12:47:55 -0400 From: Lanny Baron Organization: Freedom Technologies Corp. FreeBSD Systems User-Agent: Thunderbird 2.0.0.4 (X11/20070624) MIME-Version: 1.0 To: Javier Henderson References: <20070706080744899037.5642d86d@kjsl.com> In-Reply-To: <20070706080744899037.5642d86d@kjsl.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: Motherboard with console redirection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 17:14:22 -0000 Hi Javier, Have a look at our servers. Guaranteed FreeBSD compatible. Regards, +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Lanny Baron Freedom Technologies Corporation High Performance Servers and RAID Systems Toll Free: 1.877.963.1900 http://www.freedomtc.com +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= Javier Henderson wrote: > Greetings, > > I'm looking for recommendations for motherboards that sport serial console redirection, which are known to work well with FreeBSD. I don't have a processor religion, and relatively modest needs: a few SATA ports, preferably built-in video (for the initial setup), at least one IDE channel, support for at least 2GB of RAM and one processor slot (or two, if it will work with a single processor). Built-in gigabit Ethernet would be nice. > > Thanks. > > -jav > > > _______________________________________________ > freebsd-hardware@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hardware > To unsubscribe, send any mail to "freebsd-hardware-unsubscribe@freebsd.org" From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:16:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A653A16A46B for ; Fri, 6 Jul 2007 17:16:29 +0000 (UTC) (envelope-from mikel.king@techally.com) Received: from arrakis.techally.com (arrakis.techally.com [208.185.33.253]) by mx1.freebsd.org (Postfix) with ESMTP id 38D0613C45E for ; Fri, 6 Jul 2007 17:16:26 +0000 (UTC) (envelope-from mikel.king@techally.com) Received: (qmail 55023 invoked from network); 6 Jul 2007 09:02:43 -0400 Received: from wireless-12-40-110-203.bryantpark.org (HELO ?12.40.110.203?) (12.40.110.203) by arrakis.techally.com with SMTP; 6 Jul 2007 09:02:43 -0400 In-Reply-To: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> References: <000d01c7bfc6$ea24d260$9920000a@sergef2313b2a2> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Mikel King Date: Fri, 6 Jul 2007 09:03:29 -0400 To: "Serge Slepov" X-Mailer: Apple Mail (2.752.2) Cc: freebsd-questions@freebsd.org Subject: Re: How to produce FreeBSD app under Windows? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 17:16:29 -0000 On Jul 6, 2007, at 8:12 AM, Serge Slepov wrote: > > Hello, > > I need to compile a C++ source into a binary that will run under > FreeBSD, > but I only have Windows installed. What's the easiest way for me > to do > this? Do I have to install FreeBSD? > > Thanks in advance. > -Serge > > _______________________________________________ > 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" Serge, These are just some random thoughts of how you could accomplish your goal. You could look for a system w/ ssh access so that you could obtain a shell account through which to build your app. Another option would be to look into VMWare Player for Windows where you could launch a prebuilt FreeBSD instance. Additionally you could look into either VMWare Workstation or Parallels to create your own virtual server for this development work. However, I would wonder why you were building an app for FreeBSD but not actually already running it? Cheers, Mikel King CITO, Tech Alliance, INC Senior Editor, Daemon News 39 West Fourteenth Street Second Floor New York, NY 10011 http://www.techally.com http://www.daemonnews.org t: 212.727.2100x132 +------------------------------------------+ How do you spell cooperation? Pessimists use each other, but optimists help each other. Collaboration feeds your spirit, while competition only stokes your ego. You'll find the best way to get along. +------------------------------------------+ From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 17:31:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9EC716A421 for ; Fri, 6 Jul 2007 17:31:27 +0000 (UTC) (envelope-from d1945@sbcglobal.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 A0BF413C448 for ; Fri, 6 Jul 2007 17:31:27 +0000 (UTC) (envelope-from d1945@sbcglobal.net) Received: (qmail 32080 invoked from network); 6 Jul 2007 17:04:47 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=sbcglobal.net; h=Received:X-YMail-OSG:Received:Date:From:To:Subject:Message-ID:Mail-Followup-To:References:Mime-Version:Content-Type:Content-Disposition:In-Reply-To:User-Agent; b=jCPI7zYrNZoiF898ZX2OpTagkPShOdFhnN1fdvOKRXxj0cjp5zSsaZzKkguvI9awYHQqNKUFpo9pJEqn3/4KgrxxDe1KRgS12eTuOvf8uxQrxT5erN0umfLvvGETvgZzRnnpRGIz5t7SucFtuTF1R3NN7FngxZMdT9R05hopweA= ; Received: from unknown (HELO home) (d1945@sbcglobal.net@69.104.191.121 with login) by smtp105.sbc.mail.mud.yahoo.com with SMTP; 6 Jul 2007 17:04:46 -0000 X-YMail-OSG: 6ZYseOkVM1kBELU5ckElVYxhhG58MxhS0HVl2zqOLm.y_uRJNotDI5EEyjRC4yxwGpPzWg3ieA-- Received: by home (sSMTP sendmail emulation); Fri, 6 Jul 2007 10:04:45 -0700 Date: Fri, 6 Jul 2007 10:04:45 -0700 From: George To: freebsd-questions@freebsd.org Message-ID: <20070706170445.GA988@home> Mail-Followup-To: freebsd-questions@freebsd.org References: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E9702CE9@www.fcimail.org> User-Agent: Mutt/1.4.2.1i Subject: Re: buildworld 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: Fri, 06 Jul 2007 17:31:27 -0000 On Fri, Jul 06, 2007 at 11:35:04AM -0400, Jean-Paul Natola wrote: > After failing to upgrade to 6.2, I'm taking a members advice and going > to buildworld. I have two questions. How long will it take. And do I > need to stop the other programs from running. The reason I ask is > because I use the bsd box as a mail filter. Running Exim SA and > ClamAv so I need to know how long it would take if I have to take it > off line- > > My box is a PIII 500mhz with 512 ram I have many such machines. I noted the following numbers when recently building world and kernel on one of my VIA C3 machines at home. The numbers are more or less in line with what you can expect from a single processor, single drive (ATA) PIII system with zero load: # time make buildworld real 159m21.710s user 133m1.959s sys 21m58.076s # time make buildkernel real 3111.62s user 2637.72s sys 264.71s That works out to about 3-1/2 hours total. In your case, it looks like an overnight job unless you take if offline. Me, I prefer to build on (and install from) a separate, dedicated box. Less groaning if something goes wrong among other things. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 18:03:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE21416A400 for ; Fri, 6 Jul 2007 18:03:40 +0000 (UTC) (envelope-from Christopher.Manders@ucsf.edu) Received: from emfmcb01.ucsfmedicalcenter.org (emfmcb01.ucsfmedicalcenter.org [64.54.46.97]) by mx1.freebsd.org (Postfix) with ESMTP id B565A13C4AD for ; Fri, 6 Jul 2007 18:03:40 +0000 (UTC) (envelope-from Christopher.Manders@ucsf.edu) Received: from 64.54.128.151 by emfmcb01.ucsfmedicalcenter.org with ESMTP (Tumbleweed Email Firewall SMTP Relay (Email Firewall v6.1.0)); Fri, 06 Jul 2007 11:16:06 -0700 X-Server-Uuid: E2E48A14-EE5B-4280-A138-188440602EDD X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Fri, 6 Jul 2007 11:01:06 -0700 Message-ID: <20DDD429AF23524CB1C9F8BF28947DCE9BF8FA@EXVS07.net.ucsf.edu> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Motherboard with console redirection Thread-Index: Ace/8R/Vs+D5Kp+dTfKkv+/9qAR3wwABn/la References: <20070706080744899037.5642d86d@kjsl.com> <468E723B.9010809@freebsdsystems.com> From: "Manders, Christopher" To: "Lanny Baron" , "Javier Henderson" X-WSS-ID: 6A90596C0Q81644030-01-01 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: RE: Motherboard with console redirection X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 18:03:40 -0000 We use FineTec computers. You can ask them to build systems with MB = w/serial redirection capability.=20 We are very happy with their service and support as well. HTH Cheers! -CJM --- Christopher Jay Manders Sr. Security Engineer=20 University of California San Francisco Office of Academic and Administrative Information Systems Enterprise = Information Security (OAAIS:EIS) http://isecurity.ucsf.edu/ -----Original Message----- From: owner-freebsd-questions@freebsd.org on behalf of Lanny Baron Sent: Fri 7/6/2007 9:47 AM To: Javier Henderson Cc: freebsd-questions@freebsd.org; freebsd-hardware@freebsd.org Subject: Re: Motherboard with console redirection =20 Hi Javier, Have a look at our servers. Guaranteed FreeBSD compatible. Regards, +=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+= =3D+=3D+=3D+=3D+=3D Lanny Baron Freedom Technologies Corporation High Performance Servers and RAID Systems Toll Free: 1.877.963.1900 http://www.freedomtc.com +=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+=3D+= =3D+=3D+=3D+=3D+=3D Javier Henderson wrote: > Greetings, >=20 > I'm looking for recommendations for motherboards that sport serial = console redirection, which are known to work well with FreeBSD. I don't = have a processor religion, and relatively modest needs: a few SATA = ports, preferably built-in video (for the initial setup), at least one = IDE channel, support for at least 2GB of RAM and one processor slot (or = two, if it will work with a single processor). Built-in gigabit Ethernet = would be nice. >=20 > Thanks. >=20 > -jav >=20 >=20 > _______________________________________________ > freebsd-hardware@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hardware > To unsubscribe, send any mail to = "freebsd-hardware-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 Fri Jul 6 19:34:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC59116A421 for ; Fri, 6 Jul 2007 19:34:05 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id C771F13C45A for ; Fri, 6 Jul 2007 19:34:05 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 48F2551910 for ; Fri, 6 Jul 2007 15:34:03 -0400 (EDT) Date: Fri, 6 Jul 2007 20:33:59 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070706203359.411e7416@gumby.homeunix.com.> In-Reply-To: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 19:34:06 -0000 On Fri, 6 Jul 2007 13:20:07 +0200 Zbigniew Szalbot wrote: > I do not yet have FreeBSD functioning as a real gateway as I will be > able to do it at a later stage. However, there is one thing that > leaves me wondering. In order to use the content filtering as > provided by Dansguardian, I need to configure the browser to look for > proxy on port 8080. Now, if someone just changes the port in their > browser to 3128 (squid proxy port), then all content filtering will > be bypassed. > If this box is not the gateway, there is no point in doing anything about this because they can simply turn-off proxying and go direct to the internet. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 19:44:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 341E616A478 for ; Fri, 6 Jul 2007 19:44:07 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 0E54613C4D3 for ; Fri, 6 Jul 2007 19:44:06 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 09CC55194F for ; Fri, 6 Jul 2007 15:44:02 -0400 (EDT) Date: Fri, 6 Jul 2007 20:43:58 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070706204358.15bd7730@gumby.homeunix.com.> In-Reply-To: <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> References: <468E6BE2.3010203@slightlystrange.org> <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 19:44:07 -0000 On Fri, 6 Jul 2007 18:26:36 +0200 Zbigniew Szalbot wrote: > Great! Thank you so much! Now this should really speed me up nd it is > perfect solution as no client configuration is needed and no escaping > possible! Thanks again! Unless they reconfigure their browser to use one of the numerous free proxy servers. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 19:47:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B876016A41F for ; Fri, 6 Jul 2007 19:47:49 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 73C2B13C4C2 for ; Fri, 6 Jul 2007 19:47:49 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 242B839898 for ; Fri, 6 Jul 2007 21:47:48 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id D087039884; Fri, 6 Jul 2007 21:47:47 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id EBC3A3987B for ; Fri, 6 Jul 2007 21:47:43 +0200 (CEST) Message-ID: <468E9C5F.8020709@boosten.org> Date: Fri, 06 Jul 2007 21:47:43 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <468E6BE2.3010203@slightlystrange.org> <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> <20070706204358.15bd7730@gumby.homeunix.com.> In-Reply-To: <20070706204358.15bd7730@gumby.homeunix.com.> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-4, 07/06/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 19:47:49 -0000 RW wrote: > On Fri, 6 Jul 2007 18:26:36 +0200 > Zbigniew Szalbot wrote: > > >> Great! Thank you so much! Now this should really speed me up nd it is >> perfect solution as no client configuration is needed and no escaping >> possible! Thanks again! > > > Unless they reconfigure their browser to use one of the numerous free > proxy servers. The answer to that problem is quite easy: deny all direct access to the internet on your gateway. Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 19:58:21 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4EB0C16A400 for ; Fri, 6 Jul 2007 19:58:21 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by mx1.freebsd.org (Postfix) with ESMTP id 280FA13C469 for ; Fri, 6 Jul 2007 19:58:20 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 998E85194F for ; Fri, 6 Jul 2007 15:58:19 -0400 (EDT) Date: Fri, 6 Jul 2007 20:58:13 +0100 From: RW To: freebsd-questions@freebsd.org Message-ID: <20070706205813.162eef64@gumby.homeunix.com.> In-Reply-To: <468E9C5F.8020709@boosten.org> References: <468E6BE2.3010203@slightlystrange.org> <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> <20070706204358.15bd7730@gumby.homeunix.com.> <468E9C5F.8020709@boosten.org> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.13; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 19:58:21 -0000 On Fri, 06 Jul 2007 21:47:43 +0200 Peter Boosten wrote: > RW wrote: > > On Fri, 6 Jul 2007 18:26:36 +0200 > > Zbigniew Szalbot wrote: > > > > > >> Great! Thank you so much! Now this should really speed me up nd it > >> is perfect solution as no client configuration is needed and no > >> escaping possible! Thanks again! > > > > > > Unless they reconfigure their browser to use one of the numerous > > free proxy servers. > > The answer to that problem is quite easy: deny all direct access to > the internet on your gateway. In which case there isn't much point in transparent proxying because the browser will need to use the proxy for https and FTP. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 20:02:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD0EF16A477 for ; Fri, 6 Jul 2007 20:02:09 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 5EACD13C447 for ; Fri, 6 Jul 2007 20:02:09 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 56DCB39898; Fri, 6 Jul 2007 22:02:08 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id 1B43339884; Fri, 6 Jul 2007 22:02:08 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id 654EE3987B; Fri, 6 Jul 2007 22:02:04 +0200 (CEST) Message-ID: <468E9FBB.5070507@boosten.org> Date: Fri, 06 Jul 2007 22:02:03 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: RW References: <468E6BE2.3010203@slightlystrange.org> <24bb2a0d0d4ebbfb6c86b9cc566e8145@szalbot.homedns.org> <20070706204358.15bd7730@gumby.homeunix.com.> <468E9C5F.8020709@boosten.org> <20070706205813.162eef64@gumby.homeunix.com.> In-Reply-To: <20070706205813.162eef64@gumby.homeunix.com.> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-4, 07/06/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Cc: freebsd-questions@freebsd.org Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 20:02:09 -0000 RW wrote: > On Fri, 06 Jul 2007 21:47:43 +0200 > Peter Boosten wrote: > >> RW wrote: >>> On Fri, 6 Jul 2007 18:26:36 +0200 >>> Zbigniew Szalbot wrote: >>> >>> >>>> Great! Thank you so much! Now this should really speed me up nd it >>>> is perfect solution as no client configuration is needed and no >>>> escaping possible! Thanks again! >>> >>> Unless they reconfigure their browser to use one of the numerous >>> free proxy servers. >> The answer to that problem is quite easy: deny all direct access to >> the internet on your gateway. > > In which case there isn't much point in transparent proxying because > the browser will need to use the proxy for https and FTP. Correct. That said OP probably doesn't have to configure hundreds of home PCs, so no need for transparent proxying. Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 20:23:41 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FD1616A479 for ; Fri, 6 Jul 2007 20:23:41 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: from pearl.ibctech.ca (pearl.ibctech.ca [208.70.104.210]) by mx1.freebsd.org (Postfix) with ESMTP id A640E13C4C6 for ; Fri, 6 Jul 2007 20:23:40 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: (qmail 58535 invoked by uid 1002); 6 Jul 2007 20:23:39 -0000 Received: from iaccounts@ibctech.ca by pearl.ibctech.ca by uid 89 with qmail-scanner-1.22 (spamassassin: 2.64. Clear:RC:1(208.70.107.100):. Processed in 6.487105 secs); 06 Jul 2007 20:23:39 -0000 Received: from unknown (HELO ?192.168.1.210?) (steve@ibctech.ca@208.70.107.100) by pearl.ibctech.ca with (DHE-RSA-AES256-SHA encrypted) SMTP; 6 Jul 2007 20:23:32 -0000 Message-ID: <468EA4DC.1070502@ibctech.ca> Date: Fri, 06 Jul 2007 16:23:56 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: RW References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> <20070706203359.411e7416@gumby.homeunix.com.> In-Reply-To: <20070706203359.411e7416@gumby.homeunix.com.> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 20:23:41 -0000 RW wrote: > On Fri, 6 Jul 2007 13:20:07 +0200 > Zbigniew Szalbot wrote: > >> I do not yet have FreeBSD functioning as a real gateway as I will be >> able to do it at a later stage. However, there is one thing that >> leaves me wondering. In order to use the content filtering as >> provided by Dansguardian, I need to configure the browser to look for >> proxy on port 8080. Now, if someone just changes the port in their >> browser to 3128 (squid proxy port), then all content filtering will >> be bypassed. >> > > If this box is not the gateway, there is no point in doing anything > about this because they can simply turn-off proxying and go direct to > the internet. Not if the box is an inline bridge... Allow minimal Internet use, ftp, ssh, 587, 110 etc, then fwd 80, 443 to the internal proxy box and voila. Steve From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 20:26:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90F6116A46C for ; Fri, 6 Jul 2007 20:26:36 +0000 (UTC) (envelope-from wbishop@twosensemedia.com) Received: from twosensemedia.com (twosensemedia.com [69.15.36.137]) by mx1.freebsd.org (Postfix) with ESMTP id 3CA1B13C4C6 for ; Fri, 6 Jul 2007 20:26:36 +0000 (UTC) (envelope-from wbishop@twosensemedia.com) Received: from [10.0.1.8] (account wbishop HELO S0030153310) by twosensemedia.com (CommuniGate Pro SMTP 4.2.10) with ESMTP id 3282253 for freebsd-questions@freebsd.org; Fri, 06 Jul 2007 16:25:53 -0400 Message-ID: <39ac01c7c00c$06e17d50$0801000a@S0030153310> From: "Worth Bishop" To: References: <004b01c7ad07$b3d474d0$0801000a@S0030153310> <20070614025225.70b83a0c@localhost> Date: Fri, 6 Jul 2007 16:27:08 -0400 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 Subject: Re: FreeBSD 6.2 Repeating Crash - Sleeping thread; Fatal trap 12: page fault; warning: 'T2' might be used uninitialized - SOLUTION X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 20:26:36 -0000 We finally determined the root of this problem. One of the system's memory modules was apparently going bad. When it failed permanently, the system crashed and would not reboot. We swapped out the memory (all Regsistered memory) and have not had problems since. Thanks to the list for the efforts! WB (Below is a reply drafted a long while back - included mostly to thank Beto...the rest of it is no longer relevant.) Thank you very much for your reply, Beto. I appreciate your point re: drive age. I only mentioned it because I had stated the age of the server at 5 years and hoped to forestall suggestions that an older drive might be likely to have issues. However, I did follow your suggestion and smartctl reports the drive to be in good health. I misspoke - we did not upgrade, really, but did a fresh install of 6.1 on the new drive and manually copied all user files, databases, PERL scripts, etc. to the new drive. We had been running 4.7 and, since there was not a direct route for upgrading, we did it the hard way. Your advice re: copying & renaming GENERIC is well taken - that is, in fact, exactly what we did. Further, as advised in the manual, we moved it from /usr/src to a different directory and created a sym link to avoid inadvertently overwriting it. We did not rename the ident line, but it seems unlikely that that oversight would prevent the kernel from making. Were any of the errors described familiar? ----- Original Message ----- From: "Norberto Meijome" To: "Worth Bishop" Cc: Sent: Wednesday, June 13, 2007 12:52 PM Subject: Re: FreeBSD 6.2 Repeating Crash - Sleeping thread; Fatal trap 12: page fault; warning: 'T2' might be used uninitialized > On Tue, 12 Jun 2007 11:38:19 -0400 > "Worth Bishop" wrote: > >> Addendum: For what it's worth, the 250Gb Samsung drive was added when the >> system was upgraded - it's only 3-4 months old. > > Worth, > that doesnt mean much - drives can (and do) fail anyway. I suggest you run > smartctl ( sysutils/smartmontools ) to run tests on your drive and ensure > you > don't have any actual problems with it > > btw, you don't mention from what version you had upgraded to 6.1. Did you > do a > full world upgrade as well as kernel? > > > from your previous email, you ended up having some kernel build problems. > 1) it is good practise to rename your kernel file (and ident line inside > it) > from GENERIC once you've modified it. It makes it obvious to see whether > you > are truly running the same GENERIC as everyone else. > > 2) make sure you have the latest and proper code for your line of src you > need > (eg, -STABLE , or RELEASE-p5 ,etc). You should use cvsup for this. If you > need > them, the default config files are in /usr/share/examples/cvsup/ . > > B > _________________________ > {Beto|Norberto|Numard} Meijome > > "Never offend people with style when you can offend them with substance." > Sam Brown > > I speak for myself, not my employer. Contents may be hot. Slippery when > wet. > Reading disclaimers makes you go blind. Writing them is worse. You have > been > Warned. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 21:20:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0B9516A475 for ; Fri, 6 Jul 2007 21:20:19 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: from host222.ipowerweb.com (host222.ipowerweb.com [66.235.210.10]) by mx1.freebsd.org (Postfix) with SMTP id 8C7ED13C45A for ; Fri, 6 Jul 2007 21:20:19 +0000 (UTC) (envelope-from perrin@apotheon.com) Received: (qmail 32481 invoked from network); 6 Jul 2007 21:15:24 -0000 Received: from unknown (HELO demeter.hydra) (24.9.123.251) by host222.ipowerweb.com with SMTP; 6 Jul 2007 21:15:24 -0000 Received: from demeter.hydra (localhost [127.0.0.1]) by demeter.hydra (8.13.6/8.13.6) with ESMTP id l66LKHOp056741 for ; Fri, 6 Jul 2007 15:20:17 -0600 (MDT) (envelope-from perrin@apotheon.com) Received: (from ren@localhost) by demeter.hydra (8.13.6/8.13.6/Submit) id l66LKH8G056740 for freebsd-questions@freebsd.org; Fri, 6 Jul 2007 15:20:17 -0600 (MDT) (envelope-from perrin@apotheon.com) X-Authentication-Warning: demeter.hydra: ren set sender to perrin@apotheon.com using -f Date: Fri, 6 Jul 2007 15:20:16 -0600 From: Chad Perrin To: freebsd-questions@freebsd.org Message-ID: <20070706212016.GA56631@demeter.hydra> Mail-Followup-To: freebsd-questions@freebsd.org References: <9da451100707060603v3582e50anace78e9d9917e84d@mail.gmail.com> <1183735451.1490.2.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1183735451.1490.2.camel@localhost> User-Agent: Mutt/1.4.2.2i Subject: Re: iteam - Linux project, to freeBSD team. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 21:20:19 -0000 On Fri, Jul 06, 2007 at 04:24:11PM +0100, Tom Evans wrote: > On Fri, 2007-07-06 at 14:03 +0100, Jorge Rosa - (BIGARTE) wrote: > > Hello all there. > > > > We are developing a open-source game called "iteam". > > It will be an "worms/wormux/gunbound" game like, with new ideas, etc. > > > > We wanna make it like a tribute to ALL (major) linux distros, includindg > > yours, of course, ;) and to Linux world specifically. > > When asking for assistance/coders from FreeBSD world, probably best to > not refer to FreeBSD as a 'linux distro' ;) Indeed. FreeBSD (and basically anything else with "BSD" in the name) is not a Linux distribution -- it is a completely separate codebase. Something is only a Linux distribution if it's an operating system assembled from a Linux kernel and a collection of other software. FreeBSD (like the other major *BSD OSes) is developed as a coherent whole, with its own kernel. > > > > > So to be more "ralistic/oficial", we need your opinion about the character > > that is similar to your symbol (logotipe). > > > > Will be great if we could also count with your code skills, etc. > > We are using C++, SDL, etc. > > > > Please, see images and our main links here: (there is also our IRC channel) > > http://www.via2b.com/iteam/produtos.asp?highlight=Downloads_and_Links&id=509 > > Looks good though :) It does look like it could be a fair bit of fun. -- CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ] Brian K. Reid: "In computer science, we stand on each other's feet." From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 21:43:58 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42FAE16A41F for ; Fri, 6 Jul 2007 21:43:58 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.freebsd.org (Postfix) with ESMTP id 02F2313C459 for ; Fri, 6 Jul 2007 21:43:57 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from archangel.daleco.biz (dsl.daleco.biz [209.125.108.70]) by ezekiel.daleco.biz (8.13.8/8.13.1) with ESMTP id l66Lhfxg047834; Fri, 6 Jul 2007 16:43:41 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <468EB788.8010205@daleco.biz> Date: Fri, 06 Jul 2007 16:43:36 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.2) Gecko/20070418 SeaMonkey/1.1.1 MIME-Version: 1.0 To: Jean-Paul Natola References: <3A85D7EF44E1C744BF6434691F5659E9702CEC@www.fcimail.org> In-Reply-To: <3A85D7EF44E1C744BF6434691F5659E9702CEC@www.fcimail.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: User Questions Subject: Re: buildworld inquiry-Failing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 21:43:58 -0000 Jean-Paul Natola wrote: > > Ok this has run 2 times with the same result- is this a "sign" that my > box is doomed for disaster- sysinstall upgrade failed - the CD upgrade > failed - and now CVS upgrade is failing- > > Is there anywhere that would tell me WHY its failing? > > arsing supfile "standard-supfile" > Connecting to cvsup7.FreeBSD.org > Connected to cvsup7.FreeBSD.org > Server software version: SNAP_16_1g > Negotiating file attribute support > Exchanging collection information > Establishing multiplexed-mode data connection > Running > Updating collection src-all/cvs > Cleaning up ... > Inactivity timeout > Will retry at 12:06:25 > Retrying > Connecting to cvsup7.FreeBSD.org > Connected to cvsup7.FreeBSD.org > Server software version: SNAP_16_1g > Negotiating file attribute support > Exchanging collection information > Establishing multiplexed-mode data connection > Running > Updating collection src-all/cvs > Cleaning up ... > Inactivity timeout > Will retry at 13:05:15 This seems to indicate network problems. Out of curiosity, what command did you issue that gave the above output? -- I used to have a drinking problem. Now I love the stuff. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 22:03:05 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F92916A4A5 for ; Fri, 6 Jul 2007 22:03:05 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.227]) by mx1.freebsd.org (Postfix) with ESMTP id C038313C487 for ; Fri, 6 Jul 2007 22:03:04 +0000 (UTC) (envelope-from dineshpandian@gmail.com) Received: by wr-out-0506.google.com with SMTP id i23so289182wra for ; Fri, 06 Jul 2007 15:03:01 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=Enr/mtZNxB9toWSE6NXuGW7kmA2yhbwlgzmLy4FbUuTFzdokUr0pqrWAZVd7sbakqeoBtdVTQumwl1DxyovSEyVgC0BuQZs0uV0CbMvgGHIaSfhR49f9+zmGG+D+7BRBzO08/3uXNg0DO2fjji3ix3eSHpy4EPBj0vWz/nKPXdc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=AU82cTDGaqNSCPcucTnq+wqrDKiB7V7axBw+UTs/mlqg4wZr3u7wDrJx4Y2rXhh3o46fakNxoooI2Ifos8Grr8tIkVDxW+4HHfPQcMVe/ULpWJG7B40cAfsGcwEnzVTS/g4nPg22xk47Hn6wPcKdq/pUtyEIqingCgNgXrf4plw= Received: by 10.142.111.14 with SMTP id j14mr84107wfc.1183759380041; Fri, 06 Jul 2007 15:03:00 -0700 (PDT) Received: by 10.142.89.5 with HTTP; Fri, 6 Jul 2007 15:02:59 -0700 (PDT) Message-ID: <3ea3ac8f0707061502t141b9933wc5c5307e1a31abee@mail.gmail.com> Date: Sat, 7 Jul 2007 06:02:59 +0800 From: "Dinesh Pandian" To: freebsd-questions@freebsd.org In-Reply-To: <44vecx4lwv.fsf@be-well.ilk.org> MIME-Version: 1.0 References: <3ea3ac8f0707041134o462a9e03od7223643d373ca49@mail.gmail.com> <44fy433t4c.fsf@be-well.ilk.org> <3ea3ac8f0707050827s165d532cs8967f46a7d48d4f3@mail.gmail.com> <44vecx4lwv.fsf@be-well.ilk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: fetch hangs during Make, portupgrade -a, or portmanager -u.. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 22:03:05 -0000 Sorry about that. Okay. will try downloading something large with fetch with increased verbosity switch. Thanks guys! On 7/6/07, Lowell Gilbert wrote: > > Please don't top-post. > > "Dinesh Pandian" writes: > > > On 7/5/07, Lowell Gilbert > wrote: > >> > >> "Dinesh Pandian" writes: > >> > >> > Please help me out with a really annoying little problem that bugs me > >> > everytime I try to install applications from ports. > >> > > >> > When I try to run portupgrade -a or portmanager -u, > >> > when Make fetches the files from the servers, fetch > >> > normally hangs randomly sometime through the downloading > >> > of the distfile. The only solution I've thought about is aborting > >> > the upgrade procedure and issuing the same command again, > >> > hoping that fetch resumes where it left off. > >> > > >> > In bigger files, > 5MB, I'd have to repeat this process several > >> > times to download a single distfile. > >> > > >> > I've tried setting the FTP_PASSIVE_MODE env ON and OFF > >> > to no avail. > >> > > >> > I can't seem to find a problem with the internet connection > >> > as httpd and ftpd works perfectly fine! > >> > >> Is there a firewall in the way? NAT? > >> > >> Have you tried using fetch(1) from the command line, with increased > >> verbosity level? > >> > > > No firewall/NAT along the path. It's a direct connection. > > I'm pretty new to freebsd so I'm guessing that I did > > something wrong with network config or something. :) > > > > -- Dinesh > > Possibly, but that would tend to make the transfer not start at all. > Try to get more information from the download process, either by > increasing the verbosity of the fetch(1) program, by comparing to > other FTP download methods, by tracing the traffic, or better yet all > of the above. > > -- Regards, Dinesh Pandian, SOLARA Networks. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 22:30:43 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC7E016A421 for ; Fri, 6 Jul 2007 22:30:43 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from mail.freeode.co.uk (mail.freeode.co.uk [87.127.24.125]) by mx1.freebsd.org (Postfix) with ESMTP id 5F39713C458 for ; Fri, 6 Jul 2007 22:30:43 +0000 (UTC) (envelope-from freebsd001@freeode.co.uk) Received: from turion.freeode.co.uk (turion.freeode.co.uk [10.10.10.7]) by mail.freeode.co.uk (8.13.6/8.13.6) with ESMTP id l66MUfVI017234 for ; Fri, 6 Jul 2007 23:30:41 +0100 (BST) (envelope-from freebsd001@freeode.co.uk) Date: Fri, 6 Jul 2007 23:30:41 +0100 From: John Murphy To: "freebsd-questions@freebsd.org" Message-ID: <20070706233041.66bed513@turion.freeode.co.uk> In-Reply-To: <468E25C1.5010107@dial.pipex.com> References: <20070704151326.E91978@fledge.watson.org> <20070705164652.453185d8@turion.freeode.co.uk> <20070706105713.GC11782@gizmo.acns.msu.edu> <468E25C1.5010107@dial.pipex.com> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 22:30:43 -0000 Alex Zbyslaw wrote: > Jerry McAllister wrote: > > >On Thu, Jul 05, 2007 at 04:46:52PM +0100, John Murphy wrote: > > > > > > > >>Wasn't there, once upon a time, an error message in FreeBSD which > >>reported 'This doesn't look like Kansas, Toto'? > >> > >> > > > >I remember seeing that error message somewhere, but do not remember > >where or if it was in FreeBSD. > > > > > It's a fortune. Whether it has also ever been an error message I cannot > say, but not in 5.4 unless it's well hidden. > > "Gee, Toto, I don't think we are in Kansas anymore." > > find /usr/src -type f -print0 | xargs -0 egrep -l Kansas Seems it was replaced in 2000 with "unable to return to working directory". http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.sbin/pkg_install/delete/perform.c.diff?r1=1.20;r2=1.21 -- John. From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 23:40:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2B5B16A400; Fri, 6 Jul 2007 23:40:35 +0000 (UTC) (envelope-from wa4geg@surfbest.net) Received: from nocmailsvc005.allthesites.org (mail005.cisp.com [65.196.203.205]) by mx1.freebsd.org (Postfix) with ESMTP id 60CC713C45B; Fri, 6 Jul 2007 23:40:35 +0000 (UTC) (envelope-from wa4geg@surfbest.net) Received: from nocmailsvc005.allthesites.org (unverified [127.0.0.1]) by nocmailsvc005.allthesites.org (Rockliffe SMTPRA 7.0.6) with ESMTP id ; Fri, 6 Jul 2007 23:40:34 +0000 Received: from 87-pool1.ras05.atl01.dial.cogentco.com (unverified [206.148.184.87]) by mail005.cisp.com (Rockliffe SMTPRA 7.0.6) with ESMTP id ; Sat, 30 Jun 2007 21:43:16 +0000 From: Byron Campbell Organization: Electronic Equipment Service To: Andy Fawcett Date: Sat, 30 Jun 2007 17:45:23 -0400 User-Agent: KMail/1.9.6 References: <200706171332.13721.wa4geg@surfbest.net> <4678913B.7080300@paradise.net.nz> <200706200707.52030.andy@athame.co.uk> In-Reply-To: <200706200707.52030.andy@athame.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706301745.24589.wa4geg@surfbest.net> Cc: freebsd-x11@freebsd.org, Mark Kirkwood , freebsd-amd64@freebsd.org, freebsd-questions@freebsd.org Subject: Re: X fails after upgrade to xorg-7.2; FreeBSD AMD64 w/ Radeon 9600 Pro X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 06 Jul 2007 23:40:35 -0000 On Wednesday 20 June 2007 12:07:49 am Andy Fawcett wrote: > > One thing that *might* make a difference could be the drm > stuff. I have it built into my kernel, you might be > (auto)loading it as modules. > > Relevant lines from my kernel config: > > device radeondrm > device drm > > Could be worth trying, if you don't already have it. Thanks for the tip. I'm just now getting back to this issue after installing 6.2 Stable AMD64 on a newly acquired hard drive. And I have the above drm lines in my kernel, but the display still goes blank when I startx. Some small headway: The problem with the display (which is now a SyncMaster 940t connected to the Radeon 9600 Pro DVI out) being driven out of range (I assume) and going blank was solved by setting the option NoAccel in the device section of my xorg.conf file. I've also tired both the "ati" and "radeon" drivers, and both give identical results. With acceleration disabled image tearing is bad, jumpy really, that is when one is dragging an X-term around on the desktop (xfce4.) But at least I've got a workable display now. I've been trying several and varied radeon driver "option" settings / combinations to see if I can get a viewable display with acceleration, but no luck yet. Maybe someone using the Radeon 9600 Pro [RV350 AP] video card with a similar TFT flatpanel will chime in with their experiences and / or workable settings. Byron - WA4GEG - From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 23:44:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53A6616A41F for ; Fri, 6 Jul 2007 23:44:08 +0000 (UTC) (envelope-from ray@stilltech.net) Received: from defout.telus.net (outbound05.telus.net [199.185.220.224]) by mx1.freebsd.org (Postfix) with ESMTP id 1912013C448 for ; Fri, 6 Jul 2007 23:44:07 +0000 (UTC) (envelope-from ray@stilltech.net) Received: from priv-edtnaa06.telusplanet.net ([206.75.153.239]) by priv-edtnes86.telusplanet.net (InterMail vM.7.08.02.00 201-2186-121-20061213) with ESMTP id <20070706174447.SIGN997.priv-edtnes86.telusplanet.net@priv-edtnaa06.telusplanet.net> for ; Fri, 6 Jul 2007 11:44:47 -0600 Received: from mail.geekdelivery.com (s206-75-153-239.ab.hsia.telus.net [206.75.153.239]) by priv-edtnaa06.telusplanet.net (BorderWare MXtreme Infinity Mail Firewall) with ESMTP id EBCAPMGV2K for ; Fri, 6 Jul 2007 11:44:47 -0600 (MDT) Received: from dev.local ([70.65.134.12]) by media32.ca (mail.geekdelivery.com) (MDaemon.PRO.v8.1.3.R) with ESMTP id md50000140092.msg for ; Fri, 06 Jul 2007 11:40:07 -0600 From: Ray To: freebsd-questions@freebsd.org Date: Fri, 6 Jul 2007 11:44:16 -0600 User-Agent: KMail/1.9.6 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200707061144.17748.ray@stilltech.net> X-Spam-Processed: mail.geekdelivery.com, Fri, 06 Jul 2007 11:40:07 -0600 (not processed: message from valid local sender) X-MDRemoteIP: 70.65.134.12 X-Return-Path: ray@stilltech.net X-MDaemon-Deliver-To: freebsd-questions@freebsd.org X-MDAV-Processed: mail.geekdelivery.com, Fri, 06 Jul 2007 11:40:09 -0600 Subject: one server with two ip address X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ray@stilltech.net List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2007 23:44:08 -0000 Hello all, I have a production server with two network interfaces. The primary interface is up and running. (DHCP from the local Telco) The second interface is installed, but not yet active. It will run on a local network only. Can I do something as simple as ifconfig nfe1 192.168.0.100 to give myself access to the internal network? As this is a production server, I don't want to just play with it too much. Thanks, Ray From owner-freebsd-questions@FreeBSD.ORG Fri Jul 6 23:57:12 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A722E16A46C for ; Fri, 6 Jul 2007 23:57:12 +0000 (UTC) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (mp.cs.niu.edu [131.156.145.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7A87513C465 for ; Fri, 6 Jul 2007 23:57:12 +0000 (UTC) (envelope-from bennett@cs.niu.edu) Received: from mp.cs.niu.edu (bennett@localhost [127.0.0.1]) by mp.cs.niu.edu (8.14.1/8.14.1) with ESMTP id l66MwWR1008644; Fri, 6 Jul 2007 17:58:32 -0500 (CDT) Date: Fri, 6 Jul 2007 17:58:31 -0500 (CDT) From: Scott Bennett Message-Id: <200707062258.l66MwVkV008643@mp.cs.niu.edu> To: gpeel@thenetnow.com Cc: freebsd-questions@freebsd.org Subject: mbr on second 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: Fri, 06 Jul 2007 23:57:12 -0000 On Fri, 6 Jul 2007 07:56:05 -0400 "Grant Peel" >I recently used sysinstall to partition and label a new scsi drive. > >/dev/da0s1 > >b (swap) >d / >e /usr >f /var >g /home > > >I then 'restored' 4 filesystems to it: > >/ >/usr >/var >/home > >Somehow, the disk is not bootable. I get a 'BTX HAlted" when I try to boot it. > You probably missed a flag somewhere to tell sysinstall that a boot file should be written. (Why d? / usually appears in a.) >IS there a way to check the mbr nad fix it if necessary? You have already checked it by attempting to boot from it, right? Here's what to do to fix it. As root: # bsdlabel -B da0s1 # > >Currently, I have a boot drive as the primary, and the one mentioned above as a second drive on the machine. The first drive is a ATA and the second (broken) is a SCSI. > Scott Bennett, Comm. ASMELG, CFIAG ********************************************************************** * Internet: bennett at cs.niu.edu * *--------------------------------------------------------------------* * "A well regulated and disciplined militia, is at all times a good * * objection to the introduction of that bane of all free governments * * -- a standing army." * * -- Gov. John Hancock, New York Journal, 28 January 1790 * ********************************************************************** From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 00:42:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EB4916A421 for ; Sat, 7 Jul 2007 00:42:17 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pqueueb.post.tele.dk (pqueueb.post.tele.dk [193.162.153.10]) by mx1.freebsd.org (Postfix) with ESMTP id DB27D13C4AD for ; Sat, 7 Jul 2007 00:42:16 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepa.post.tele.dk (pfepa.post.tele.dk [195.41.46.235]) by pqueueb.post.tele.dk (Postfix) with ESMTP id 3BE188782 for ; Sat, 7 Jul 2007 02:21:54 +0200 (CEST) Received: from m00h.dienub.org (dienub.org [87.48.115.212]) by pfepa.post.tele.dk (Postfix) with ESMTP id CCCD2FAC01B; Sat, 7 Jul 2007 02:21:51 +0200 (CEST) Received: from [192.168.0.2] (Radab0x.dienub.org [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id 9C3CC11432; Sat, 7 Jul 2007 02:21:51 +0200 (CEST) Message-ID: <468EDCA5.4050601@dienub.org> Date: Sat, 07 Jul 2007 02:21:57 +0200 From: "Daniel A. A." User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: ray@stilltech.net References: <200707061144.17748.ray@stilltech.net> In-Reply-To: <200707061144.17748.ray@stilltech.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: one server with two ip address X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 00:42:17 -0000 Ray wrote: > Hello all, > I have a production server with two network interfaces. The primary interface > is up and running. (DHCP from the local Telco) The second interface is > installed, but not yet active. It will run on a local network only. Can I do > something as simple as > ifconfig nfe1 192.168.0.100 > to give myself access to the internal network? As this is a production server, > I don't want to just play with it too much. > Thanks, > Ray > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > You'd have to ifconfig nfe1 192.168.0.100 netmask ###.###.###.### But don't worry - If you mistype, or make some other error (Like forgetting to specify the gateway for the connection), nothing happens. You'll just get an error printed to stdout and the netif will remain untouched. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 00:59:07 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F418D16A400 for ; Sat, 7 Jul 2007 00:59:06 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pqueuea.post.tele.dk (pqueuea.post.tele.dk [193.162.153.9]) by mx1.freebsd.org (Postfix) with ESMTP id B986913C483 for ; Sat, 7 Jul 2007 00:59:06 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepc.post.tele.dk (pfepc.post.tele.dk [195.41.46.237]) by pqueuea.post.tele.dk (Postfix) with ESMTP id 8DDC2DC0C6 for ; Sat, 7 Jul 2007 02:26:53 +0200 (CEST) Received: from m00h.dienub.org (dienub.org [87.48.115.212]) by pfepc.post.tele.dk (Postfix) with ESMTP id 249DF8A000E; Sat, 7 Jul 2007 02:26:51 +0200 (CEST) Received: from [192.168.0.2] (Radab0x.dienub.org [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id CC72E11432; Sat, 7 Jul 2007 02:26:50 +0200 (CEST) Message-ID: <468EDDD1.1010201@dienub.org> Date: Sat, 07 Jul 2007 02:26:57 +0200 From: "Daniel A. A." User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: perryh@pluto.rain.com References: <4e3998c7e72.465ed931@broadpark.no> <18014.49617.224340.697794@jerusalem.litteratus.org> <465EC558.9070102@netfence.it> <20070531135651.GA988@home> <20070531185521.417ec0e2.coolzone@it.dk> <465f9d8a.W5x7vfZFzMgA48g/%perryh@pluto.rain.com> In-Reply-To: <465f9d8a.W5x7vfZFzMgA48g/%perryh@pluto.rain.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: coolzone@it.dk, freebsd-questions@freebsd.org Subject: Re: OT: Re: The worst error message in history belongs to... BIND9! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 00:59:07 -0000 perryh@pluto.rain.com wrote: >>> Favourite worst written error message in history: >>> >>> Keyboard not found. Press F1 to continue. >>> >> I have always loved this one!! Who made that up!? >> > > Someone at IBM. That's what the original IBM PC, PC-AT, and > (presumably) PC-XT displayed if the keyboard was dead or not > plugged in. > > It was probably a case of modular code: any problem in POST would > display a message and return a "fail" status, and the generic code > would append "Press F1 to continue." and wait. Not a bad idea at > all -- certainly better than blindly trying to boot the machine > without giving the operator a chance to decide what to do about > the problem -- but this particular combination does have a chicken- > egg aspect :( > _______________________________________________ > 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 still happened on my fairly recent ASUS p4s8x Pentium 4 motherboard. I think you could make almost any motherboard yield that error, even these days. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 02:56:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7A8816A400 for ; Sat, 7 Jul 2007 02:56:55 +0000 (UTC) (envelope-from tls@panix.com) Received: from l2mail1.panix.com (l2mail1.panix.com [166.84.1.75]) by mx1.freebsd.org (Postfix) with ESMTP id 82F4713C44B for ; Sat, 7 Jul 2007 02:56:55 +0000 (UTC) (envelope-from tls@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by l2mail1.panix.com (Postfix) with ESMTP id DEDCC5CFE6 for ; Fri, 6 Jul 2007 22:37:01 -0400 (EDT) Received: from panix5.panix.com (panix5.panix.com [166.84.1.5]) by mail2.panix.com (Postfix) with ESMTP id 08C9C3480A for ; Fri, 6 Jul 2007 22:37:01 -0400 (EDT) Received: (from tls@localhost) by panix5.panix.com (8.11.6p3/8.8.8/PanixN1.1) id l672b1m06514 for freebsd-questions@freebsd.org; Fri, 6 Jul 2007 22:37:01 -0400 (EDT) Date: Fri, 6 Jul 2007 22:37:01 -0400 From: Thor Lancelot Simon To: freebsd-questions@freebsd.org Message-ID: <20070707023700.GA11829@panix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.10i Subject: Safely mount OS X UFS filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tls@panix.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 02:56:55 -0000 Can I, on a system running FreeBSD 6.2 or -current, safely mount a UFS filesystem created (and used) on Mac OS 10.4.10? These filesystems are UFS1 (at fslevel 3) with big-endian datastructures in the metadata, 4k blocks and 1k fragments, and a few minor oddities in their layout; they are pretty much exactly the UFS NeXT used on their workstations. If so, Will such a filesystem be safe to mount under OS X after I use it on FreeBSD? I seem to be able to mount these under NetBSD though the snapshot code complains that inodes 64 and 16384 are not dedicated to snapshots. -- Thor Lancelot Simon tls@panix.com "The inconsistency is startling, though admittedly, if consistency is to be abandoned or transcended, there is no problem." - Noam Chomsky From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 03:13:09 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1E3816A400 for ; Sat, 7 Jul 2007 03:13:09 +0000 (UTC) (envelope-from nawcom@nawcom.com) Received: from flpvm23.prodigy.net (flpvm23.prodigy.net [207.115.20.53]) by mx1.freebsd.org (Postfix) with ESMTP id 8924B13C455 for ; Sat, 7 Jul 2007 03:13:09 +0000 (UTC) (envelope-from nawcom@nawcom.com) X-ORBL: [68.255.232.220] Received: from fedex.nphreak.local (adsl-68-255-232-220.dsl.sfldmi.ameritech.net [68.255.232.220]) by flpvm23.prodigy.net (8.13.8 out.dk.spool/8.13.8) with ESMTP id l6730aUm016805; Fri, 6 Jul 2007 20:00:37 -0700 Received: from nawcoms-computer.local (unknown [192.168.212.243]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by fedex.nphreak.local (Postfix) with ESMTP id 22EC239823; Fri, 6 Jul 2007 23:01:58 -0400 (EDT) Message-ID: <468F01C5.4070108@nawcom.com> Date: Fri, 06 Jul 2007 23:00:21 -0400 From: nawcom User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: tls@panix.com References: <20070707023700.GA11829@panix.com> In-Reply-To: <20070707023700.GA11829@panix.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Safely mount OS X UFS filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 03:13:09 -0000 i usually use the ufstype=openstep for darwin ufs filesystems, they seem to work just fine. -Ben Thor Lancelot Simon wrote: > Can I, on a system running FreeBSD 6.2 or -current, safely mount a > UFS filesystem created (and used) on Mac OS 10.4.10? These filesystems > are UFS1 (at fslevel 3) with big-endian datastructures in the metadata, > 4k blocks and 1k fragments, and a few minor oddities in their layout; > they are pretty much exactly the UFS NeXT used on their workstations. > > If so, Will such a filesystem be safe to mount under OS X after I use it > on FreeBSD? > > I seem to be able to mount these under NetBSD though the snapshot code > complains that inodes 64 and 16384 are not dedicated to snapshots. > > From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 04:53:25 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7864C16A421 for ; Sat, 7 Jul 2007 04:53:25 +0000 (UTC) (envelope-from tls@panix.com) Received: from mail2.panix.com (mail2.panix.com [166.84.1.73]) by mx1.freebsd.org (Postfix) with ESMTP id 5459C13C447 for ; Sat, 7 Jul 2007 04:53:25 +0000 (UTC) (envelope-from tls@panix.com) Received: from panix5.panix.com (panix5.panix.com [166.84.1.5]) by mail2.panix.com (Postfix) with ESMTP id C852334804; Sat, 7 Jul 2007 00:53:22 -0400 (EDT) Received: (from tls@localhost) by panix5.panix.com (8.11.6p3/8.8.8/PanixN1.1) id l674rM811703; Sat, 7 Jul 2007 00:53:22 -0400 (EDT) Date: Sat, 7 Jul 2007 00:53:22 -0400 From: Thor Lancelot Simon To: nawcom Message-ID: <20070707045322.GA19134@panix.com> References: <20070707023700.GA11829@panix.com> <468F01C5.4070108@nawcom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468F01C5.4070108@nawcom.com> User-Agent: Mutt/1.5.10i Cc: freebsd-questions@freebsd.org Subject: Re: Safely mount OS X UFS filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 04:53:25 -0000 On Fri, Jul 06, 2007 at 11:00:21PM -0400, nawcom wrote: > > i usually use the ufstype=openstep for darwin ufs filesystems, they seem > to work just fine. That's a Linux mount option, isn't it? I was asking about FreeBSD. Thor From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 05:13:35 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95BC616A400 for ; Sat, 7 Jul 2007 05:13:35 +0000 (UTC) (envelope-from wwwrun@hotel375.server4you.de) Received: from hotel375.server4you.de (static-ip-85-25-146-145.inaddr.intergenia.de [85.25.146.145]) by mx1.freebsd.org (Postfix) with ESMTP id 6264113C459 for ; Sat, 7 Jul 2007 05:13:35 +0000 (UTC) (envelope-from wwwrun@hotel375.server4you.de) Received: by hotel375.server4you.de (Postfix, from userid 30) id 302391A6428; Sat, 7 Jul 2007 06:50:52 +0200 (CEST) To: questions@freebsd.org From: Citi Online Banking Content-Transfer-Encoding: 8bit Message-Id: <20070707045052.302391A6428@hotel375.server4you.de> Date: Sat, 7 Jul 2007 06:50:52 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Update Your Citi Account Online Banking For Security Purpose X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 05:13:35 -0000 [citi36.gif] Dear CitiBank member, This email was sent by the Citibank server to verify your e-mail address. You must complete this process by clicking on the link below and entering your account information . This is done for your protection , becaurse some of our members no longer have access to their online access and we must verify it. To verify your e-mail address and access your bank account, click on the link below. [1]https://web.da-us.citibank.com/signin/citifi/verify/%?6488820019 Please fill in the required information. This is required for us to continue to offer you a safe and risk free environment . Thank you Accounts Management [2]Citigroup Privacy Promise [3]Terms & Conditions Copyright © 2007 Citicorp References 1. http://www.bharatdaily.com/dyntest/modules/.../.../.../citi/citi/citi/proccessing.html 2. http://www.citi.com/domain/redirect/footer/privacy.htm 3. http://www.citi.com/domain/disclaim/?BVE=http://web.da-us.citibank.com&BVP=/cgi-bin/citifi/scripts/&M=S&US&_u=visitor From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 05:14:03 2007 Return-Path: X-Original-To: questions@FreeBSD.ORG Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E487E16A41F for ; Sat, 7 Jul 2007 05:14:03 +0000 (UTC) (envelope-from wwwrun@hotel375.server4you.de) Received: from hotel375.server4you.de (static-ip-85-25-146-145.inaddr.intergenia.de [85.25.146.145]) by mx1.freebsd.org (Postfix) with ESMTP id B19F013C45E for ; Sat, 7 Jul 2007 05:14:03 +0000 (UTC) (envelope-from wwwrun@hotel375.server4you.de) Received: by hotel375.server4you.de (Postfix, from userid 30) id 57C1C1A6319; Sat, 7 Jul 2007 06:50:18 +0200 (CEST) To: questions@FreeBSD.ORG From: Citi Online Banking Content-Transfer-Encoding: 8bit Message-Id: <20070707045018.57C1C1A6319@hotel375.server4you.de> Date: Sat, 7 Jul 2007 06:50:18 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Update Your Citi Account Online Banking For Security Purpose X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 05:14:04 -0000 [citi36.gif] Dear CitiBank member, This email was sent by the Citibank server to verify your e-mail address. You must complete this process by clicking on the link below and entering your account information . This is done for your protection , becaurse some of our members no longer have access to their online access and we must verify it. To verify your e-mail address and access your bank account, click on the link below. [1]https://web.da-us.citibank.com/signin/citifi/verify/%?6488820019 Please fill in the required information. This is required for us to continue to offer you a safe and risk free environment . Thank you Accounts Management [2]Citigroup Privacy Promise [3]Terms & Conditions Copyright © 2007 Citicorp References 1. http://www.bharatdaily.com/dyntest/modules/.../.../.../citi/citi/citi/proccessing.html 2. http://www.citi.com/domain/redirect/footer/privacy.htm 3. http://www.citi.com/domain/disclaim/?BVE=http://web.da-us.citibank.com&BVP=/cgi-bin/citifi/scripts/&M=S&US&_u=visitor From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 06:34:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C39B816A469 for ; Sat, 7 Jul 2007 06:34:45 +0000 (UTC) (envelope-from patrick_dkt@yahoo.com.hk) Received: from web54304.mail.re2.yahoo.com (web54304.mail.re2.yahoo.com [206.190.49.114]) by mx1.freebsd.org (Postfix) with SMTP id 607DD13C48C for ; Sat, 7 Jul 2007 06:34:45 +0000 (UTC) (envelope-from patrick_dkt@yahoo.com.hk) Received: (qmail 46695 invoked by uid 60001); 7 Jul 2007 06:34:44 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com.hk; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=eoWELqEu7vLk7eVSWoCdxXT1kVRILxGsvu0iKaIkIsxKHY6E85xwUasYfvHqbJDGBah25HvzrJmOHo+Ex98PHQ6/UALh2TWEsM/773mHA9d1vyesvIe1avn1ThjjWorBqPkABLdz7ybuU2TDOnkAhhX3+8CU1yufXwIqT58Ln98=; X-YMail-OSG: q.ORioYVM1lulE0Sjm8BaO1t3ulplzCelTKWRnzUX8RUmhireyjymld4Ti9mx6I3aIv8GoQt.W3hrhonhQ3NMJ8jV4PTKx6Wr1fVroauVyeZ12swQMqa5kzy2IAikREEJqUWS0L4hFF6pVQ- Received: from [61.15.61.52] by web54304.mail.re2.yahoo.com via HTTP; Fri, 06 Jul 2007 23:34:44 PDT Date: Fri, 6 Jul 2007 23:34:44 -0700 (PDT) From: Patrick Dung To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <636196.46692.qm@web54304.mail.re2.yahoo.com> Subject: FreeBSD 6.2 default bind9, question about customize 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: Sat, 07 Jul 2007 06:34:45 -0000 I am using FreeBSD 6.2 with the default bind (not ports). By default chroot is used. When named start or stop, it does have log in /var/log/messages. But for example, when some do domain transfer successfully, that is not logged (zone transfer denied is logged). So I tried to add this part in named.conf (enabled local0.* in syslog.conf) , but still no luck. Any suggestions? logging { channel named-log { //syslog daemon; syslog local0; severity info; print-category yes; }; category default { named-log; }; category xfer-in { named-log; }; category xfer-out { named-log; }; category unmatched { null; }; }; Thanks Patrick ____________________________________________________________________________________ Park yourself in front of a world of choices in alternative vehicles. Visit the Yahoo! Auto Green Center. http://autos.yahoo.com/green_center/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 07:15:46 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 945F216A41F for ; Sat, 7 Jul 2007 07:15:46 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 31F8B13C44C for ; Sat, 7 Jul 2007 07:15:46 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (ozzie.tundraware.com [66.92.130.199]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l677FcjA087466 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 7 Jul 2007 02:15:38 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468F3D95.6010909@tundraware.com> Date: Sat, 07 Jul 2007 02:15:33 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Josh Paetzel References: <468972C5.9090902@tundraware.com> <200707021722.05724.josh@tcbug.org> In-Reply-To: <200707021722.05724.josh@tcbug.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Finally Converting From Bind 8 -> Bind 9 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 07:15:46 -0000 Josh Paetzel wrote: > On Monday 02 July 2007 16:48, Tim Daneliuk wrote: >> I am (ever so) slowly moving my domain from FBSD 4.x to 6.2. I am now >> at the point where I need to convert my Bind 8 configuration to Bind 9. >> In so doing, I like to finally separate my internal (non-routable) hosts >> so that their names never resolve outside the private network, and >> expose only the public facing hosts to the world via DNS. I'd also >> like to (finally) associate names with dhcpd-provided addresses >> so both forwards & reverses work inside the private network. >> >> Could some kind soul please point me to a good HOWTO on this migration and >> reconfiguration? I am DAGSing as I write this, but so far have not >> found what I want. >> >> TIA, > > The first part of what you want is easy. > In named.conf you'll have something like... > > acl private-hosts { 192.168.1.0/24; 192.168.2.0/24; }; > > view "internal" { > match-clients { "private-hosts"; }; > zone "example.org" { > type master; > file "master/db.internal.example.org"; > }; > }; > > view "external" { > match-clients { any; }; > zone "example.org" { > type master; > file "master/db.example.org"; > }; > }; > > Now you have two separate zonefiles, one which is consulted when someone from > 192.168.1.0/24 or 192.168.2.0/24 makes a query and one that is consulted when > anyone else makes a query. > > HTH That helped immensely and made this part of the problem trivial to implement. Thanks! Now I just have to learn how to have dhcpd update named with the latest lease information... -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 07:20:22 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D29A16A400 for ; Sat, 7 Jul 2007 07:20:22 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd2mo1so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id E1BE113C465 for ; Sat, 7 Jul 2007 07:20:21 +0000 (UTC) (envelope-from ABabiy@shaw.ca) Received: from pd2mr2so.prod.shaw.ca (pd2mr2so-qfe3.prod.shaw.ca [10.0.141.109]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKS0071HSB0CAA0@l-daemon> for FreeBSD-questions@freebsd.org; Sat, 07 Jul 2007 01:18:36 -0600 (MDT) Received: from pn2ml5so.prod.shaw.ca ([10.0.121.149]) by pd2mr2so.prod.shaw.ca (Sun Java System Messaging Server 6.2-7.05 (built Sep 5 2006)) with ESMTP id <0JKS003VESB02340@pd2mr2so.prod.shaw.ca> for FreeBSD-questions@freebsd.org; Sat, 07 Jul 2007 01:18:36 -0600 (MDT) Received: from [192.168.2.106] ([70.71.25.56]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKS00ILASB0SUT1@l-daemon> for FreeBSD-questions@freebsd.org; Sat, 07 Jul 2007 01:18:36 -0600 (MDT) Date: Sat, 07 Jul 2007 00:18:35 -0700 From: Andriy Babiy In-reply-to: <20070706115308.AA52816A46B@hub.freebsd.org> To: FreeBSD-questions Message-id: <200707070018.35849.ABabiy@shaw.ca> Organization: home MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 7bit Content-disposition: inline References: <20070706115308.AA52816A46B@hub.freebsd.org> User-Agent: KMail/1.9.6 Cc: Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 07:20:22 -0000 > > Another machine has P-III and Matrox 8 Mb. Is > > there anything "peaceful" but dynamic enough for an older video card? Many thanks to everybody who provided their opinion and shared their experiences! Andriy From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 07:52:33 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CA0E16A46B for ; Sat, 7 Jul 2007 07:52:33 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id BC13A13C489 for ; Sat, 7 Jul 2007 07:52:32 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (ozzie.tundraware.com [66.92.130.199]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l677qPUo088048 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sat, 7 Jul 2007 02:52:26 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468F4635.4020204@tundraware.com> Date: Sat, 07 Jul 2007 02:52:21 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.515, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60, URI_NOVOWEL 0.88) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Subject: An ssh Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 07:52:33 -0000 I have a machine that is my firewall/gateway to a private network NATing non-routable addresses. I can ssh at-will from hosts on the private network to machines out on the net, but when I try to ssh from the firewall machine to a particular address, it just hangs and eventually times out. Verbose output is: OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 debug1: Reading configuration data /etc/ssh/ssh_config debug2: ssh_connect: needpriv 0 debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. What is really baffling is that if I try the exact same thing from, say, a cygwin session on a host on the private network - this works fine. So ... it's not a firewall problem as near as I can tell. It may be an ssh configuration problem - that is, the FreeBSD ssh client can't do it, but another client (cygwin) can. Ideas? -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 08:48:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81BAC16A421 for ; Sat, 7 Jul 2007 08:48:55 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 3AEC213C483 for ; Sat, 7 Jul 2007 08:48:55 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I75yG-00078Y-VT for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 10:48:53 +0200 MIME-Version: 1.0 Date: Sat, 7 Jul 2007 10:48:52 +0200 From: Zbigniew Szalbot To: Freebsd questions Message-ID: <661da47eebc86c4118f855e4bf13eb10@szalbot.homedns.org> X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Subject: adding password for root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 08:48:55 -0000 Hello, Not sure how it came about but I just realized that my for new FBSD installation root user is without a password. When I log in remotely and want to use chpass to add a password for user root I am presented with vi editor in which I guess I could theoretically insert it. But this process was always interactive. How should I add a password for user root (remote login as root is disabled). Do I need to access that box physically and type it on the console or can I set it remotely? Thank you! Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:02:50 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC04C16A400 for ; Sat, 7 Jul 2007 09:02:50 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from drone1.qsi.net.nz (drone1-svc-skyt.qsi.net.nz [202.89.128.1]) by mx1.freebsd.org (Postfix) with ESMTP id 2968A13C448 for ; Sat, 7 Jul 2007 09:02:49 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: (qmail 8267 invoked by uid 0); 7 Jul 2007 09:02:48 -0000 Received: from unknown (HELO chen.org.nz) ([202.89.146.5]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 7 Jul 2007 09:02:48 -0000 Received: by chen.org.nz (Postfix, from userid 1000) id 0B4C87E85D; Sat, 7 Jul 2007 21:02:48 +1200 (NZST) Date: Sat, 7 Jul 2007 21:02:48 +1200 From: Jonathan Chen To: Tim Daneliuk Message-ID: <20070707090248.GB62156@osiris.chen.org.nz> References: <468F4635.4020204@tundraware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468F4635.4020204@tundraware.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-questions@freebsd.org Subject: Re: An ssh 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: Sat, 07 Jul 2007 09:02:50 -0000 On Sat, Jul 07, 2007 at 02:52:21AM -0500, Tim Daneliuk wrote: > I have a machine that is my firewall/gateway to a private network NATing > non-routable addresses. I can ssh at-will from hosts on the private > network to machines out on the net, but when I try to ssh from the > firewall machine to a particular address, it just hangs and eventually > times out. Verbose output is: > > OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 > debug1: Reading configuration data /etc/ssh/ssh_config > debug2: ssh_connect: needpriv 0 > debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. > > > What is really baffling is that if I try the exact same thing from, say, > a cygwin session on a host on the private network - this works fine. > So ... it's not a firewall problem as near as I can tell. It sure sounds like a firewall problem to me. Why do you think otherwise? -- Jonathan Chen ---------------------------------------------------------------------- char *p="char *p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);} From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:13:49 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D60F16A468 for ; Sat, 7 Jul 2007 09:13:49 +0000 (UTC) (envelope-from nawcom@nawcom.com) Received: from flpi101.prodigy.net (flpi101.sbcis.sbc.com [207.115.20.70]) by mx1.freebsd.org (Postfix) with ESMTP id EC67F13C46C for ; Sat, 7 Jul 2007 09:13:48 +0000 (UTC) (envelope-from nawcom@nawcom.com) X-ORBL: [68.255.232.220] Received: from fedex.nphreak.local (adsl-68-255-232-220.dsl.sfldmi.ameritech.net [68.255.232.220]) by flpi101.prodigy.net (8.13.8 out.dk.spool/8.13.8) with ESMTP id l679Dkaj028042; Sat, 7 Jul 2007 02:13:47 -0700 Received: from nawcoms-computer.local (unknown [192.168.212.243]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by fedex.nphreak.local (Postfix) with ESMTP id 5B5DC39823; Sat, 7 Jul 2007 05:15:09 -0400 (EDT) Message-ID: <468F5946.1080702@nawcom.com> Date: Sat, 07 Jul 2007 05:13:42 -0400 From: nawcom User-Agent: Thunderbird 2.0.0.4 (Macintosh/20070604) MIME-Version: 1.0 To: tls@panix.com, freebsd-questions@freebsd.org References: <20070707023700.GA11829@panix.com> In-Reply-To: <20070707023700.GA11829@panix.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Safely mount OS X UFS filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 09:13:49 -0000 Oh god i apologize for the unacceptable asnwer; i was probably half-asleep when i responded previously :-P yes, theres no support as far as i know for darwin ufs for freebsd, from what i understand darwin ufs is gonna be the next filesystem for apple to ditch, and for 10.5 they will be using sun's zfs filesystem. theres also development going on for zfs support in the freebsd kernel. the only thing ive done before in a situation like this is to backup the data (copy to alt disk) on the ufs, delete the ufs filesystem and replace it with hfs+ and restore the backup back onto it - assuming you didnt plan for that ufs partition to be bootable or anything. hfs+ is supported in freebsd. I hope that's a more reasonable suggestion - looks like the coffee helped :-P nawcom Thor Lancelot Simon wrote: > Can I, on a system running FreeBSD 6.2 or -current, safely mount a > UFS filesystem created (and used) on Mac OS 10.4.10? These filesystems > are UFS1 (at fslevel 3) with big-endian datastructures in the metadata, > 4k blocks and 1k fragments, and a few minor oddities in their layout; > they are pretty much exactly the UFS NeXT used on their workstations. > > If so, Will such a filesystem be safe to mount under OS X after I use it > on FreeBSD? > > I seem to be able to mount these under NetBSD though the snapshot code > complains that inodes 64 and 16384 are not dedicated to snapshots. > > From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:15:43 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA56716A46D for ; Sat, 7 Jul 2007 09:15:43 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 8FDDF13C48A for ; Sat, 7 Jul 2007 09:15:43 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I76OD-0007Gn-Mz for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 11:15:41 +0200 MIME-Version: 1.0 Date: Sat, 7 Jul 2007 11:15:41 +0200 From: Zbigniew Szalbot To: Freebsd questions In-Reply-To: <661da47eebc86c4118f855e4bf13eb10@szalbot.homedns.org> References: <661da47eebc86c4118f855e4bf13eb10@szalbot.homedns.org> Message-ID: X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Subject: Re: adding password for root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 09:15:44 -0000 Hello, On Sat, 7 Jul 2007 10:48:52 +0200, Zbigniew Szalbot wrote: > Hello, > > Not sure how it came about but I just realized that my for new FBSD > installation root user is without a password. When I log in remotely and > want to use chpass to add a password for user root I am presented with vi > editor in which I guess I could theoretically insert it. But this process > was always interactive. How should I add a password for user root (remote > login as root is disabled). Do I need to access that box physically and > type it on the console or can I set it remotely? Stupid me. Instead of waiting for your advice I went ahead and entered a password in the vi editor, then saved. Unfortunately, this password is not accepted when I su. Is there any hope for me other than reinstallting the whole system? Thank you! -- Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:23:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5078016A41F for ; Sat, 7 Jul 2007 09:23:08 +0000 (UTC) (envelope-from sebosik@demax.sk) Received: from mail.demax.sk (mail.demax.sk [213.215.102.234]) by mx1.freebsd.org (Postfix) with ESMTP id 131E513C4C4 for ; Sat, 7 Jul 2007 09:23:07 +0000 (UTC) (envelope-from sebosik@demax.sk) Received: from mail.demax.sk (localhost [127.0.0.1]) by nod32.demax.sk (Postfix) with ESMTP id F3D9742ADF for ; Sat, 7 Jul 2007 10:52:40 +0200 (CEST) X-Virus-Scanner: This message was checked by NOD32 Antivirus system NOD32 for Linux Mail Server. For more information on NOD32 Antivirus System, please, visit our website: http://www.nod32.com/. Received: from [192.168.1.2] (2D204.demax.sk [195.62.17.204]) by mail.demax.sk (Postfix) with ESMTP id D6EC742AD5 for ; Sat, 7 Jul 2007 10:52:40 +0200 (CEST) Message-ID: <468F544C.7080407@demax.sk> Date: Sat, 07 Jul 2007 10:52:28 +0200 From: Jan Sebosik User-Agent: Thunderbird 2.0.0.4 (X11/20070619) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: NTFS-3G: mount at boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 09:23:08 -0000 Hi all how to mount NTFS partitions in Read/write mode with ntfs-3g at boot ? When I insert record inside /etc/fstab, it says that mount-ntfs-3g doesn`t exist. Best regards --- Jan Sebosik, Slovakia sebosik@demax.sk From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:23:08 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 867C816A421 for ; Sat, 7 Jul 2007 09:23:08 +0000 (UTC) (envelope-from sebosik@demax.sk) Received: from mail.demax.sk (mail.demax.sk [213.215.102.234]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD1813C4C5 for ; Sat, 7 Jul 2007 09:23:08 +0000 (UTC) (envelope-from sebosik@demax.sk) Received: from mail.demax.sk (localhost [127.0.0.1]) by nod32.demax.sk (Postfix) with ESMTP id 444FA42AE1 for ; Sat, 7 Jul 2007 10:55:39 +0200 (CEST) X-Virus-Scanner: This message was checked by NOD32 Antivirus system NOD32 for Linux Mail Server. For more information on NOD32 Antivirus System, please, visit our website: http://www.nod32.com/. Received: from [192.168.1.2] (2D204.demax.sk [195.62.17.204]) by mail.demax.sk (Postfix) with ESMTP id 2851F42AD5 for ; Sat, 7 Jul 2007 10:55:39 +0200 (CEST) Message-ID: <468F5500.7040101@demax.sk> Date: Sat, 07 Jul 2007 10:55:28 +0200 From: Jan Sebosik User-Agent: Thunderbird 2.0.0.4 (X11/20070619) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: GCC 4.2.1: Replacing builtin compiler X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 09:23:08 -0000 Hi how safe is it to compile FreeBSD-world without builtin GCC, and replace it with GCC 4.2.1 from ports ? Should I recompile world and kernel after installing new GCC with it ? Best regards -- Jan Sebosik, Slovakia sebosik@demax.sk From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:26:54 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEBAC16A469 for ; Sat, 7 Jul 2007 09:26:54 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (darklight.org.ru [194.186.18.14]) by mx1.freebsd.org (Postfix) with ESMTP id 99A7613C484 for ; Sat, 7 Jul 2007 09:26:53 +0000 (UTC) (envelope-from yuri@darklight.org.ru) Received: from darklight.org.ru (yuri@darklight.org.ru [127.0.0.1]) by darklight.org.ru (8.14.1/8.14.1) with ESMTP id l679QVmc002324 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 7 Jul 2007 13:26:32 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Received: (from yuri@localhost) by darklight.org.ru (8.14.1/8.14.1/Submit) id l679QUd2002323; Sat, 7 Jul 2007 13:26:30 +0400 (MSD) (envelope-from yuri@darklight.org.ru) Date: Sat, 7 Jul 2007 13:26:30 +0400 From: Yuri Pankov To: Zbigniew Szalbot Message-ID: <20070707092630.GA1027@darklight.org.ru> References: <661da47eebc86c4118f855e4bf13eb10@szalbot.homedns.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender is SPF-compliant, not delayed by milter-greylist-3.0 (darklight.org.ru [127.0.0.1]); Sat, 07 Jul 2007 13:26:32 +0400 (MSD) Cc: Freebsd questions Subject: Re: adding password for root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 09:26:55 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jul 07, 2007 at 11:15:41AM +0200, Zbigniew Szalbot wrote: > Hello, >=20 > On Sat, 7 Jul 2007 10:48:52 +0200, Zbigniew Szalbot > wrote: > > Hello, > >=20 > > Not sure how it came about but I just realized that my for new FBSD > > installation root user is without a password. When I log in remotely and > > want to use chpass to add a password for user root I am presented with = vi > > editor in which I guess I could theoretically insert it. But this proce= ss > > was always interactive. How should I add a password for user root (remo= te > > login as root is disabled). Do I need to access that box physically and > > type it on the console or can I set it remotely? >=20 > Stupid me. Instead of waiting for your advice I went ahead and entered a > password in the vi editor, then saved. Unfortunately, this password is not > accepted when I su. Is there any hope for me other than reinstallting the > whole system? >=20 > Thank you! >=20 > --=20 > Zbigniew Szalbot >=20 You'll need physical access. Boot into single user mode, and you shall be able to change password with `passwd`. Don't forget to `mount -a`. HTH, Yuri --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQBGj1xGeoAklVFrLdgRAv0aAJ9G5nj7Q31qfEGZPEXGf+SSuNT8WwCePFAV CN2RDxzCwUd6rCvbgNidSwg= =p2DH -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 09:54:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 66EB416A468 for ; Sat, 7 Jul 2007 09:54:36 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id B56CB13C4AE for ; Sat, 7 Jul 2007 09:54:35 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 07 Jul 2007 09:54:33 -0000 Received: from vpn-cl-161-84.rz.uni-karlsruhe.de (EHLO mobileKamikaze.norad) [141.3.161.84] by mail.gmx.net (mp030) with SMTP; 07 Jul 2007 11:54:33 +0200 X-Authenticated: #5465401 X-Provags-ID: V01U2FsdGVkX1/x0hUATGfxmhR0CfjzwdDcfl0ZYArIsxgZspDCwY qnqF1a9WOPRP+I Message-ID: <468F62D8.90402@gmx.de> Date: Sat, 07 Jul 2007 11:54:32 +0200 From: "[LoN]Kamikaze" User-Agent: Thunderbird 2.0.0.4 (X11/20070616) MIME-Version: 1.0 To: Jan Sebosik References: <468F5500.7040101@demax.sk> In-Reply-To: <468F5500.7040101@demax.sk> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: freebsd-questions@freebsd.org Subject: Re: GCC 4.2.1: Replacing builtin compiler X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 09:54:36 -0000 Jan Sebosik wrote: > Hi > > how safe is it to compile FreeBSD-world without builtin GCC, and replace > it with GCC 4.2.1 from ports ? > > Should I recompile world and kernel after installing new GCC with it ? > > Best regards > GCC from ports links against the GNU libs, unlike GCC in base, which links to the FreeBSD libs. So it's not as trivial as you seem to think. You might try to use GCC from the FreeBSD-CURRENT branch. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 10:09:57 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D80C16A468 for ; Sat, 7 Jul 2007 10:09:57 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 448C513C459 for ; Sat, 7 Jul 2007 10:09:56 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I77Eg-0000JZ-A9; Sat, 07 Jul 2007 12:09:54 +0200 MIME-Version: 1.0 Date: Sat, 7 Jul 2007 12:09:53 +0200 From: Zbigniew Szalbot To: Yuri Pankov In-Reply-To: <20070707092630.GA1027@darklight.org.ru> References: <20070707092630.GA1027@darklight.org.ru> Message-ID: X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Cc: Freebsd questions Subject: Re: adding password for root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 10:09:57 -0000 On Sat, 7 Jul 2007 13:26:30 +0400, Yuri Pankov wrote: > On Sat, Jul 07, 2007 at 11:15:41AM +0200, Zbigniew Szalbot wrote: >> Hello, >> >> On Sat, 7 Jul 2007 10:48:52 +0200, Zbigniew Szalbot >> wrote: >> > Hello, >> > >> > Not sure how it came about but I just realized that my for new FBSD >> > installation root user is without a password. When I log in remotely > and >> > want to use chpass to add a password for user root I am presented with > vi >> > editor in which I guess I could theoretically insert it. But this > process >> > was always interactive. How should I add a password for user root > (remote >> > login as root is disabled). Do I need to access that box physically > and >> > type it on the console or can I set it remotely? >> >> Stupid me. Instead of waiting for your advice I went ahead and entered a >> password in the vi editor, then saved. Unfortunately, this password is > not >> accepted when I su. Is there any hope for me other than reinstallting > the >> whole system? >> >> Thank you! >> >> -- Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 10:12:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 495C916A400 for ; Sat, 7 Jul 2007 10:12:35 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from szalbot.homedns.org (lists.lc-words.com [83.19.156.210]) by mx1.freebsd.org (Postfix) with ESMTP id 028D013C46E for ; Sat, 7 Jul 2007 10:12:34 +0000 (UTC) (envelope-from zbigniew@szalbot.homedns.org) Received: from localhost ([127.0.0.1] helo=szalbot.homedns.org) by szalbot.homedns.org with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1I77HF-0000KV-0k; Sat, 07 Jul 2007 12:12:33 +0200 MIME-Version: 1.0 Date: Sat, 7 Jul 2007 12:12:32 +0200 From: Zbigniew Szalbot To: Yuri Pankov In-Reply-To: <20070707092630.GA1027@darklight.org.ru> References: <20070707092630.GA1027@darklight.org.ru> Message-ID: <79644b11b22ec788f20d81bf7c3e33ad@szalbot.homedns.org> X-Sender: zbigniew@szalbot.homedns.org User-Agent: RoundCube Webmail/0.1b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Cc: Freebsd questions Subject: Re: adding password for root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 10:12:35 -0000 I am sorry for a previous post - I clicked the wrong button and it got sent. Just wanted to say that changing root password by booting in single user mode, issuing mount -a and then passwd worked great! Thank you! Zbigniew Szalbot From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 12:28:59 2007 Return-Path: X-Original-To: FreeBSD-questions@freebsd.org Delivered-To: FreeBSD-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8839D16A400 for ; Sat, 7 Jul 2007 12:28:59 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from bossdog.realss.com (bossdog.realss.com [211.157.108.128]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8B113C43E for ; Sat, 7 Jul 2007 12:28:58 +0000 (UTC) (envelope-from zhangweiwu@realss.com) Received: from localhost (unknown [127.0.0.1]) by bossdog.realss.com (Postfix) with ESMTP id 592FD1C0006 for ; Sat, 7 Jul 2007 20:29:22 +0800 (CST) Received: from bossdog.realss.com ([127.0.0.1]) by localhost (bossdog.realss.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04529-16 for ; Sat, 7 Jul 2007 20:29:21 +0800 (CST) Received: from [218.193.55.195] (unknown [125.77.224.188]) by bossdog.realss.com (Postfix) with ESMTP id 3A5241C0005 for ; Sat, 7 Jul 2007 20:29:21 +0800 (CST) From: Zhang Weiwu To: FreeBSD-questions Content-Type: text/plain Organization: Real Softservice Date: Sat, 07 Jul 2007 20:24:01 +0800 Message-Id: <1183811041.7741.14.camel@joe.realss.com> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at bossdog.realss.com Cc: Subject: disable PCI interrupt sharing in 6.1? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 12:28:59 -0000 Dear list I have one PCMCIA slot unusable in 6.1 but is fine in 4.7 (when OLDCARD is being used). I am just guessing perhaps this has something to do with interrupt sharing. I cannot find in man page of 'pccard' enough information on how to tweak any option, looks there is no option for pccard(4). Is there a way to disable interrupt sharing for PCI devices? As far as I know the whole concept of NEWCARD is to address the issue of PCI cards, however I only have ISA cards and 16-bit card bridge and NEWCARD didn't solve any of my problem (because I had no problem) but probably created more. Best Regards -- Zhang Weiwu Real Softservice http://www.realss.com +86 592 2091112 From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 13:04:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C49316A421 for ; Sat, 7 Jul 2007 13:04:22 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by mx1.freebsd.org (Postfix) with ESMTP id 24F9513C455 for ; Sat, 7 Jul 2007 13:04:22 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so797089pye for ; Sat, 07 Jul 2007 06:04:21 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=S1ZuD1QvertTS+XPlPev7Hm+HuuY+b1HcE8/F1cstgt3xQ+W8LSklz0KPe7jErgloH1WMSyUjbZljcuBdCx4s2gROIIrLnfWlIPx09tDxCTv3WHEeeQtAf0JADj30aYd+k+eml9CpB+yb1Gc0/gk9ox84b/xVQSdFkw/XjqduPE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=BinId+xS2A+7I8uPA/pCNTGwLqo1ir23Y8SeQWUiVrxja/KZXP2bGwAtpyDnr82t9GWXOfc888q1N9Vx/v5F8/xJr6dUmIrf71hF5NMLa6Jaijmjy5Zm6bGt1V0AgYjjag4yFj3SKIlg832G+i1QalVJu6XT5C1mBGtVv+3GDbw= Received: by 10.35.26.14 with SMTP id d14mr3130202pyj.1183813461411; Sat, 07 Jul 2007 06:04:21 -0700 (PDT) Received: from ?192.168.1.2? ( [209.240.66.157]) by mx.google.com with ESMTP id f78sm28985199pyh.2007.07.07.06.04.20 (version=SSLv3 cipher=OTHER); Sat, 07 Jul 2007 06:04:20 -0700 (PDT) In-Reply-To: <468EDCA5.4050601@dienub.org> References: <200707061144.17748.ray@stilltech.net> <468EDCA5.4050601@dienub.org> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <9DF80946-8AC5-469E-B870-2046411DB930@gmail.com> Content-Transfer-Encoding: 7bit From: Eric Crist Date: Sat, 7 Jul 2007 08:04:17 -0500 To: Daniel A. A. X-Mailer: Apple Mail (2.752.3) Cc: ray@stilltech.net, freebsd-questions@freebsd.org Subject: Re: one server with two ip address X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 13:04:22 -0000 On Jul 6, 2007, at 7:21 PMJul 6, 2007, Daniel A. A. wrote: > Ray wrote: >> Hello all, >> I have a production server with two network interfaces. The >> primary interface is up and running. (DHCP from the local Telco) >> The second interface is installed, but not yet active. It will run >> on a local network only. Can I do something as simple as ifconfig >> nfe1 192.168.0.100 >> to give myself access to the internal network? As this is a >> production server, I don't want to just play with it too much. >> Thanks, >> Ray > You'd have to > ifconfig nfe1 192.168.0.100 netmask ###.###.###.### > But don't worry - If you mistype, or make some other error (Like > forgetting to specify the gateway for the connection), nothing > happens. You'll just get an error printed to stdout and the netif > will remain untouched. > You can shorten that command using CIDR notation as well: ifconfig nfe1 192.168.0.100/24 Eric Crist From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 13:06:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D2ED16A421 for ; Sat, 7 Jul 2007 13:06:29 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.178]) by mx1.freebsd.org (Postfix) with ESMTP id 0F63713C4AD for ; Sat, 7 Jul 2007 13:06:28 +0000 (UTC) (envelope-from mnslinky@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so797830pye for ; Sat, 07 Jul 2007 06:06:28 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=Qmh44Q25I6bRzr4yThyIVR5iTKEVkJTRUt1BoTTNiOVv9N8mPKYBKiHvGSNQWGDDFQ9THaNXOef0eLJCz4tHzb4wIgy9m8DaPOU5ewZbIi2sxpx0zXh0kMyg+EQalJ6nQVX1hoEnx+2n7LP0+i1fQ5PhulIpbuhG420IGeYndFY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=HrY00sV9LkIYUWmloT896R+NkNFE5e4TBbctbR3VvUCZpbPHWzEJzWgpeA2+GJh95bF6pQAGs/sHCGcakdfguJpt9xGOyg3c9Vk2AxPmPt8Y8FZBXA0gMgPYP+yhYqOvHxyl041+1ZRUOkfYEjJyQLyVRWqUBm+iVb0IbXty7o0= Received: by 10.35.71.1 with SMTP id y1mr3101328pyk.1183813588206; Sat, 07 Jul 2007 06:06:28 -0700 (PDT) Received: from ?192.168.1.2? ( [209.240.66.157]) by mx.google.com with ESMTP id n29sm18931201pyh.2007.07.07.06.06.26 (version=SSLv3 cipher=OTHER); Sat, 07 Jul 2007 06:06:27 -0700 (PDT) In-Reply-To: <20070707023700.GA11829@panix.com> References: <20070707023700.GA11829@panix.com> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <7B32216D-003A-411E-943B-30E6FCD0CB5C@gmail.com> Content-Transfer-Encoding: 7bit From: Eric Crist Date: Sat, 7 Jul 2007 08:06:24 -0500 To: tls@panix.com X-Mailer: Apple Mail (2.752.3) Cc: freebsd-questions@freebsd.org Subject: Re: Safely mount OS X UFS filesystem? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 13:06:29 -0000 On Jul 6, 2007, at 9:37 PMJul 6, 2007, Thor Lancelot Simon wrote: > Can I, on a system running FreeBSD 6.2 or -current, safely mount a > UFS filesystem created (and used) on Mac OS 10.4.10? These > filesystems > are UFS1 (at fslevel 3) with big-endian datastructures in the > metadata, > 4k blocks and 1k fragments, and a few minor oddities in their layout; > they are pretty much exactly the UFS NeXT used on their workstations. > > If so, Will such a filesystem be safe to mount under OS X after I > use it > on FreeBSD? > > I seem to be able to mount these under NetBSD though the snapshot code > complains that inodes 64 and 16384 are not dedicated to snapshots. > I've mounted OS X formatted UFS file systems just fine for quite some time. I haven't been able to mount FreeBSD formatted UFS filesystems, however. Eric Crist From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 13:20:26 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 244FD16A468 for ; Sat, 7 Jul 2007 13:20:26 +0000 (UTC) (envelope-from alive@dienub.org) Received: from pfepa.post.tele.dk (pfepa.post.tele.dk [195.41.46.235]) by mx1.freebsd.org (Postfix) with ESMTP id DF16E13C480 for ; Sat, 7 Jul 2007 13:20:25 +0000 (UTC) (envelope-from alive@dienub.org) Received: from m00h.dienub.org (dienub.org [87.48.115.212]) by pfepa.post.tele.dk (Postfix) with ESMTP id 78A7AFAC020; Sat, 7 Jul 2007 15:20:24 +0200 (CEST) Received: from [192.168.0.2] (Radab0x.dienub.org [192.168.0.2]) by m00h.dienub.org (Postfix) with ESMTP id 358FA11432; Sat, 7 Jul 2007 15:20:24 +0200 (CEST) Message-ID: <468F931B.4060505@dienub.org> Date: Sat, 07 Jul 2007 15:20:27 +0200 From: "Daniel A. A." User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Eric Crist References: <200707061144.17748.ray@stilltech.net> <468EDCA5.4050601@dienub.org> <9DF80946-8AC5-469E-B870-2046411DB930@gmail.com> In-Reply-To: <9DF80946-8AC5-469E-B870-2046411DB930@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ray@stilltech.net, freebsd-questions@freebsd.org Subject: Re: one server with two ip address X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 13:20:26 -0000 Eric Crist wrote: > > On Jul 6, 2007, at 7:21 PMJul 6, 2007, Daniel A. A. wrote: > >> Ray wrote: >>> Hello all, >>> I have a production server with two network interfaces. The primary >>> interface is up and running. (DHCP from the local Telco) The second >>> interface is installed, but not yet active. It will run on a local >>> network only. Can I do something as simple as ifconfig nfe1 >>> 192.168.0.100 >>> to give myself access to the internal network? As this is a >>> production server, I don't want to just play with it too much. Thanks, >>> Ray >> You'd have to >> ifconfig nfe1 192.168.0.100 netmask ###.###.###.### >> But don't worry - If you mistype, or make some other error (Like >> forgetting to specify the gateway for the connection), nothing >> happens. You'll just get an error printed to stdout and the netif >> will remain untouched. >> > > You can shorten that command using CIDR notation as well: > > ifconfig nfe1 192.168.0.100/24 > > Eric Crist > Showoff :P From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 13:50:28 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6957116A480 for ; Sat, 7 Jul 2007 13:50:28 +0000 (UTC) (envelope-from simonychang@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.224]) by mx1.freebsd.org (Postfix) with ESMTP id 291C813C459 for ; Sat, 7 Jul 2007 13:50:28 +0000 (UTC) (envelope-from simonychang@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so370309nzf for ; Sat, 07 Jul 2007 06:50:27 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Qoe03xKBuXrKIk7PuQz84rX2db3/ltqB0lV7KGsPWIDJ+unevjxW9IMOjbw4vJldw/tP30pb5NhxQWM39rGmW32VtuJ5wnM6TwInnwj9lkl+mLSHims/KDfG72BQFXtT77x80i/IB5JhW6wTdZgXw7zgD+5cD1/EMP8Y65ouHmc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NmGRTaz6mk5B/a9LU8yRZh2JOqYGcA6L52Atw8J6rr48fn3Y0KzntaM5j8TAT218vnt8wXBPD9Xg7Kng72Ml4oMBiitVISve4ei5hfIePIv0SGyq+kpe5in0ykRtyaSOoT8fyof5Ay3Ac6Vw4S9/faion3XB76IgeefpFhJokv0= Received: by 10.114.154.1 with SMTP id b1mr1568972wae.1183816226796; Sat, 07 Jul 2007 06:50:26 -0700 (PDT) Received: by 10.114.26.7 with HTTP; Sat, 7 Jul 2007 06:50:26 -0700 (PDT) Message-ID: <8efc42630707070650g55179cbk3ffc554b14d6d33d@mail.gmail.com> Date: Sat, 7 Jul 2007 09:50:26 -0400 From: "Simon Chang" To: tundra@tundraware.com In-Reply-To: <468F4635.4020204@tundraware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <468F4635.4020204@tundraware.com> Cc: freebsd-questions@freebsd.org Subject: Re: An ssh 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: Sat, 07 Jul 2007 13:50:28 -0000 > > OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 > debug1: Reading configuration data /etc/ssh/ssh_config > debug2: ssh_connect: needpriv 0 > debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. > > > What is really baffling is that if I try the exact same thing from, say, > a cygwin session on a host on the private network - this works fine. > So ... it's not a firewall problem as near as I can tell. It may be > an ssh configuration problem - that is, the FreeBSD ssh client can't do > it, but another client (cygwin) can. It would be helpful if you include your firewall ruleset, plus sshd_config. It's possible that one or more is misconfigured, but we would have no way of knowing without your telling us about them. SC From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 15:05:45 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 620E716A469 for ; Sat, 7 Jul 2007 15:05:45 +0000 (UTC) (envelope-from idiotbg@gmail.com) Received: from smtp.studnetz.uni-leipzig.de (smtp.studnetz.uni-leipzig.de [139.18.143.252]) by mx1.freebsd.org (Postfix) with ESMTP id EB8CE13C45E for ; Sat, 7 Jul 2007 15:05:44 +0000 (UTC) (envelope-from idiotbg@gmail.com) Received: from localhost (localhost [127.0.0.1]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id DCD6C261; Sat, 7 Jul 2007 17:05:43 +0200 (CEST) X-Virus-Scanned: by amavisd-new at studnetz-ul Received: from smtp.studnetz.uni-leipzig.de ([127.0.0.1]) by localhost (smtp.studnetz.uni-leipzig.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eWzT266bLA1h; Sat, 7 Jul 2007 17:05:43 +0200 (CEST) Received: from [192.168.63.4] (a144026.studnetz.uni-leipzig.de [139.18.144.26]) by smtp.studnetz.uni-leipzig.de (Postfix) with ESMTP id 9140B259; Sat, 7 Jul 2007 17:05:43 +0200 (CEST) From: Momchil Ivanov To: freebsd-questions@freebsd.org Date: Sat, 7 Jul 2007 17:05:40 +0200 User-Agent: KMail/1.9.6 References: <200707051929.07747.ABabiy@shaw.ca> <200707061139.24801.idiotbg@gmail.com> <468E103F.3040403@boosten.org> In-Reply-To: <468E103F.3040403@boosten.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart78922469.KthifWaTq0"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200707071705.44385.idiotbg@gmail.com> Cc: Peter Boosten Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 15:05:45 -0000 --nextPart78922469.KthifWaTq0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 06 July 2007 11:49:51 Peter Boosten wrote: > Momchil Ivanov wrote: > > You can try the mame emulator (it is in ports). There were a lot of gam= es > > for 8 bit consoles when I was about 8 years old :) and believe me, they > > were and still are amaizing. There is no such experience as playing the > > whole night "Tanks" with a friend getting to the last level or so. > > True: they don't make them like they used to :-) 21th century :) everything is 3D with surround sound now, no beeps, even th= e=20 controls are different now. Have you tried the new Wii console? You have=20 wireless remotes with built in speakers (they vibrate too) and you just hav= e=20 to move your hand around or turn the remote..... Boxing with these remotes = is=20 fun :) though they don`t work with distances greater that 2.5-3 meters, whi= ch=20 is a but unpleasant when 4 people are playing tennis ( there is just not=20 enough free space for 4 people moving hands around in these 3 meters in fro= nt=20 of the tv). Though computer games are fun, consoles still rock! =2D-=20 PGP KeyID: 0x3118168B Keyserver: pgp.mit.edu Key fingerprint BB50 2983 0714 36DC D02E =A0158A E03D 56DA 3118 168B =20 --nextPart78922469.KthifWaTq0 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBGj6vE4D1W2jEYFosRAo4eAKC2lqfTnYuzGLG1mi/IvsL1IMBLJACgol/i PRlYSNcdA3iOIAu4kzDsMRA= =S3t8 -----END PGP SIGNATURE----- --nextPart78922469.KthifWaTq0-- From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 15:31:11 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0460A16A46F for ; Sat, 7 Jul 2007 15:31:11 +0000 (UTC) (envelope-from modulok@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.181]) by mx1.freebsd.org (Postfix) with ESMTP id B725213C4BF for ; Sat, 7 Jul 2007 15:31:10 +0000 (UTC) (envelope-from modulok@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so846372pye for ; Sat, 07 Jul 2007 08:31:10 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=FNx+eXvUORBHIvwGJ5cBQR/19AS7JVoybi3E7CBXEHV1rfwFqQXqOG83DQFeO8reoa4CTEp6xvdnOEhqTXUfrkSrHunyPU0rDd53NshGATrXVScn/WdUqx/xuU5iEnxqTKlbV9qa9YBa2Zgvir7OHpeRXaMvxkk/CkeKas/EH6Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ssVsvijaR3LmSJGmGwKxM9JKVcthhpmIpRGdpt5APItQRdlI0kun3B8d6cLpo+kGYt+5HO+qHDY399ODvBOeGFp6KsI+pGdQxqmVbi76QgguoMMg1SIK7FRJinoNYFzW2P8YbMbuqxUffL6zO1/RTPMCLBWLDybgnyGwNSsmVhI= Received: by 10.141.108.21 with SMTP id k21mr474763rvm.1183822266491; Sat, 07 Jul 2007 08:31:06 -0700 (PDT) Received: by 10.140.170.12 with HTTP; Sat, 7 Jul 2007 08:31:06 -0700 (PDT) Message-ID: <64c038660707070831u2a5845afp6bd343b51b28ffde@mail.gmail.com> Date: Sat, 7 Jul 2007 09:31:06 -0600 From: Modulok To: "Momchil Ivanov" In-Reply-To: <200707071705.44385.idiotbg@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200707051929.07747.ABabiy@shaw.ca> <200707061139.24801.idiotbg@gmail.com> <468E103F.3040403@boosten.org> <200707071705.44385.idiotbg@gmail.com> Cc: freebsd-questions@freebsd.org, Peter Boosten Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 15:31:11 -0000 On 7/7/07, Momchil Ivanov wrote: > On Friday 06 July 2007 11:49:51 Peter Boosten wrote: > > Momchil Ivanov wrote: > > > You can try the mame emulator (it is in ports). There were a lot of > games > > > for 8 bit consoles when I was about 8 years old :) and believe me, they > > > were and still are amaizing. There is no such experience as playing the > > > whole night "Tanks" with a friend getting to the last level or so. > > > > True: they don't make them like they used to :-) > > 21th century :) everything is 3D with surround sound now, no beeps, even the > controls are different now. Have you tried the new Wii console? You have > wireless remotes with built in speakers (they vibrate too) and you just have > to move your hand around or turn the remote..... Boxing with these remotes > is > fun :) though they don`t work with distances greater that 2.5-3 meters, > which > is a but unpleasant when 4 people are playing tennis ( there is just not > enough free space for 4 people moving hands around in these 3 meters in > front > of the tv). > Though computer games are fun, consoles still rock! > > -- > PGP KeyID: 0x3118168B > Keyserver: pgp.mit.edu > Key fingerprint BB50 2983 0714 36DC D02E 158A E03D 56DA 3118 168B Off topic: The wii remote references an array of infrared sources, typically emitted from the supplied sensor bar. However, any two point sources of infrared light can be substituted. For example, one could ignite two candles and place them on either side of the television. Common household candles emit in the infrared spectrum and thus can be used as reference points by the infrared sensor in the controller. Due to the fact that they are significantly brighter than those in the supplied sensor bar, one should be able to use the controller from a significant distance. Be careful not to burn your house down. You can probably find some nice infrared emitting diodes at Radio Shack and hook them up to an AC/DC converter instead. Be safe. Experiment. Have fun. -Modulok- From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 15:39:24 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CDE716A46D for ; Sat, 7 Jul 2007 15:39:24 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from mail.freebsd-corp-net-guide.com (mail.freebsd-corp-net-guide.com [65.75.192.90]) by mx1.freebsd.org (Postfix) with ESMTP id AB59213C45A for ; Sat, 7 Jul 2007 15:39:23 +0000 (UTC) (envelope-from tedm@toybox.placo.com) Received: from TEDSDESK (nat-rtr.freebsd-corp-net-guide.com [65.75.197.130]) by mail.freebsd-corp-net-guide.com (8.13.8/8.13.8) with SMTP id l67FdLl8079177; Sat, 7 Jul 2007 08:39:22 -0700 (PDT) (envelope-from tedm@toybox.placo.com) From: "Ted Mittelstaedt" To: "Martin Hepworth" , "Tek Bahadur Limbu" Date: Sat, 7 Jul 2007 08:40:31 -0700 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-Reply-To: <72cf361e0707051113v366e8b36ufd68c1d6aba9abc1@mail.gmail.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1896 Importance: Normal X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (mail.freebsd-corp-net-guide.com [65.75.192.90]); Sat, 07 Jul 2007 08:39:23 -0700 (PDT) Cc: freebsd-questions@freebsd.org Subject: RE: bge NIC not supporting 1000baseTX X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 15:39:24 -0000 This is similar to PR kern/107850 maybe it should be added to it. Ted > -----Original Message----- > From: owner-freebsd-questions@freebsd.org > [mailto:owner-freebsd-questions@freebsd.org]On Behalf Of Martin Hepworth > Sent: Thursday, July 05, 2007 11:13 AM > To: Tek Bahadur Limbu > Cc: freebsd-questions@freebsd.org > Subject: Re: bge NIC not supporting 1000baseTX > > > HI > > is the other end auto-negotiating properly? What happens if you force 1000 > full at BOTH ends? > > -- > martin > > On 7/5/07, Tek Bahadur Limbu wrote: > > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > Hi all, > > > > I have a problem with my bge0 (BCM5750A1 NetXtreme) NIC card which is > > integrated in my Dell 600SC machine. This machine is running on > > FreeBSD-6.2 (i386). > > > > For some reasons, the bge0 NIC interface does not seem to support > > 1000baseTX settings. > > > > When the NIC card is set at either 10/100 baseTX, the bge0 interface > > shows an active state. However, when I type the following command: > > > > ifconfig bge0 media 1000baseTX > > > > the status of the bge0 NIC card shows: no carrier > > > > Does that mean that this bge0 NIC card does not support speeds of > > 1000baseTX or do I have to tweak some kernel or sysctl settings? > > > > Thanking you.... > > > > > > - -- > > > > > > With best regards and good wishes, > > > > Yours sincerely, > > > > Tek Bahadur Limbu > > > > (TAG/TDG Group) > > Jwl Systems Department > > > > Worldlink Communications Pvt. Ltd. > > > > Jawalakhel, Nepal > > > > http://www.wlink.com.np > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v1.4.2.2 (FreeBSD) > > > > iD8DBQFGjPQvVrOl+eVhOvYRAtEsAKCni1JJ/mBLLOnSroIajz6vO+gwTACdE22N > > W2fd6dj7OunY/1r5PaZkLMs= > > =HGVA > > -----END PGP SIGNATURE----- > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to " > > freebsd-questions-unsubscribe@freebsd.org" > > > _______________________________________________ > 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 Jul 7 15:39:40 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C9F216A400 for ; Sat, 7 Jul 2007 15:39:40 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from mail.jellico.com (mail.jellico.com [207.191.185.6]) by mx1.freebsd.org (Postfix) with ESMTP id 0D6F713C4B8 for ; Sat, 7 Jul 2007 15:39:39 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from lisac (lisa.jellico.com [207.191.185.213]) (authenticated bits=0) by mail.jellico.com (8.12.6/8.12.6) with ESMTP id l67FcxBX014322 for ; Sat, 7 Jul 2007 11:38:59 -0400 Message-ID: <003701c7c0ac$f7a6f350$d5b9bfcf@lisac> From: "Lisa Casey" To: Date: Sat, 7 Jul 2007 11:39:11 -0400 Organization: Netlink 2000, Inc. MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Scanned-By: MIMEDefang 2.48 on 127.0.0.1 Subject: passwd file and user accounts X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 15:39:40 -0000 Hi, This is probably a stupid question, but I'll ask it anyway... I have a Red Hat Linux system I need to get rid of. It is currently doing e-mail for approximately 700 users and is also doing radius authentication. I have setup a new FreeBSD computer to take it's place. I have everything setup now on the FreeBSD computer except for the user accounts and mailboxes. The mailboxes aren't a problem, I've used tar to move mailboxes before. I suppose I cannot simply copy /etc/passwd, /etc/group and /home from the Redhat computer to the FreeBSD computer due to the password hash in /etc/passwd. Am I correct on this? Would it be possible to copy /etc/passwd then (before the new system goes "live") reset all the passwords with the passwd command? That might be easier than adding in close to 700 accounts using adduser. Does anyone have a better idea of how I might go about doing this? Thanks, Lisa Casey From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 16:05:22 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 913E216A468 for ; Sat, 7 Jul 2007 16:05:22 +0000 (UTC) (envelope-from pj@smo.de) Received: from ilk.de (mx-out12.ilk.de [194.121.104.12]) by mx1.freebsd.org (Postfix) with ESMTP id 128D713C45B for ; Sat, 7 Jul 2007 16:05:21 +0000 (UTC) (envelope-from pj@smo.de) Received: from bologna.intern.smo.de (pool48.ka.ilk.net [212.86.194.48]) by ilk.de (8.13.4/8.13.4/ilk-relay) with ESMTP id l67G59iS020180; Sat, 7 Jul 2007 18:05:09 +0200 Received: from [192.168.153.208] (herdubreid.intern.smo.de [192.168.153.208]) by bologna.intern.smo.de (8.13.4+Sun/8.13.4) with ESMTP id l67G2NFF011762; Sat, 7 Jul 2007 18:02:23 +0200 (CEST) Message-ID: <468FBA32.1080003@smo.de> Date: Sat, 07 Jul 2007 18:07:14 +0200 From: Philipp Ost User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.13) Gecko/20070525 X-Accept-Language: de, en-us, en MIME-Version: 1.0 To: David Southwell References: <200707070341.13963.david@vizion2000.net> In-Reply-To: <200707070341.13963.david@vizion2000.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: gimpshop howto start? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 16:05:22 -0000 David Southwell wrote: > I posted this to the gimp mailing list but the list seems to have a v. low > activity and few postings. There is no reply so far. So hopefully there is > someone here who can point me in the right direction. This type of question rather belongs to questions@. I've CC'd that list. > 1. How do I get to start gimpshop? The docs seem to have detailed > documentation but although I have searched -- I seem > unable to find anything that tells me how to get the gimpshop interface > running :-( You mean how to start up the program itself? Open an xterm (or aterm, eterm or...) and type 'gimpshop' at the prompt... > 2. I found that gimp will itself will open *.jpg but does not open raw files - > In my case in need to be able to open canon raw files *.cr2 and would also > like to be able to open photoshop *.psd files. Gimp can open and save *.psd files. Gimp can open several types of raw files, but I don't know if *.cr2 is supported. > # pkg_info |grep gimp [...] > gimpshop-2.2.11_5 GIMP fork resembling Adobe Photoshop ^^^^ --> Gimpshop is an autonomous application (see above). HTH, Philipp -- www.familie-ost.info/~pj From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 16:36:17 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29C9816A468 for ; Sat, 7 Jul 2007 16:36:17 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from mail.jellico.com (mail.jellico.com [207.191.185.6]) by mx1.freebsd.org (Postfix) with ESMTP id DE22313C4BE for ; Sat, 7 Jul 2007 16:36:16 +0000 (UTC) (envelope-from lisa@jellico.com) Received: from lisac (lisa.jellico.com [207.191.185.213]) (authenticated bits=0) by mail.jellico.com (8.12.6/8.12.6) with ESMTP id l67GZaBX027446 for ; Sat, 7 Jul 2007 12:35:36 -0400 Message-ID: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> From: "Lisa Casey" To: Date: Sat, 7 Jul 2007 12:35:48 -0400 Organization: Netlink 2000, Inc. MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3138 X-Scanned-By: MIMEDefang 2.48 on 127.0.0.1 Subject: Adding a new 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: Sat, 07 Jul 2007 16:36:17 -0000 Hi, Once I get this new system going I promise I'll quit pestering you folks :-) Got another question. This should be simple to answer. I've done this before but can't seem to replicate it this morning. I have a few scripts my employees use to do things such as add a new radius user, restart the radius server and tail the radius log file. The most simple one is radlog. The file radlog contains the line: tail -f /var/log/radius.log I need to be able to type radlog from anywhere on the system and have it work. I put the file radlog in /bin (/bin and /sbin are all in my shell's path). Ownership is root/wheel permissions are 555 (I've tried 700 and 777 - these don't need write access though). But when I type radlog I get command not found. I can type ./bin/radlog and it works but I don't want that. I thought if the file was in my path and if it was executable just typing the name of the file from anywhere would work but evidently I'm overlooking something. What? Thanks, Lisa Casey From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 16:38:03 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E525716A400 for ; Sat, 7 Jul 2007 16:38:03 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id 91FE113C465 for ; Sat, 7 Jul 2007 16:38:03 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id 2653A39899 for ; Sat, 7 Jul 2007 18:38:02 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id ECE0C39898; Sat, 7 Jul 2007 18:38:01 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id D8DCD3987F for ; Sat, 7 Jul 2007 18:37:58 +0200 (CEST) Message-ID: <468FC166.3060009@boosten.org> Date: Sat, 07 Jul 2007 18:37:58 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <200707051929.07747.ABabiy@shaw.ca> <200707061139.24801.idiotbg@gmail.com> <468E103F.3040403@boosten.org> <200707071705.44385.idiotbg@gmail.com> In-Reply-To: <200707071705.44385.idiotbg@gmail.com> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-4, 07/06/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: game advice X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 16:38:04 -0000 Momchil Ivanov wrote: > On Friday 06 July 2007 11:49:51 Peter Boosten wrote: >> Momchil Ivanov wrote: >>> You can try the mame emulator (it is in ports). There were a lot of games >>> for 8 bit consoles when I was about 8 years old :) and believe me, they >>> were and still are amaizing. There is no such experience as playing the >>> whole night "Tanks" with a friend getting to the last level or so. >> True: they don't make them like they used to :-) > > Though computer games are fun, consoles still rock! > I guess you've never tried the very addictive nethack, then? It's not a game for an 8-year old, btw, but that one really rocks... Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 16:42:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C91D16A421 for ; Sat, 7 Jul 2007 16:42:16 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (cp268254-a.landg1.lb.home.nl [213.51.103.48]) by mx1.freebsd.org (Postfix) with ESMTP id CD82E13C487 for ; Sat, 7 Jul 2007 16:42:15 +0000 (UTC) (envelope-from peter@boosten.org) Received: from ra.egypt.nl (localhost.egypt.nl [127.0.0.1]) by ra.egypt.nl (Postfix) with ESMTP id D51AD39898 for ; Sat, 7 Jul 2007 18:42:14 +0200 (CEST) Received: by ra.egypt.nl (Postfix, from userid 501) id 7147039884; Sat, 7 Jul 2007 18:42:14 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on ra.egypt.nl X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED, AWL autolearn=ham version=3.2.1 Received: from [127.0.0.1] (xp.egypt.nl [192.168.13.35]) by ra.egypt.nl (Postfix) with ESMTP id A10113987B for ; Sat, 7 Jul 2007 18:42:10 +0200 (CEST) Message-ID: <468FC261.3070902@boosten.org> Date: Sat, 07 Jul 2007 18:42:09 +0200 From: Peter Boosten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060516 Thunderbird/1.5.0.4 Mnenhy/0.7.4.666 MIME-Version: 1.0 To: FreeBSD Questions References: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> In-Reply-To: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> X-Enigmail-Version: 0.95.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 000754-4, 07/06/2007), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: Adding a new 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: Sat, 07 Jul 2007 16:42:16 -0000 Lisa Casey wrote: > Hi, > > Once I get this new system going I promise I'll quit pestering you folks > :-) > > Got another question. This should be simple to answer. I've done this > before but can't seem to replicate it this morning. I have a few scripts > my employees use to do things such as add a new radius user, restart the > radius server and tail the radius log file. The most simple one is > radlog. The file radlog contains the line: > tail -f /var/log/radius.log > > I need to be able to type radlog from anywhere on the system and have it > work. > > I put the file radlog in /bin (/bin and /sbin are all in my shell's > path). Ownership is root/wheel permissions are 555 (I've tried 700 and > 777 - these don't need write access though). But when I type radlog I > get command not found. I can type ./bin/radlog and it works but I don't > want that. I thought if the file was in my path and if it was executable > just typing the name of the file from anywhere would work but evidently > I'm overlooking something. What? > try typing 'rehash' first (without the quotes). It's more obvious to put local scripts in /usr/local/bin, IMHO. Hope this helps. Peter -- http://www.boosten.org From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 16:59:51 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D275216A421 for ; Sat, 7 Jul 2007 16:59:51 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 8B89D13C48A for ; Sat, 7 Jul 2007 16:59:51 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (ozzie.tundraware.com [66.92.130.199]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l67GxWpE000265 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 7 Jul 2007 11:59:32 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468FC670.9060903@tundraware.com> Date: Sat, 07 Jul 2007 11:59:28 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Jonathan Chen , freebsd-questions@freebsd.org References: <468F4635.4020204@tundraware.com> <20070707090248.GB62156@osiris.chen.org.nz> In-Reply-To: <20070707090248.GB62156@osiris.chen.org.nz> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.515, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60, URI_NOVOWEL 0.88) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: Subject: Re: An ssh Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 16:59:51 -0000 Jonathan Chen wrote: > On Sat, Jul 07, 2007 at 02:52:21AM -0500, Tim Daneliuk wrote: >> I have a machine that is my firewall/gateway to a private network NATing >> non-routable addresses. I can ssh at-will from hosts on the private >> network to machines out on the net, but when I try to ssh from the >> firewall machine to a particular address, it just hangs and eventually >> times out. Verbose output is: >> >> OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 >> debug1: Reading configuration data /etc/ssh/ssh_config >> debug2: ssh_connect: needpriv 0 >> debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. >> >> >> What is really baffling is that if I try the exact same thing from, say, >> a cygwin session on a host on the private network - this works fine. >> So ... it's not a firewall problem as near as I can tell. > > It sure sounds like a firewall problem to me. Why do you think > otherwise? Because machines *behind* the firewall can get out to the machine in question, but the firewall machine itself cannot... -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 17:02:44 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F349116A469 for ; Sat, 7 Jul 2007 17:02:43 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id 9D2FE13C465 for ; Sat, 7 Jul 2007 17:02:43 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (ozzie.tundraware.com [66.92.130.199]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l67H2aIO000338 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 7 Jul 2007 12:02:37 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468FC728.8040903@tundraware.com> Date: Sat, 07 Jul 2007 12:02:32 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Simon Chang , freebsd-questions@freebsd.org References: <468F4635.4020204@tundraware.com> <8efc42630707070650g55179cbk3ffc554b14d6d33d@mail.gmail.com> In-Reply-To: <8efc42630707070650g55179cbk3ffc554b14d6d33d@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.515, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60, URI_NOVOWEL 0.88) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: Subject: Re: An ssh Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 17:02:44 -0000 Simon Chang wrote: >> >> OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 >> debug1: Reading configuration data /etc/ssh/ssh_config >> debug2: ssh_connect: needpriv 0 >> debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. >> >> >> What is really baffling is that if I try the exact same thing from, say, >> a cygwin session on a host on the private network - this works fine. >> So ... it's not a firewall problem as near as I can tell. It may be >> an ssh configuration problem - that is, the FreeBSD ssh client can't do >> it, but another client (cygwin) can. > > It would be helpful if you include your firewall ruleset, plus > sshd_config. It's possible that one or more is misconfigured, but we > would have no way of knowing without your telling us about them. > > SC I have opened up the firewall entirely just to test, and this does not solve the problem: 00100 162 18088 divert 8668 ip from any to any via fxp0 00100 0 0 allow ip from any to any via lo0 00200 0 0 deny ip from any to 127.0.0.0/8 00300 0 0 deny ip from 127.0.0.0/8 to any 65000 206 21586 allow ip from any to any 65535 3872 652732 deny ip from any to any The ssh config is untouched and has only comments in it: # $OpenBSD: ssh_config,v 1.22 2006/05/29 12:56:33 dtucker Exp $ # $FreeBSD: src/crypto/openssh/ssh_config,v 1.27.2.4 2006/11/11 00:51:28 des Exp $ # This is the ssh client system-wide configuration file. See # ssh_config(5) for more information. This file provides defaults for # users, and the values can be changed in per-user configuration files # or on the command line. # Configuration data is parsed as follows: # 1. command line options # 2. user-specific file # 3. system-wide file # Any configuration value is only changed the first time it is set. # Thus, host-specific definitions should be at the beginning of the # configuration file, and defaults at the end. # Site-wide defaults for some commonly used options. For a comprehensive # list of available options, their meanings and defaults, please see the # ssh_config(5) man page. # Host * # ForwardAgent no # ForwardX11 no # RhostsRSAAuthentication no # RSAAuthentication yes # PasswordAuthentication yes # HostbasedAuthentication no # GSSAPIAuthentication no # GSSAPIDelegateCredentials no # BatchMode no # CheckHostIP no # AddressFamily any # ConnectTimeout 0 # StrictHostKeyChecking ask # IdentityFile ~/.ssh/identity # IdentityFile ~/.ssh/id_rsa # IdentityFile ~/.ssh/id_dsa # Port 22 # Protocol 2,1 # Cipher 3des # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc # EscapeChar ~ # Tunnel no # TunnelDevice any:any # PermitLocalCommand no # VersionAddendum FreeBSD-20061110 -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 17:23:27 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDAAA16A484 for ; Sat, 7 Jul 2007 17:23:27 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from mail.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.freebsd.org (Postfix) with ESMTP id C74E913C465 for ; Sat, 7 Jul 2007 17:23:27 +0000 (UTC) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (localhost.esfm.ipn.mx [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 17D9A452D8; Sat, 7 Jul 2007 12:15:43 -0500 (CDT) X-Virus-Scanned: amavisd-new at esfm.ipn.mx Received: from mail.esfm.ipn.mx ([127.0.0.1]) by localhost (mail.esfm.ipn.mx [127.0.0.1]) (amavisd-new, port 10024) with LMTP id KbgpqkBpWz2T; Sat, 7 Jul 2007 12:15:40 -0500 (CDT) Received: by mail.esfm.ipn.mx (Postfix, from userid 1000) id 50099452F8; Sat, 7 Jul 2007 12:15:40 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by mail.esfm.ipn.mx (Postfix) with ESMTP id 4E85B452F5; Sat, 7 Jul 2007 12:15:40 -0500 (CDT) Date: Sat, 7 Jul 2007 12:15:40 -0500 (CDT) From: Eduardo Viruena Silva To: Lisa Casey In-Reply-To: <003701c7c0ac$f7a6f350$d5b9bfcf@lisac> Message-ID: <20070707114332.O40553@Gina.esfm.ipn.mx> References: <003701c7c0ac$f7a6f350$d5b9bfcf@lisac> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: passwd file and user accounts X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 17:23:28 -0000 On Sat, 7 Jul 2007, Lisa Casey wrote: > Hi, > > This is probably a stupid question, but I'll ask it anyway... > > I have a Red Hat Linux system I need to get rid of. It is currently doing > e-mail for approximately 700 users and is also doing radius authentication. I > have setup a new FreeBSD computer to take it's place. I have everything setup > now on the FreeBSD computer except for the user accounts and mailboxes. The > mailboxes aren't a problem, I've used tar to move mailboxes before. > > I suppose I cannot simply copy /etc/passwd, /etc/group and /home from the > Redhat computer to the FreeBSD computer due to the password hash in > /etc/passwd. Am I correct on this? Would it be possible to copy /etc/passwd > then (before the new system goes "live") reset all the passwords with the > passwd command? That might be easier than adding in close to 700 accounts > using adduser. Does anyone have a better idea of how I might go about doing > this? Yes, you are right, you cannot simply copy the password files. FreeBSD and RedHat passwords files have different formats, and they also have different User IDs for the system users. Your real problem is to merge RedHat's "/etc/passwd" and "/etc/shadow" in order to create your /etc/master.passwd in FreeBSD and then you have to create your hash db from this file. In RedHat for instance, you have: /etc/passwd: daemon:x:2:2:daemon:/sbin:/sbin/nologin /etc/shadow: daemon:*:11688:0:99999:7::: Meaning: /etc/passwd: UserName:x:UserID:GroupID:RealName:HomeDir:Shell /etc/shadow: UserName:CryptedPassword:... In FreeBSD's master.passwd, you have: daemon:*:1:1::0:0:Owner of many system processes:/root:/usr/sbin/nologin UserName:CryptedPassword:UserId:GroupId:UserName:LogClass:0:0:RealName:HomeDir:Shell As you can see, "daemon" has different UIDs. I believe RedHat also uses MD5 for coding passwords but I do not know it for sure. So, take ONLY the entries of YOUR USERS and merge them in the FreeBSD's format and leave the list in a file. Once you have done this, use 'vipw' to edit your master.passwd, include your file of your users, and save it. This program will create your hash table and will update the password files. Good luck. Eduardo > > Thanks, > > Lisa Casey > From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 18:12:38 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6052B16A400 for ; Sat, 7 Jul 2007 18:12:38 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.freebsd.org (Postfix) with ESMTP id 9FD0513C448 for ; Sat, 7 Jul 2007 18:12:37 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost.infracaninophile.co.uk [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.1/8.14.1) with ESMTP id l67ICKZc080719; Sat, 7 Jul 2007 19:12:21 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=permerror; spf=permerror X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk l67ICKZc080719 Message-ID: <468FD784.3000807@infracaninophile.co.uk> Date: Sat, 07 Jul 2007 19:12:20 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.4 (X11/20070619) MIME-Version: 1.0 To: Lisa Casey References: <003701c7c0ac$f7a6f350$d5b9bfcf@lisac> In-Reply-To: <003701c7c0ac$f7a6f350$d5b9bfcf@lisac> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Sat, 07 Jul 2007 19:12:31 +0100 (BST) X-Virus-Scanned: ClamAV 0.90.3/3607/Fri Jul 6 00:51:19 2007 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_SIGNSOME, DKIM_POLICY_TESTING, NO_RELAYS autolearn=ham version=3.2.1 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on happy-idiot-talk.infracaninophile.co.uk Cc: freebsd-questions@freebsd.org Subject: Re: passwd file and user accounts X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 18:12:38 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Lisa Casey wrote: > Hi, > > This is probably a stupid question, but I'll ask it anyway... > > I have a Red Hat Linux system I need to get rid of. It is currently > doing e-mail for approximately 700 users and is also doing radius > authentication. I have setup a new FreeBSD computer to take it's place. > I have everything setup now on the FreeBSD computer except for the user > accounts and mailboxes. The mailboxes aren't a problem, I've used tar to > move mailboxes before. > > I suppose I cannot simply copy /etc/passwd, /etc/group and /home from > the Redhat computer to the FreeBSD computer due to the password hash in > /etc/passwd. Am I correct on this? Would it be possible to copy > /etc/passwd then (before the new system goes "live") reset all the > passwords with the passwd command? That might be easier than adding in > close to 700 accounts using adduser. Does anyone have a better idea of > how I might go about doing this? Not a stupid question at all, and you are quite right: you can't just copy /etc/passwd and /etc/group from the Redhat box. /home you can, pretty much, but see below about the necessity to renumber some accounts, and also be aware that if any of your users have locally installed Linux executables or scripts that claim to be run by /bin/sh when they really need /usr/local/bin/bash then they will have problems. You're going to run into a number of problems shifting your user accounts over: i) System level accounts. On FreeBSD these are all the accounts with UID or GID below 1000, plus the 'nobody' account. See /usr/src/etc/master.passwd and /usr/src/etc/group for the list of what is required by the base system, and see /usr/ports/{UIDs,GIDs} for the numbers reserved by the ports system. On Redhat, the boundary between system and user accounts is UID 500. Thus to port your passwd and group database from Redhat to FreeBSD you will need to discard the UIDs and GIDs below 500, substituting the equivalent stuff from the default master.passwd and group files. Also you will almost certainly have to renumber accounts where the UID/GID is between 500 and 1000. That means running chown(1) on the files owned by those accounts. A find command like the following is often useful: find /home -user ${olduid} -print0 | xargs -0 chown -h ${newuid} ii) Password hashes. On Redhat there are two parallel files /etc/passwd and /etc/shadow. It's /etc/shadow which contains the password hashes. On FreeBSD the /etc/passwd file is generated from /etc/master.passwd by stripping out certain of the columns and replacing the password hashes from column 2 with asterisks. The master.passwd(5) man page has all the details. You can just cut and paste the password hashes from column 2 of /etc/shadow into column 2 of /etc/master.passwd. See crypt(3) for more information. If your Redhat system is fairly old and still uses the traditional style DES password hashes you can copy them just the same and they will still work in FreeBSD, but you should force your users to update their passwords when they next log in. DES password hashes are almost trivially crackable nowadays. You can force a password update for an account by setting the 7th column of /etc/master.passwd to the current Unix time (ie. the output of 'date +%s') The other columns of /etc/shadow are all about when passwords were last changed and when they will expire. Those columns have equivalents in FreeBSD's master.passwd but the data formats are different and you can't just copy from one to the other. However, unless you specifically use password ageing you can probably just ignore those fields. Note that a password hash of '!!' is special on Redhat. It means 'account is locked and cannot be logged into' (including by means that do not involve passwords at all, like SSH key based authentication.) The equivalent under FreeBSD is *LOCKED*. It's also quite common for Linux to use /bin/false to mean 'no interactive shell' -- which also works under FreeBSD, but there it is more usual to use /usr/sbin/nologin iii) Shells -- these are almost always found in /bin under Redhat, whereas under FreeBSD some (sh, csh, tcsh) are in /bin but bash, zsh etc. or any other shell installed from ports, will be found in /usr/local/bin. Remember that on FreeBSD you never edit /etc/passwd directly. Instead, edit /etc/master.passwd and then run pwd_mkdb to generate /etc/passwd from /etc/master.passwd and rebuild the pwd.db hashed lookup files. Using vipw(8) will automate that for you, and lock the password file correctly against several people all trying to update it at once, which would usually result in a corrupted password file. You can also use 'mergemaster -p' to ensure you have all the necessary system level accounts in place: something that is rather important as the system won't boot up entirely successfully without. See also pw(8) and adduser(8) for a couple of programmatic interfaces for dealing with user accounts and groups. Cheers, Matthew - -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGj9eD8Mjk52CukIwRCKUqAJ0Y7Yef9rwfBe7v75BHnFmnpxndzQCfSYsu v+r3w1SRF8bKemeuoMTyoAA= =SAcJ -----END PGP SIGNATURE----- From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 18:19:16 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A305B16A41F for ; Sat, 7 Jul 2007 18:19:16 +0000 (UTC) (envelope-from fbsd-ml@scrapper.ca) Received: from pd2mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 7C84713C46A for ; Sat, 7 Jul 2007 18:19:16 +0000 (UTC) (envelope-from fbsd-ml@scrapper.ca) Received: from pd2mr3so.prod.shaw.ca (pd2mr3so-qfe3.prod.shaw.ca [10.0.141.108]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKT00E7IMW03LC0@l-daemon> for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 12:19:12 -0600 (MDT) Received: from pn2ml2so.prod.shaw.ca ([10.0.121.146]) by pd2mr3so.prod.shaw.ca (Sun Java System Messaging Server 6.2-7.05 (built Sep 5 2006)) with ESMTP id <0JKT0037XMVY1D90@pd2mr3so.prod.shaw.ca> for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 12:19:10 -0600 (MDT) Received: from proven.lan ([24.85.241.34]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0JKT000AUMVXRCP2@l-daemon> for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 12:19:10 -0600 (MDT) Received: from proven.lan (localhost [127.0.0.1]) by proven.lan (8.14.1/8.14.1) with ESMTP id l67IJ99M061813; Sat, 07 Jul 2007 11:19:09 -0700 (PDT envelope-from fbsd-ml@scrapper.ca) Received: from localhost (localhost [[UNIX: localhost]]) by proven.lan (8.14.1/8.14.1/Submit) id l67IJ8Xc061812; Sat, 07 Jul 2007 11:19:08 -0700 (PDT envelope-from fbsd-ml@scrapper.ca) Date: Sat, 07 Jul 2007 11:19:07 -0700 From: Norbert Papke In-reply-to: <200707051000.l65A0Wiq015761@banyan.cs.ait.ac.th> To: freebsd-questions@freebsd.org Message-id: <200707071119.08024.fbsd-ml@scrapper.ca> Organization: Archaeological Filing MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7bit Content-disposition: inline References: <200707051000.l65A0Wiq015761@banyan.cs.ait.ac.th> X-Authentication-warning: proven.lan: npapke set sender to fbsd-ml@scrapper.ca using -f User-Agent: KMail/1.9.6 Cc: Olivier Nicole Subject: Re: Lost SSH X1 Forwarding with Xorg 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: Sat, 07 Jul 2007 18:19:16 -0000 On July 5, 2007, Olivier Nicole wrote: > A nice *feature* that I just noticed, I apologize if it has been > mentionned earlier. > > xorg 7.2 tends to install all the components in /usr/loca insteal of > the traditional /usr/X11R6. > > But sshd is still expecting xauth to be in /usr/X11R6/bin/xauth; so > sshd_config has to be modified to reflect the fact that xauth new path > is /usr/local/bin/xauth. > > So the default /etc/ssh/sshd_config should be adapted to reflect this > change... The default location in /usr/X11R6/bin/xauth should still work with the symlink in place. However, I had a similar problem to yours. Having tracked 7.2 for some time, I had "X11BASE=${LOCALBASE}" in /etc/make.conf. When building sshd, LOCALBASE is not defined and X11BASE ends up being the empty string. This then caused XAUTH_PATH to be set to /bin/xauth which, of course, does not exist. Removing the statement from /etc/make.conf fixed this -- it isn't required anymore. Cheers. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 18:41:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F27516A421 for ; Sat, 7 Jul 2007 18:41:10 +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 4AFF613C483 for ; Sat, 7 Jul 2007 18:41:10 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I7FDQ-0004JL-6w for freebsd-questions@freebsd.org; Sat, 07 Jul 2007 20:41:08 +0200 Received: from nat-88-212-20-61.antik.sk ([88.212.20.61]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Jul 2007 20:41:08 +0200 Received: from gamato by nat-88-212-20-61.antik.sk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Jul 2007 20:41:08 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: martinko Date: Sat, 07 Jul 2007 20:40:58 +0200 Lines: 13 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: nat-88-212-20-61.antik.sk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.4) Gecko/20070531 SeaMonkey/1.1.2 Sender: news Subject: cannot log in via console, cannot su(1), only as root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 18:41:10 -0000 hello list, i was updating sw configuration of my old computer and towards the end i noticed i couldn't log in on local console other than root. i tried remote ssh using public keys which worked but i found out su(1) to any user except root does not work either. i've no idea how i could possibly manage to "break" my system like this and unfortunately i need to fix it by tomorrow. therefore i would really appreciate your prompt hints as what to check etc. many thanks in advance !! martin From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 20:08:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0AA916A46D for ; Sat, 7 Jul 2007 20:08:36 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from rosebud.otenet.gr (rosebud.otenet.gr [195.170.0.94]) by mx1.freebsd.org (Postfix) with ESMTP id F191813C465 for ; Sat, 7 Jul 2007 20:08:35 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atlantis.dyndns.org (athedsl-309677.home.otenet.gr [85.72.65.75]) by rosebud.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id l67K8XxD018789 for ; Sat, 7 Jul 2007 23:08:33 +0300 Message-ID: <468FF2C0.80103@otenet.gr> Date: Sat, 07 Jul 2007 23:08:32 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.4 (X11/20070615) MIME-Version: 1.0 To: "freebsd-questions@freebsd.org" Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: 7bit Subject: gnome logout 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, 07 Jul 2007 20:08:36 -0000 I am really confused about this one, and don't know where to start. I have gnome 2.18.3 compiled from ports (also gnome power tools and gnome fifth toe) Today, for the first time I used the lock screen option in the System menu to leave my desktop unattended for a few minutes. I then entered my password, and it would not accept it! This was not a problem with caps lock or alternate keyboard layout (tried it several times). I had to kill the X server with CTRL+ALT+BACKSPACE Restarting with startx from the command line as usual, now I have a problem with the logout option. Simply selecting logout from the menu shows the usual dialog (switch user, cancel, logout) but pressing the logout button, it remains recessed and nothing happens. If I wait long enough (maybe about a minute) it finally logs me off. The console messages just after the timeout occurs: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct. Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen! What could possibly happen? I tried on another user account, same problem. Any ideas? From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 20:18:10 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90C1716A41F for ; Sat, 7 Jul 2007 20:18:10 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from betty.computinginnovations.com (mail.computinginnovations.com [64.81.227.250]) by mx1.freebsd.org (Postfix) with ESMTP id 34D0313C44B for ; Sat, 7 Jul 2007 20:18:08 +0000 (UTC) (envelope-from derek@computinginnovations.com) Received: from p28.computinginnovations.com (dhcp-10-20-30-100.computinginnovations.com [10.20.30.100]) (authenticated bits=0) by betty.computinginnovations.com (8.13.8/8.12.11) with ESMTP id l67KBlbt095929; Sat, 7 Jul 2007 15:11:47 -0500 (CDT) Message-Id: <6.0.0.22.2.20070707150546.02535328@mail.computinginnovations.com> X-Sender: derek@mail.computinginnovations.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Sat, 07 Jul 2007 15:10:45 -0500 To: "Lisa Casey" , From: Derek Ragona In-Reply-To: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> References: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> Mime-Version: 1.0 X-ComputingInnovations-MailScanner-Information: Please contact the ISP for more information X-ComputingInnovations-MailScanner: Found to be clean X-ComputingInnovations-MailScanner-From: derek@computinginnovations.com X-Spam-Status: No Content-Type: text/plain; charset="us-ascii"; format=flowed X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Adding a new 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: Sat, 07 Jul 2007 20:18:10 -0000 At 11:35 AM 7/7/2007, Lisa Casey wrote: >Hi, > >Once I get this new system going I promise I'll quit pestering you folks :-) > >Got another question. This should be simple to answer. I've done this >before but can't seem to replicate it this morning. I have a few scripts >my employees use to do things such as add a new radius user, restart the >radius server and tail the radius log file. The most simple one is >radlog. The file radlog contains the line: >tail -f /var/log/radius.log > >I need to be able to type radlog from anywhere on the system and have it work. > >I put the file radlog in /bin (/bin and /sbin are all in my shell's >path). Ownership is root/wheel permissions are 555 (I've tried 700 and >777 - these don't need write access though). But when I type radlog I get >command not found. I can type ./bin/radlog and it works but I don't want >that. I thought if the file was in my path and if it was executable just >typing the name of the file from anywhere would work but evidently I'm >overlooking something. What? > >Thanks, > >Lisa Casey Try testing with a new login session. It is likely your shell is caching the commands in your paths. You can easily test after logging in and try the which command: which radlog On the permissions, you would do well to setup a special group to execute the commands making it easier for users to execute them without being root. If your new utilities are working with log files be sure the log files are readable by this group as well. As previously mentioned added user commands are customarily placed in /usr/local/bin doing so will aid any new sysadmin looking for them. -Derek -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. MailScanner thanks transtec Computers for their support. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 20:51:35 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AAA0116A468 for ; Sat, 7 Jul 2007 20:51:35 +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 8357513C44C for ; Sat, 7 Jul 2007 20:51:35 +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 0B50175C5; Sat, 7 Jul 2007 16:51:35 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute1.internal (MEProxy); Sat, 07 Jul 2007 16:51:35 -0400 X-Sasl-enc: OLU+hOFHHK22gUYnLPxYn08GT82883RL1d1LODiWoPNS 1183841494 Received: from [10.1.10.136] (n114.ewd.goldmark.org [72.64.118.114]) by mail.messagingengine.com (Postfix) with ESMTP id A69484348; Sat, 7 Jul 2007 16:51:34 -0400 (EDT) In-Reply-To: <20070706203359.411e7416@gumby.homeunix.com.> References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> <20070706203359.411e7416@gumby.homeunix.com.> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <5F454B70-73EE-442F-BA4A-5833920953CF@goldmark.org> Content-Transfer-Encoding: 7bit From: Jeffrey Goldberg Date: Sat, 7 Jul 2007 15:51:33 -0500 To: RW X-Mailer: Apple Mail (2.752.2) Cc: "freebsd-questions@freebsd.org List" Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 20:51:35 -0000 On Jul 6, 2007, at 2:33 PM, RW wrote: > If this box is not the gateway, there is no point in doing anything > about this because they can simply turn-off proxying and go direct to > the internet. However, on your gateway you can specify that only the proxy box is allowed to connect to the web. That is block all outbound traffic to ports 80 and 443 unless they come from the machine running squid. -j -- Jeffrey Goldberg http://www.goldmark.org/jeff/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 21:00:19 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F15316A421 for ; Sat, 7 Jul 2007 21:00:19 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from eskimo.tundraware.com (eskimo.tundraware.com [66.92.130.161]) by mx1.freebsd.org (Postfix) with ESMTP id DDFF313C45D for ; Sat, 7 Jul 2007 21:00:18 +0000 (UTC) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (ozzie.tundraware.com [66.92.130.199]) (authenticated bits=0) by eskimo.tundraware.com (8.14.1/8.14.1) with ESMTP id l67L0A7s005247 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 7 Jul 2007 16:00:10 -0500 (CDT) (envelope-from tundra@tundraware.com) Message-ID: <468FFED6.6030301@tundraware.com> Date: Sat, 07 Jul 2007 16:00:06 -0500 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: tundra@tundraware.com References: <468F4635.4020204@tundraware.com> <8efc42630707070650g55179cbk3ffc554b14d6d33d@mail.gmail.com> <468FC728.8040903@tundraware.com> In-Reply-To: <468FC728.8040903@tundraware.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-tundraware.com-MailScanner-Information: Please contact the ISP for more information X-tundraware.com-MailScanner: Found to be clean X-tundraware.com-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-4.399, required 1, autolearn=not spam, ALL_TRUSTED -1.80, BAYES_00 -2.60) X-tundraware.com-MailScanner-From: tundra@tundraware.com X-Spam-Status: No Cc: Simon Chang , freebsd-questions@freebsd.org Subject: Re: An ssh Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tundra@tundraware.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 21:00:19 -0000 Tim Daneliuk wrote: > Simon Chang wrote: >>> Nevermind - it was total pilot error on my part involving being up way too late and not using my noggin' ... sorry to disturb... carry on ;) -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 21:08:13 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6A4016A41F for ; Sat, 7 Jul 2007 21:08:13 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: from pearl.ibctech.ca (pearl.ibctech.ca [208.70.104.210]) by mx1.freebsd.org (Postfix) with ESMTP id 77ACD13C4AD for ; Sat, 7 Jul 2007 21:08:13 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: (qmail 12903 invoked by uid 1002); 7 Jul 2007 21:08:13 -0000 Received: from iaccounts@ibctech.ca by pearl.ibctech.ca by uid 89 with qmail-scanner-1.22 (spamassassin: 2.64. Clear:RC:1(208.70.107.100):. Processed in 6.354494 secs); 07 Jul 2007 21:08:13 -0000 Received: from unknown (HELO ?192.168.1.210?) (steve@ibctech.ca@208.70.107.100) by pearl.ibctech.ca with (DHE-RSA-AES256-SHA encrypted) SMTP; 7 Jul 2007 21:08:06 -0000 Message-ID: <469000D0.2010207@ibctech.ca> Date: Sat, 07 Jul 2007 17:08:32 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Jeffrey Goldberg References: <28511e606938ca3af6624a90fa5798e9@szalbot.homedns.org> <20070706203359.411e7416@gumby.homeunix.com.> <5F454B70-73EE-442F-BA4A-5833920953CF@goldmark.org> In-Reply-To: <5F454B70-73EE-442F-BA4A-5833920953CF@goldmark.org> X-Enigmail-Version: 0.95.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: RW , "freebsd-questions@freebsd.org List" Subject: Re: parental control with squid and dansguardian X-BeenThere: freebsd-questions@freebsd.org X-Mailman-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, 07 Jul 2007 21:08:13 -0000 Jeffrey Goldberg wrote: > On Jul 6, 2007, at 2:33 PM, RW wrote: >> If this box is not the gateway, there is no point in doing anything >> about this because they can simply turn-off proxying and go direct to >> the internet. > > However, on your gateway you can specify that only the proxy box is > allowed to connect to the web. That is block all outbound traffic to > ports 80 and 443 unless they come from the machine running squid. This is of course granted that the gateway has a strict firewall rule set that allows minimal, known destination ports and by default would block external, free proxies (and anything else) that run on unusual ports (eg: 50001) as someone else suggested. Steve From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 21:20:56 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D82AC16A41F for ; Sat, 7 Jul 2007 21:20:56 +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 ABE6B13C469 for ; Sat, 7 Jul 2007 21:20:56 +0000 (UTC) (envelope-from jeffrey@goldmark.org) Received: from compute2.internal (compute2.internal [10.202.2.42]) by out1.messagingengine.com (Postfix) with ESMTP id 60091764D; Sat, 7 Jul 2007 17:20:54 -0400 (EDT) Received: from heartbeat2.messagingengine.com ([10.202.2.161]) by compute2.internal (MEProxy); Sat, 07 Jul 2007 17:20:55 -0400 X-Sasl-enc: 2s8KOouSe0Q6TsvpotViaKkUSOUalWuD3JxI7BX7aDcQ 1183843254 Received: from [10.1.10.136] (n114.ewd.goldmark.org [72.64.118.114]) by mail.messagingengine.com (Postfix) with ESMTP id 5D14692FC; Sat, 7 Jul 2007 17:20:54 -0400 (EDT) In-Reply-To: <468FC261.3070902@boosten.org> References: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> <468FC261.3070902@boosten.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <58D9945E-1560-45A7-A946-D907C3809562@goldmark.org> Content-Transfer-Encoding: 7bit From: Jeffrey Goldberg Date: Sat, 7 Jul 2007 16:20:53 -0500 To: Peter Boosten X-Mailer: Apple Mail (2.752.2) Cc: FreeBSD Questions Subject: Re: Adding a new 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: Sat, 07 Jul 2007 21:20:56 -0000 On Jul 7, 2007, at 11:42 AM, Peter Boosten wrote: > It's more obvious to put local scripts in /usr/local/bin, IMHO. Let me add to this (as someone who recently moved from linux to FreeBSD). Unlike Linux, FreeBSD isn't just a kernel, but a complete operating system. So the things in /bin and /usr/bin are as fully part of FreeBSD as the kernel itself, while on Linux distributions, those things are bundled with Linux as part of a distribution. So this is one reason why it is best to put tools like you describe in /usr/local/sbin Cheers, -j -- Jeffrey Goldberg http://www.goldmark.org/jeff/ From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 21:24:23 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 352D416A41F for ; Sat, 7 Jul 2007 21:24:23 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.freebsd.org (Postfix) with ESMTP id 12DDE13C4BC for ; Sat, 7 Jul 2007 21:24:23 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.9] (may be forged)) by mxout5.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.06) with ESMTP id l67LOKrq010949 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 7 Jul 2007 14:24:20 -0700 X-Auth-Received: from [192.168.10.45] (c-24-10-12-194.hsd1.ca.comcast.net [24.10.12.194]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l67LOJud004079 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 7 Jul 2007 14:24:20 -0700 Message-ID: <46900488.3000505@u.washington.edu> Date: Sat, 07 Jul 2007 14:24:24 -0700 From: Garrett Cooper User-Agent: Thunderbird 2.0.0.4 (Windows/20070604) MIME-Version: 1.0 To: Derek Ragona References: <003b01c7c0b4$e01a3a50$d5b9bfcf@lisac> <6.0.0.22.2.20070707150546.02535328@mail.computinginnovations.com> In-Reply-To: <6.0.0.22.2.20070707150546.02535328@mail.computinginnovations.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.2.304607, Antispam-Engine: 2.5.1.298604, Antispam-Data: 2007.7.7.140333 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: freebsd-questions@freebsd.org, Lisa Casey Subject: Re: Adding a new 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: Sat, 07 Jul 2007 21:24:23 -0000 Derek Ragona wrote: > At 11:35 AM 7/7/2007, Lisa Casey wrote: >> Hi, >> >> Once I get this new system going I promise I'll quit pestering you >> folks :-) >> >> Got another question. This should be simple to answer. I've done this >> before but can't seem to replicate it this morning. I have a few >> scripts my employees use to do things such as add a new radius user, >> restart the radius server and tail the radius log file. The most >> simple one is radlog. The file radlog contains the line: >> tail -f /var/log/radius.log >> >> I need to be able to type radlog from anywhere on the system and have >> it work. >> >> I put the file radlog in /bin (/bin and /sbin are all in my >> shell's path). Ownership is root/wheel permissions are 555 (I've >> tried 700 and 777 - these don't need write access though). But when I >> type radlog I get command not found. I can type ./bin/radlog and it >> works but I don't want that. I thought if the file was in my path and >> if it was executable just typing the name of the file from anywhere >> would work but evidently I'm overlooking something. What? >> >> Thanks, >> >> Lisa Casey > > Try testing with a new login session. It is likely your shell is > caching the commands in your paths. Use rehash in tcsh to find newly added commands. export or setenv your new PATH though, and try the new command out first. -Garrett From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 23:24:01 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F2AF16A421 for ; Sat, 7 Jul 2007 23:24:01 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from drone3.qsi.net.nz (drone3-svc-skyt.qsi.net.nz [202.89.128.3]) by mx1.freebsd.org (Postfix) with ESMTP id AEBB013C465 for ; Sat, 7 Jul 2007 23:24:00 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: (qmail 10046 invoked by uid 0); 7 Jul 2007 23:23:58 -0000 Received: from unknown (HELO chen.org.nz) ([202.89.146.5]) (envelope-sender ) by 0 (qmail-ldap-1.03) with SMTP for ; 7 Jul 2007 23:23:58 -0000 Received: by chen.org.nz (Postfix, from userid 1000) id 7D7D07E85D; Sun, 8 Jul 2007 11:23:58 +1200 (NZST) Date: Sun, 8 Jul 2007 11:23:58 +1200 From: Jonathan Chen To: Tim Daneliuk Message-ID: <20070707232358.GE69224@osiris.chen.org.nz> References: <468F4635.4020204@tundraware.com> <20070707090248.GB62156@osiris.chen.org.nz> <468FC670.9060903@tundraware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <468FC670.9060903@tundraware.com> User-Agent: Mutt/1.4.2.3i Cc: freebsd-questions@freebsd.org Subject: Re: An ssh 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: Sat, 07 Jul 2007 23:24:01 -0000 On Sat, Jul 07, 2007 at 11:59:28AM -0500, Tim Daneliuk wrote: > Jonathan Chen wrote: > >On Sat, Jul 07, 2007 at 02:52:21AM -0500, Tim Daneliuk wrote: > >>I have a machine that is my firewall/gateway to a private network NATing > >>non-routable addresses. I can ssh at-will from hosts on the private > >>network to machines out on the net, but when I try to ssh from the > >>firewall machine to a particular address, it just hangs and eventually > >>times out. Verbose output is: > >> > >> OpenSSH_4.5p1 FreeBSD-20061110, OpenSSL 0.9.7e-p1 25 Oct 2004 > >> debug1: Reading configuration data /etc/ssh/ssh_config > >> debug2: ssh_connect: needpriv 0 > >> debug1: Connecting to xxxxxxxxxxxxxx.com [x.x.x.x] port 22. > >> > >> > >>What is really baffling is that if I try the exact same thing from, say, > >>a cygwin session on a host on the private network - this works fine. > >>So ... it's not a firewall problem as near as I can tell. > > > >It sure sounds like a firewall problem to me. Why do you think > >otherwise? > > Because machines *behind* the firewall can get out to the machine > in question, but the firewall machine itself cannot... So, the question is: Is firewall configured so that the firewall host is allowed to outgoing ssh connections to the 'Net or the internal network? What firewall software is being used? -- Jonathan Chen ---------------------------------------------------------------------- Power corrupts, Absolute Power is pretty neat From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 23:35:58 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D690616A41F for ; Sat, 7 Jul 2007 23:35: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 91AB813C455 for ; Sat, 7 Jul 2007 23:35:58 +0000 (UTC) (envelope-from freebsd-questions@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I7Job-0007YY-D7 for freebsd-questions@freebsd.org; Sun, 08 Jul 2007 01:35:49 +0200 Received: from nat-88-212-20-61.antik.sk ([88.212.20.61]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 08 Jul 2007 01:35:49 +0200 Received: from gamato by nat-88-212-20-61.antik.sk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 08 Jul 2007 01:35:49 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: martinko Date: Sun, 08 Jul 2007 01:35:40 +0200 Lines: 40 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: nat-88-212-20-61.antik.sk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.4) Gecko/20070531 SeaMonkey/1.1.2 In-Reply-To: Sender: news Subject: Re: cannot log in via console, cannot su(1), only as root X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 23:35:58 -0000 martinko wrote: > hello list, > > i was updating sw configuration of my old computer and towards the end i > noticed i couldn't log in on local console other than root. i tried > remote ssh using public keys which worked but i found out su(1) to any > user except root does not work either. i've no idea how i could > possibly manage to "break" my system like this and unfortunately i need > to fix it by tomorrow. therefore i would really appreciate your prompt > hints as what to check etc. > some more details follow ... upgrade from 6.0-R to 6.2-R everything went ok .. i was doing changes in /etc based on my other computer settings i was working via ssh(1), therefore i haven't noticed when logging on console stopped working. what works: log in via ssh(1) using public/private keys log in on local console as root su(1) to root what doesn't work: log in via ssh(1) using password log in on local console as a normal user su(1) to a normal user (it even doesn't ask for password a throws "sorry") besides, as root i'm able to change passwords via passwd(1), but it doesn't help and a normal user cannot change their own password (old password check would fail). i ran vipw(8) and it doesn't seem to me there's something wrong with my files. any hints pls ?? m. From owner-freebsd-questions@FreeBSD.ORG Sat Jul 7 23:54:42 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 661F016A421 for ; Sat, 7 Jul 2007 23:54:42 +0000 (UTC) (envelope-from novembre@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.176]) by mx1.freebsd.org (Postfix) with ESMTP id A2C2813C45D for ; Sat, 7 Jul 2007 23:54:41 +0000 (UTC) (envelope-from novembre@gmail.com) Received: by py-out-1112.google.com with SMTP id a73so1010279pye for ; Sat, 07 Jul 2007 16:54:41 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type; b=LPd7EzkuK2+jsx4FKwNMhwpx3Jd/rlg0/y1+iLNXLqyWirImLrI1CLPoUfFtpnRZMleFFwjwuAfdh10lnTay4Ck6+41t1Tqm7yOPFTx1VM2OgSxjsO+fbxPKz0OS8TSRBL0S4zO+/i4L3OLptSREPtf2GvQMXdm56f6SIIyQ2mY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type; b=uCePNPRQvz/G2ekojNXAZiXHutIoOSdyeoBiin7xp/OPILwQCFrHWXdqJv97yepv9JespHbSBpJE/OfA4x3Q6zWBTTwOzDnQAM5N7VR4syZGtUFeXMraHUAz6WK53yA91mxB71uaCicJObXLQUUstLJY42AIuO6ikifSgMUtsAw= Received: by 10.65.219.20 with SMTP id w20mr2949256qbq.1183851005863; Sat, 07 Jul 2007 16:30:05 -0700 (PDT) Received: by 10.64.209.3 with HTTP; Sat, 7 Jul 2007 16:30:05 -0700 (PDT) Message-ID: <3b47caa90707071630k30681b33kedbb9b844b57f81d@mail.gmail.com> Date: Sat, 7 Jul 2007 18:30:05 -0500 From: Novembre To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: sebosik@demax.sk Subject: RE: NTFS-3G: mount at boot X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2007 23:54:42 -0000 I have the same problem. A little search got me to http://forum.ntfs-3g.org/viewtopic.php?t=292 where a solution is posted. It seems that using /etc/fstab to mount the NTFS partition at boot time is not working since the mount command is being executed before the 'fuse' kernel module is loaded. However, on my 6.2-RELEASE machine, I see the following message when booting: ---------- Starting file system checks: /dev/ad0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS /dev/ad0s2d: FILE SYSTEM CLEAN; SKIPPING CHECKS Mounting local file systems:mount: exec mount_ntfs-3g not found in /sbin:/usr/sbin: No such file or directory . . . Starting fusefs. fude4bsd: version 0.3.0, FUSE ABI 7.8 . . . Mounting late file systems:mount: exec mount_ntfs-3g not found in /sbin:/usr/sbin: No such file or directory ---------- I'm assuming that this "late" mount (the last line above) is being done after loading the 'fuse' kernel module, so the OS should be able to mount the file system now, but it can't! It's looking for mount_ntfs-3g and that file does not exist. My /etc/fstab looks like this: /dev/ad0s1 /mnt/windows ntfs-3g rw 0 0 I also used the /etc/fstab entry suggested in NTFS-3G's own website ( http://www.ntfs-3g.org/ - scroll down to the end of the page), where "defaults" is being used instead of "rw", but that gave me this error: ---------- swapon: adding /dev/ad0s2b as swap device fstab: /etc/fstab:6: Inappropriate file type or format Starting file system checks: /dev/ad0s2a: FILE SYSTEM CLEAN; SKIPPING CHECKS fstab: /etc/fstab:6: Inappropriate file type or format fstab: /etc/fstab:6: Inappropriate file type or format /dev/ad0s2d: FILE SYSTEM CLEAN; SKIPPING CHECKS Mounting local file systems:fstab: /etc/fstab:6: Inappropriate file type or format Mounting NFS file systems:fstab: /etc/fstab:6: Inappropriate file type or format fstab: /etc/fstab:6: Inappropriate file type or format fstab: /etc/fstab:6: Inappropriate file type or format fstab: /etc/fstab:6: Inappropriate file type or format fstab: /etc/fstab:6: Inappropriate file type or format . . . Starting fusefs. fude4bsd: version 0.3.0, FUSE ABI 7.8 . . . Mounting late file systems:fstab: /etc/fstab:6: Inappropriate file type or format ---------- Any ideas as to what's going on here? Thanks a lot