Hi all,
This is addressed in the FAQ to some extent, but that answer seems
incomplete.
Apparently one of the Google Summer of Code projects is to add journaling
to UFS. When it already has softupdates, why? I've seen benchmarks that
seem to indicate that softupdates performs as well or be
Hi all,
If I want to copy a bunch of files over ssh without extra servers, it's
easy enough to use the following command:
[EMAIL PROTECTED] ssh [EMAIL PROTECTED] "cd /directory/to/copy && tar -cvf
- *" | tar -xf - -C .
This works without complaint. However, when I change the options passed
to
Hi all,
I'm curious whether there's an easy way to renice(8) a process and all
of its children in one simple command. For example, I might start a
recursive make, which spawns lots of processes, and want them all to
change priority at once.
The command I want is this:
renice +10 -r process-ID
The usual solution I use would be (starting in the root directory) "du -kx
| sort -n". The x flag prevents crossing partitions when doing the
recursive analysis that du is meant to do, while the k flag makes the
output in kilobytes. I like this command enough that I have a shortcut to
it in my