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