Date: Tue, 09 May 2000 11:09:39 +0200 From: Sheldon Hearn <sheldonh@uunet.co.za> To: Erik de Zeeuw <erik@usishealth.com> Cc: freebsd-current@FreeBSD.ORG Subject: Re: MAKEDEV warning with sysinstall ? Message-ID: <76875.957863379@axl.ops.uunet.co.za> In-Reply-To: Your message of "Mon, 08 May 2000 15:41:55 EST." <39172693.3F8BB151@usishealth.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?76875.957863379>