Re: How do I set number of retries in Firefox?

2012-09-13 Thread jb
Dieter BSD dieterbsd at engineer.com writes: [ no response on mozilla@ list, trying questions@ ] I have a problem with various parts of web pages stopping before getting completely downloaded. Links has a useful retries setting (setup-network options-retries) which seems to fix this. I

Another question about missing posix shared mutex

2012-09-13 Thread C. L. Martinez
Hi all, I am having troubles using sphinxsearch 2.0.5 under a freebsd 8.3 hosts ... Daniel Ylitalo asked the same question a few months ago: http://lists.freebsd.org/pipermail/freebsd-questions/2012-June/242875.html and my response to Michael Powell about using from the ports system is

Re: cksum entire dir??

2012-09-13 Thread Jonathan McKeown
On Wednesday 12 September 2012 22:29:45 Gary Kline wrote: how, with mtree, could I tell whether dir1 == dir2 or not? From the manpage: ``The mtree utility compares the file hierarchy rooted in the current directory against a specification read from the standard input. Messages are

Re: cksum entire dir??

2012-09-13 Thread markham breitbach
Perhaps this would be a question best asked in a Linux Forum or on a Fedora list in that case. This is, after all, the FreeBSD Questions mailing list. On 12-09-12 9:12 PM, Gary Kline wrote: On Wed, Sep 12, 2012 at 08:17:16PM -0500, Robert Bonomi wrote: Date: Wed, 12 Sep 2012 14:47:04 -0700

NFS Install

2012-09-13 Thread Gardner Bell
What I'm wanting to do is build/installworld from my workstation to a remote machine but both have different /etc/src.conf and kernel configuration files. Is there a way to define seperate files so I can perform this upgrade without any errors? ___

FreeBSD 9.1-PRERELEASE 10Gb Intel card

2012-09-13 Thread Outback Dingo
Seems slight issue with an intel X540T2 card at 10Gb, we have a Fujitsu X0440 10/40Gb switch, however the card only seems to negotiate 1Gb ifconfig -m ix0 ix0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu 1500

Re: cksum entire dir??

2012-09-13 Thread Gary Kline
On Thu, Sep 13, 2012 at 10:23:47AM +0200, Jonathan McKeown wrote: On Wednesday 12 September 2012 22:29:45 Gary Kline wrote: how, with mtree, could I tell whether dir1 == dir2 or not? From the manpage: ``The mtree utility compares the file hierarchy rooted in the current directory

Re: cksum entire dir??

2012-09-13 Thread Karl Vogel
Here's a simple, system-independent way to find duplicate files. All you need is something to generate a digest you trust (MD5, SHA1, whatever) plus normal Unix stuff: awk, expand, grep, join, sort, and uniq. Generate the signatures: me% cd ~/bin me% find . -type f -print0 | xargs -0 md5 -r

Re: NFS Install

2012-09-13 Thread Polytropon
On Thu, 13 Sep 2012 11:29:47 -0400, Gardner Bell wrote: What I'm wanting to do is build/installworld from my workstation to a remote machine but both have different /etc/src.conf and kernel configuration files. Is there a way to define seperate files so I can perform this upgrade without any

Re: NFS Install

2012-09-13 Thread Julian H. Stacey
Hi Gardner Polytropon wrote: On Thu, 13 Sep 2012 11:29:47 -0400, Gardner Bell wrote: What I'm wanting to do is build/installworld from my workstation to a remote machine but both have different /etc/src.conf and kernel configuration files. Is there a way to define seperate files so I can

Re: cksum entire dir??

2012-09-13 Thread Polytropon
On Wed, 12 Sep 2012 10:46:25 -0700, Gary Kline wrote: On Wed, Sep 12, 2012 at 07:31:45AM +0100, Matthew Seaman wrote: On 12/09/2012 00:14, Polytropon wrote: % cksum directory and could obtain a checksum - so it _seems_ to work. After alteration of one file within the hierarchy a

Re: Swapped memory limited to about 500MB for a process ?

2012-09-13 Thread Sriram Gorti
On Wed, Sep 12, 2012 at 7:33 PM, Mickaël Canévet cane...@embl.fr wrote: On Wed, 2012-09-12 at 10:03 -0400, Lowell Gilbert wrote: Mickaël Canévet cane...@embl.fr writes: On Tue, 2012-09-11 at 13:05 -0400, Lowell Gilbert wrote: Mickaël Canévet cane...@embl.fr writes: I was impacted by a

Re: cksum entire dir??

2012-09-13 Thread Waitman Gobble
On Thu, Sep 13, 2012 at 8:35 PM, kpn...@pobox.com wrote: On Thu, Sep 13, 2012 at 03:18:43PM -0400, Karl Vogel wrote: Here's a simple, system-independent way to find duplicate files. All you need is something to generate a digest you trust (MD5, SHA1, whatever) plus normal Unix stuff: