From owner-freebsd-stable@FreeBSD.ORG Sun Jun 15 04:09:18 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EEED37B401 for ; Sun, 15 Jun 2003 04:09:18 -0700 (PDT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id E27B143F3F for ; Sun, 15 Jun 2003 04:09:16 -0700 (PDT) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 15 Jun 2003 12:09:15 +0100 (BST) To: Marek Denis MMDF-Warning: Unable to confirm address in 'To' line at salmon.maths.tcd.ie In-Reply-To: Your message of "Sun, 15 Jun 2003 12:23:53 -0000." <20030615122353.GA193@messiah.marek.org> Date: Sun, 15 Jun 2003 12:09:14 +0100 From: Ian Dowse Message-ID: <200306151209.aa20964@salmon.maths.tcd.ie> cc: freebsd-stable@freebsd.org Subject: Re: cdrom after installing kernel X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 11:09:18 -0000 In message <20030615122353.GA193@messiah.marek.org>, Marek Denis writes: > >I have solved my problem. in my /etc/fstab file there was a line >/dev/acd0c /cdrom cd9660 ro,noauto 0 0 > >/dev/acd0c worked only with GENERIC, but when I tried > >marek# mount -t cd9660 /dev/acd0a /cdrom (acd0a also listed in /dev) > everything worked great. So, the next step is only to modify /etc/fstab >and everything works all right. If this fixed it, it means that you forgot to run cd /dev; sh MAKEDEV all when updating, or you missed the mergemaster step that does this. At some stage before 4.6-RELEASE, the minor number for the acd0c device changed, so attempting to use the old device node would give the "Device not configured" error. The minor number for acd0a did not change however, so its old device node continues to work (in fact, acd0c now has the same minor number as acd0a). Ian