Mailing List ArchiveSupport open source code!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]Re: Slow ADSL !
- To: tlug@example.com
- Subject: Re: Slow ADSL !
- From: Tobias Diedrich <ranma@example.com>
- Date: Sun, 9 Sep 2001 15:48:21 +0200
- Content-Disposition: inline
- Content-Type: text/plain; charset=us-ascii
- Delivered-To: tlug@example.com
- In-Reply-To: <3B9B5A88.B5DFFF87@example.com>
- List-Help: <mailto:tlug-request@example.comsubject=help>
- List-Post: <mailto:tlug@example.com>
- List-Subscribe: <mailto:tlug-request@example.comsubject=subscribe>
- List-Unsubscribe: <mailto:tlug-request@example.comsubject=unsubscribe>
- Mail-Followup-To: Tobias Diedrich <ranma@example.com>, tlug@example.com
- Old-Return-Path: <ranma@example.com>
- References: <3B96FE12.4020808@example.com> <20010908110026.B8834@example.com> <3B99CEEC.8060209@example.com> <3B9A2D0C.E44C7AD0@example.com> <20010908173125.A8360@example.com> <20010909081114.A17617@example.com> <20010909021719.A22068@example.com> <3B9B1BDB.2D9B4952@example.com> <20010909131350.D22068@example.com> <3B9B5A88.B5DFFF87@example.com>
- Reply-To: tlug@example.com
- Resent-From: tlug@example.com
- Resent-Message-ID: <0YradB.A.4jE.iL3m7@example.com>
- Resent-Sender: tlug-request@example.com
- User-Agent: Mutt/1.3.20i
Asa Liton wrote: > At start up there war some thing like : Press Ctrl-D for blah > blah...../ Run fsck manually etc. I don't know what this means and > couldn't boot Linux. So I had to go for a new installation. Jonathan Q already explained what to do, but I want to add something: As your kernel has ext3 filesystem support you might want to convert your ext2 filesystem to ext3 (don't panic, this is really easy to do ^_^). ext2 has been the linux filesystem for many years, but recently the demand for a journalling filesystem has grown. Journalling filesystems have the advantage of not requiring a filesystemcheck if your machine crashed, which is both convenient for you and important for servers, as a filesystemcheck can take a long time depending on the size of your harddisk. ext3 is really just ext2 with addon journalling, so it is backwards compatible (you can mount an ext3 partition with an ext2-only kernel). To convert your filesystem you have to do this: Login as root. Run "grep ext2 /etc/fstab", this should give you some output like this: melchior:~# grep ext2 /etc/fstab /dev/hda1 / ext2 defaults 1 1 /dev/hdb1 /shared ext2 defaults 1 1 Now for all listed partitions do "tune2fs -j <partition>", i.e. "tune2fs -j /dev/hda1; tune2fs -j /dev/hdb1". This will create a journal on your ext2 partitions. The only thing left to do ist to change ext2 into ext3 in your /etc/fstab. As I guess you won't feel comfortable with vi, do this: sed -e 's/ext2/ext3/g' < /etc/fstab > /tmp/newfstab mv /tmp/newfstab /etc/fstab The sed command will replace all occurences of ext2 with ext3. After the next reboot the kernel should mount your filesystems as ext3 and you probably won't have to do a fsck again ^_- -- Tobias PGP: 0x9AC7E0BC
- Follow-Ups:
- Re: Slow ADSL !
- From: Asa Liton <leyton@example.com>
- References:
- Re: Slow ADSL !
- From: archan <archan@example.com>
- Re: Slow ADSL !
- From: Jonathan Q <jq@example.com>
- Re: Slow ADSL !
- From: archan <archan@example.com>
- Re: Slow ADSL !
- From: Asa Liton <leyton@example.com>
- Re: Slow ADSL !
- From: Tobias Diedrich <ranma@example.com>
- Re: Slow ADSL !
- From: Uva Coder <uvacoder@example.com>
- Re: Slow ADSL !
- From: Tobias Diedrich <ranma@example.com>
- Re: Slow ADSL !
- From: Asa Liton <leyton@example.com>
- Re: Slow ADSL !
- From: Tobias Diedrich <ranma@example.com>
- Re: Slow ADSL !
- From: Asa Liton <leyton@example.com>
Home | Main Index | Thread Index
- Prev by Date: Re: Slow ADSL !
- Next by Date: Re: Slow ADSL !
- Prev by thread: Re: Slow ADSL !
- Next by thread: Re: Slow ADSL !
- Index(es):
Home Page Mailing List Linux and Japan TLUG Members Links