From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms-smtp-02-smtplb.ohiordc.rr.com ([65.24.5.136] helo=ms-smtp-02-eri0.ohiordc.rr.com) by speech.braille.uwo.ca with esmtp (Exim 3.36 #1 (Debian)) id 1AIuYY-0006Z2-00 for ; Sun, 09 Nov 2003 13:45:02 -0500 Received: from cpe-024-033-003-115.midsouth.rr.com (cpe-024-033-003-115.midsouth.rr.com [24.33.3.115]) by ms-smtp-02-eri0.ohiordc.rr.com (8.12.10/8.12.7) with ESMTP id hA9Iixxu028749 for ; Sun, 9 Nov 2003 13:44:59 -0500 (EST) Date: Sun, 9 Nov 2003 12:44:59 -0600 (CST) From: Adam Myrow To: "Speakup is a screen review system for Linux." In-Reply-To: <20031109171732.GA955@lnx3.holmesgrown.com> Message-ID: References: <20031109063527.GA1859@optusnet.com.au> <20031109070130.ZWEA4841.mta4.adelphia.net@beavis> <20031109074520.GA2071@optusnet.com.au> <20031109153434.GA514@romuald.net.eu.org> <20031109154929.GB5048@tomass.dyndns.org> <20031109171732.GA955@lnx3.holmesgrown.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: Re: returning ext3 to ext2 X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.1.3 Precedence: list Reply-To: "Speakup is a screen review system for Linux." List-Id: Speakup is a screen review system for Linux. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Nov 2003 18:45:03 -0000 I just looked at the manpage for tune2fs, and I think the proper way to convert EXT3 back to EXT2 is like so. Type tune2fs -O ^has_journal /dev/hda2. Substitute the right partition for /dev/hda2. I just tried this and there was a long burst of disk activity on the partition, so I assume it deletes the journal when clearing this feature. So, this seems to be the way to do it. I'd also edit /etc/fstab to show the filesystem type as ext2, and you may want to unmount the filesystem if possible before running tune2fs as a safety precaution. You can find out a lot about a filesystem with dumpe2fs /dev/hda2. Again, put in the appropriate partition. You should also pipe the output through a pager like less, as it's quite long. You can find out pretty much all the settings of a filesystem from this command.