From owner-freebsd-current Tue May 9 2:10: 0 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id 0231537B522 for ; Tue, 9 May 2000 02:09:56 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12p61L-000Jzw-00; Tue, 09 May 2000 11:09:39 +0200 From: Sheldon Hearn To: Erik de Zeeuw Cc: freebsd-current@FreeBSD.ORG Subject: Re: MAKEDEV warning with sysinstall ? In-reply-to: Your message of "Mon, 08 May 2000 15:41:55 EST." <39172693.3F8BB151@usishealth.com> Date: Tue, 09 May 2000 11:09:39 +0200 Message-ID: <76875.957863379@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 08 May 2000 15:41:55 EST, Erik de Zeeuw wrote: > I ran MAKEDEV all, but the message still appear. The messages I found > about this on the archives says to do a 'ls -l /dev | grep ^b', and > to remake all devices listed, but there's no device listed when I'm > doing the 'ls -l /dev | grep ^b'. I'm not sure what that'll score you. Try this: cd /dev for i in `ls`; do if test -b $i; then echo $i; fi; done Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message