From owner-freebsd-questions@FreeBSD.ORG Fri Jun 30 15:03:24 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3087816A547 for ; Fri, 30 Jun 2006 15:03:23 +0000 (UTC) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out4.blueyonder.co.uk (smtp-out4.blueyonder.co.uk [195.188.213.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF62F44096 for ; Fri, 30 Jun 2006 14:35:13 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [172.23.170.137] (helo=anti-virus01-08) by smtp-out4.blueyonder.co.uk with smtp (Exim 4.52) id 1FwK5P-0007xW-PM; Fri, 30 Jun 2006 15:35:11 +0100 Received: from [82.41.34.175] (helo=[192.168.0.2]) by asmtp-out4.blueyonder.co.uk with esmtp (Exim 4.52) id 1FwK5M-0007O9-5e; Fri, 30 Jun 2006 15:35:08 +0100 Message-ID: <44A5369B.6040208@dial.pipex.com> Date: Fri, 30 Jun 2006 15:35:07 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20060515 X-Accept-Language: en MIME-Version: 1.0 To: Brian McKeon References: <20060630133324.68286.qmail@web81604.mail.mud.yahoo.com> In-Reply-To: <20060630133324.68286.qmail@web81604.mail.mud.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: problems with Nice and Dump in FreeBSD 6.1-Current (Stable-#5) 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: Fri, 30 Jun 2006 15:03:24 -0000 Brian McKeon wrote: >I've been having some issues using nice... > >I usually setup a system building script to automate >things when I go out or to sleep. something along >these lines... > >echo "cd /usr/sys; make clean && make buildworld && >make buildkernel" > /root/makeme; chmod u+x >/root/makeme > >then I would under rel_5 just type >nice -n -20 /root/makeme > > >under Rel_6 this gives a "incorrectly formed number >error" more or less according the the man pages this >should be valid as they basically give this as an >example. > > nice is a csh builtin which uses a different (historic) format (cartman)38# nice -n -20 /bin/ls nice: Badly formed number. (cartman)39# which nice nice: shell built-in command. (cartman)40# whereis nice nice: /usr/bin/nice /usr/share/man/man1/nice.1.gz /usr/src/usr.bin/nice (cartman)41# /usr/bin/nice -n -20 /bin/ls list of files {cartman}42# nice -20 /bin/ls list of files Did you change shells between releases? Maybe bash uses the new format. >Then with Dump... > >It seems to hit the fan with large filesystems, and >this seems new to rel_6 at least in my experience. I >can dump my root and var systems correctly but my usr >file system never works, gives errors during restore, >but comeplete the dump. I've been tarring things up >lateley, probably will keep dumping to just the root >system and tar var once I have websites on it. > > Show us the error message! And the dump command while you are at it. --Alex