On Tue, 2012-09-11 at 13:05 -0400, Lowell Gilbert wrote:
> Mickaël Canévet writes:
>
> > I was impacted by a memory leak that has been fixed by this patch:
> > http://people.freebsd.org/~rmacklem/namei-leak.patch
> >
> > What I noticed when the server was paging is that it seems that only
> > abo
On 12/09/2012 00:14, Polytropon wrote:
> % cksum
>
> and could obtain a checksum - so it _seems_ to work.
> After alteration of one file within the hierarchy a
> different result was printed.
That will give you a checksum on the directory inode -- file names and
associated metadata only, n
On Tue, Sep 11, 2012 at 09:55:33PM -0500, Robert Bonomi wrote:
>
> > Date: Tue, 11 Sep 2012 17:24:08 -0700
> > From: Gary Kline
> > Subject: Re: cksum entire dir??
> >
> > On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > > On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> > >
On Tue, Sep 11, 2012 at 09:18:13PM -0400, kpn...@pobox.com wrote:
> On Tue, Sep 11, 2012 at 05:24:08PM -0700, Gary Kline wrote:
> > On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > > But I also tried cksum directly with a directory
> > > like
> > >
> > > % cksum
> > >
> > > and
Hi,
If anyone has used a Dazzle DVC100 with Freebsd, or knows how to
capture video with this on Freebsd, I'd appreciate some advice.
Thanks!
Scott
--
s...@ssr.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinf
> Date: Tue, 11 Sep 2012 17:24:08 -0700
> From: Gary Kline
> Subject: Re: cksum entire dir??
>
> On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> > >
> > > I'm trying to checksum directories as I move them around.
> > > ive r
Paul Kraus writes:
> On Tue, Sep 11, 2012 at 9:18 PM, wrote:
>
>> It's a real shame Unix doesn't have a really good tool for comparing
>> two directory trees. You can use 'diff -r' (even on binaries), but that
>> fails if you have devices, named pipes, or named sockets in the
>> filesystem. And
As long as you are not moving files across mount points, you could always do
something
like this:
cd $SOURCE_DIR && find . -print | cpio -dplm $DEST_DIR
rm -rf $SOURCE_DIR
That will create hard links from one directory to the other so you don't have
to worry
about any file corruption si
On Tue, Sep 11, 2012 at 10:03 PM, Gary Kline wrote:
> I'm not concerned about a file having been changed, just whether
>
>% cp -rp /home/klinebak/foodir /home/kline/
>
> is 100% reliable. down to the bit!
If "cp" is not reliable (down to the bit), then you have muc
On Tue, Sep 11, 2012 at 9:18 PM, wrote:
> It's a real shame Unix doesn't have a really good tool for comparing
> two directory trees. You can use 'diff -r' (even on binaries), but that
> fails if you have devices, named pipes, or named sockets in the
> filesystem. And diff or cksum don't tell yo
On Wed, Sep 12, 2012 at 02:48:54AM +0200, Polytropon wrote:
> On Tue, 11 Sep 2012 17:24:08 -0700, Gary Kline wrote:
> > On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > > On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> > > >
> > > > I'm trying to checksum directories as I mo
On Tue, Sep 11, 2012 at 05:24:08PM -0700, Gary Kline wrote:
> On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> > >
> > > I'm trying to checksum directories as I move them around.
> > > ive read the man page for sum and cksum ..
On 9/11/2012 7:48 PM, Polytropon wrote:
>
> I think I tried something like your second example last night.
> I think I did
>
> % cksum foodir/*
> That lets the shell expand * to the content of foodir, making
> a final command line like "cksum foodir/file1 foodir/file2"
> and so on
On Tue, 11 Sep 2012 17:24:08 -0700, Gary Kline wrote:
> On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> > On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> > >
> > > I'm trying to checksum directories as I move them around.
> > > ive read the man page for sum and cksum ... or m
On Wed, Sep 12, 2012 at 01:14:43AM +0200, Polytropon wrote:
> On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
> >
> > I'm trying to checksum directories as I move them around.
> > ive read the man page for sum and cksum ... or maybe skimmed
> > them. no joy. anybody know of a utility to d
On Tue, 11 Sep 2012 14:38:04 -0700, Gary Kline wrote:
>
> I'm trying to checksum directories as I move them around.
> ive read the man page for sum and cksum ... or maybe skimmed
> them. no joy. anybody know of a utility to do this? I've
> got files that are decades old...
Maybe it's possib
I'm trying to checksum directories as I move them around.
ive read the man page for sum and cksum ... or maybe skimmed
them. no joy. anybody know of a utility to do this? I've
got files that are decades old...
tx, guys.
gary
___
freebsd-questio
I have an SSD driver, rather new, and "camcontrol identify" reports it
supports data set management (TRIM).
I set up the disk so, that there is one slice. On this slice I put two
BSD labes a and b with geli providers. On these geli providers I did
newfs -t to enable trim.
Does the trim BIO_DELETE
Mickaël Canévet writes:
> I was impacted by a memory leak that has been fixed by this patch:
> http://people.freebsd.org/~rmacklem/namei-leak.patch
>
> What I noticed when the server was paging is that it seems that only
> about 500MB of my 4GB swap partition was used before crashing. I was
> won
[HEADS UP] merging projects/pf into head
Some good news:
http://lists.freebsd.org/pipermail/freebsd-pf/2012-September/006740.html
___
freebsd-questions@freebsd.org mailin
El día Tuesday, September 11, 2012 a las 02:56:07PM +0200, Polytropon escribió:
> On Tue, 11 Sep 2012 11:15:50 +0200, suseuse...@lajt.hu wrote:
> > Hello FreeBSD users:
> >
> > I am new to FreeBSD. I've been using openSUSE for 8 years but would
> > like to try something different.
> > I have inst
On Tue, 11 Sep 2012 11:15:50 +0200, suseuse...@lajt.hu wrote:
> Hello FreeBSD users:
>
> I am new to FreeBSD. I've been using openSUSE for 8 years but would
> like to try something different.
> I have installed FreeBSD 9.0-RELEASE from DVD and configured
> KDE3. I also configured DSL (pppoe) conne
On Tue, 11 Sep 2012 04:15:24 -0400, Thomas Mueller wrote:
> One question comes up that I didn't think of immediately.
>
> How do you use svn on a fresh install of FreeBSD, no ports yet?
>
> svn/subversion is not part of the base system.
>
> How do you get the ports tree or svn in that case if no
Hi,
After upgrading from 7.3 o 8.3 pam_ldap stopped working.
LDAP server has been running on a different machine for ages, it is
still running.
Connection to the server is still there: when I enter a wrong password
I get a distinct error message.
When I enter the correct password, I get:
Se
On 11/09/2012 01:30, Robert Bonomi wrote:
> (This is probably a bit techical for 'questions' -- I'd welcome a suggesstion
> of a more appopriae forum.)
If you dont get any joy, try freebsd-hack...@freebsd.org
Vince
> Is there a detailed description anywhere of the mechanics of *how* config(8)
>
Hello FreeBSD users:
I am new to FreeBSD. I've been using openSUSE for 8 years but would
like to try something different.
I have installed FreeBSD 9.0-RELEASE from DVD and configured
KDE3. I also configured DSL (pppoe) connection that automatically
connects the computer to the network.
In openSUSE
Thomas Mueller wrote:
> On Sun, 9 Sep 2012 10:37:03 + (UTC), Helmut Schneider wrote:
> > Hi,
>
> > I'm running a custom kernel so I (guess I) need svn in future to
> > fetch sources instead of cvsup. Should I still use portsnap then
> > for ports or also fetch them via svn?
>
> Polytropon re
On Tue, Sep 11, 2012 at 10:15 AM, Thomas Mueller
wrote:
> How do you get the ports tree or svn in that case if not using portsnap?
You use pkg_add (or the youngest newcomer pkg)
--
chs,
___
freebsd-questions@freebsd.org mailing list
http://lists.free
Adam Vande More wrote:
>
> On Mon, Sep 10, 2012 at 2:23 PM, Robert Bonomi
> wrote:
>
> >
> > Enviorment is FreeBSD 8.3, i386
> >
> > I'm currently running a stipped-down custom kernal with all superfluous
> > devices/options removed.
> >
> > I'm trying to add the 'ndis' device back in, but whe
On Sun, 9 Sep 2012 10:37:03 + (UTC), Helmut Schneider wrote:
> Hi,
> I'm running a custom kernel so I (guess I) need svn in future to fetch
> sources instead of cvsup. Should I still use portsnap then for ports or
> also fetch them via svn?
Polytropon responded:
> Ports and system sources ar
30 matches
Mail list logo