----- Original Message -----
From: Rajen Parekh <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, September 13, 1999 10:34 AM
Subject: Re: Path at Prompt
>
> Well I found it. But now another stupid question. How do you define
> modules which you want to be loaded at the booting.
Check /etc/conf.modules
That file is scanned for loading modules
> For example I want
> that my DOS & Windows partition gets mounted when booting on Linux.
> Then, how do I do it ? I mean I don't want to give command of mounting
> those partition when I am working with Linux, (something I like putting
> commands in AUTOEXEC.BAT file in DOS)
>
the file is /etc/fstab
make a copy of one of the entries to modify it to
/dev/hdaX /dos1 vfat defaults,auto 1 1
1) The /dev/.. is the hard disk drive/partition combo
2) /dos1 is the mount point under which the drive will be mounted
3) vfat indicates a win95/nt/98 filesystem
4) with the defaults option include the auto keyword separated with a comma
5) The last 2 flags indicate the order the fsck and backups are done for
those drives
The main key is the auto keyword and the proper specs for mounting the drive
> Thanks in advance
>