From owner-freebsd-questions@FreeBSD.ORG Mon Jan 19 14:51:34 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EFC6A1065670 for ; Mon, 19 Jan 2009 14:51:34 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: from ibctech.ca (v6.ibctech.ca [IPv6:2607:f118::b6]) by mx1.freebsd.org (Postfix) with SMTP id 8A2058FC1F for ; Mon, 19 Jan 2009 14:51:34 +0000 (UTC) (envelope-from steve@ibctech.ca) Received: (qmail 44136 invoked by uid 89); 19 Jan 2009 15:05:21 -0000 Received: from unknown (HELO ?IPv6:2607:f118::5?) (steve@ibctech.ca@2607:f118::5) by 2607:f118::b6 with ESMTPA; 19 Jan 2009 15:05:21 -0000 Message-ID: <49749373.5040500@ibctech.ca> Date: Mon, 19 Jan 2009 09:51:31 -0500 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Pieter Donche References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "mail.list freebsd-questions" Subject: Re: / mounted read-only after error in /etc/rc.conf 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: Mon, 19 Jan 2009 14:51:35 -0000 Pieter Donche wrote: > I made a typing error when chanign /etc/rc.conf > (linux_enable=YES") > when rebooting the system, the boot stops > /etc/rc.conf: 22: Syntax error: Unterminated quote string > Enter full pathname of shell or RETURN for /bin/sh: > # > this leaves me with > /dev/ds0s1a on / (ufs, local, read-only) > > since / is read-only I can not edit /etc/rc.conf to correct the error. > > How to solve this? Try: # mount -u / Which will try to re-mount the / partition as read/write. Steve