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 sig