public inbox for blinux-list@redhat.com
 help / color / mirror / Atom feed
* Urgent help needed!
@  Saqib Shaikh
   ` Andor Demarteau
   ` Andor Demarteau
  0 siblings, 2 replies; 4+ messages in thread
From: Saqib Shaikh @  UTC (permalink / raw)
  To: blinux-list, blinux-newbie

[-- Attachment #1: Type: text/plain, Size: 624 bytes --]

Hi all, I urgently need help to solve this problem regarding partitioning.  I have written my own lilo.conf, which I have included at the end of this message, and then when I select windows from lilo get the error message: cannot find c:\windows\system\something.vxd, i cannot remember exactly.  basically it is looking for the windows boot loader. i am using windows millennium incase this matters.  my lilo.conf file is:

boot=/dev/hda
root=/dev/hda3

image=/boot/boot.b
map=/boot/map
vga=normal
delay=50
default=windows
image=/vmlinuz
label=linux
other=/dev/hda1
label=dos
other=/dev/hda2
label=windows


[-- Attachment #2: Type: text/html, Size: 1321 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Urgent help needed!
   Urgent help needed! Saqib Shaikh
@  ` Andor Demarteau
     ` L. C. Robinson
   ` Andor Demarteau
  1 sibling, 1 reply; 4+ messages in thread
From: Andor Demarteau @  UTC (permalink / raw)
  To: blinux-list

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1375 bytes --]

ohe error you made, windoz always needs to be on partition 1, no exceptions
at all!
The dos-labeled lines is incorrect as well, have a look in the lilo-manpage
there's a clear exampe near the bottom of it explaining exactly how to do
this.
I have attached my lilo.conf (yes I'm a poor sod still having windoz on
hda1 I know).
good luck!


On Fri, 10 Nov 2000, Saqib Shaikh wrote:

 > Hi all, I urgently need help to solve this problem regarding partitioning.  I have written my own lilo.conf, which I have included at the end of this message, and then when I select windows from lilo get the error message: cannot find c:\windows\system\something.vxd, i cannot remember exactly.  basically it is looking for the windows boot loader. i am using windows millennium incase this matters.  my lilo.conf file is:
 > 
 > boot=/dev/hda
 > root=/dev/hda3
 > 
 > image=/boot/boot.b
 > map=/boot/map
 > vga=normal
 > delay=50
 > default=windows
 > image=/vmlinuz
 > label=linux
 > other=/dev/hda1
 > label=dos
 > other=/dev/hda2
 > label=windows
 > 
 > 

slainte leat freisin (cheers to you also),
-----------
Andor Demarteau           E-mail: ademarte@students.cs.uu.nl
student computer science  www: http://www.students.cs.uu.nl/~ademarte/
Utrecht University        note: homepage is outdated, don't remind me!
-----------
Believe in yourself, know what you want, and make it happen!

[-- Attachment #2: Type: TEXT/PLAIN, Size: 193 bytes --]

boot=/dev/hda3
root=/dev/hda3
install=/boot/boot.b
map=/boot/map
vga=normal
delay=33
image=/vmlinuz
	label=Linux
	read-only
other=/dev/hda1
        label=dos
        table=/dev/hda

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Urgent help needed!
   Urgent help needed! Saqib Shaikh
   ` Andor Demarteau
@  ` Andor Demarteau
  1 sibling, 0 replies; 4+ messages in thread
From: Andor Demarteau @  UTC (permalink / raw)
  To: blinux-list

oh yeah, don't forget to run lilo after you changed your lilo.conf file,
will cause you major troubles if you forget it.

On Fri, 10 Nov 2000, Saqib Shaikh wrote:

 > Hi all, I urgently need help to solve this problem regarding partitioning.  I have written my own lilo.conf, which I have included at the end of this message, and then when I select windows from lilo get the error message: cannot find c:\windows\system\something.vxd, i cannot remember exactly.  basically it is looking for the windows boot loader. i am using windows millennium incase this matters.  my lilo.conf file is:
 > 
 > boot=/dev/hda
 > root=/dev/hda3
 > 
 > image=/boot/boot.b
 > map=/boot/map
 > vga=normal
 > delay=50
 > default=windows
 > image=/vmlinuz
 > label=linux
 > other=/dev/hda1
 > label=dos
 > other=/dev/hda2
 > label=windows
 > 
 > 

slainte leat freisin (cheers to you also),
-----------
Andor Demarteau           E-mail: ademarte@students.cs.uu.nl
student computer science  www: http://www.students.cs.uu.nl/~ademarte/
Utrecht University        note: homepage is outdated, don't remind me!
-----------
Believe in yourself, know what you want, and make it happen!




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Urgent help needed!
   ` Andor Demarteau
@    ` L. C. Robinson
  0 siblings, 0 replies; 4+ messages in thread
From: L. C. Robinson @  UTC (permalink / raw)
  To: blinux-list

Windoze may be finicky, but not that picky.  Mine has been on
partition 4 since the win 3.1 days, and now resides on my second
(slave) hard disk (same disk, just cabled differently), on
/dev/hdb4, to be precise, and DRDOS is on hda1: with lilo they
both boot up thinking they are drive C.  If you're willing to
wade through the longish lilo manual, you can do almost anything
you want (the ascii text version of the manual is found in
/usr/doc/lilo-0.21/README, on my system (RedHat)).  Most setups
can be done through the /usr/doc/lilo-0.21/QuickInst script.

Here's my setup:
87% df -H
Filesystem            Size  Used Avail Use% Mounted on
/dev/hdb4             212M  112M  100M  53% /dos/win95
/dev/hda1              37M   14M   23M  38% /dos/c

And the M$ part of my lilo.conf:
other = /dev/hda1
  table = /dev/hda
  label = drdos
  alias = d

other = /dev/hdb4
  table = /dev/hdb
  label = win95
  alias = 95
  # Swap drives virtually:
  map-drive = 0x80
     to = 0x81
  map-drive = 0x81
     to = 0x80


On Fri, 10 Nov 2000, Andor Demarteau wrote:

> ohe error you made, windoz always needs to be on partition 1,
> no exceptions at all!  The dos-labeled lines is incorrect as
> well, have a look in the lilo-manpage there's a clear exampe
> near the bottom of it explaining exactly how to do this.  I
> have attached my lilo.conf (yes I'm a poor sod still having
> windoz on hda1 I know).  good luck!
 

> On Fri, 10 Nov 2000, Saqib Shaikh wrote:
> 
>  > Hi all, I urgently need help to solve this problem regarding
>  > partitioning.  I have written my own lilo.conf, which I have
>  > included at the end of this message, and then when I select
>  > windows from lilo get the error message: cannot find
>  > c:\windows\system\something.vxd, i cannot remember exactly.
>  > basically it is looking for the windows boot loader. i am
>  > using windows millennium incase this matters.  my lilo.conf
>  > file is:

-- 
L. C. Robinson
reply to no_spam+munged_lcr@onewest.net.invalid

People buy MicroShaft for compatibility, but get incompatibility and
instability instead.  This is award winning "innovation".  Find
out how MS holds your data hostage with "The *Lens*"; see
"CyberSnare" at http://www.netaction.org/msoft/cybersnare.html




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~ UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
 Urgent help needed! Saqib Shaikh
 ` Andor Demarteau
   ` L. C. Robinson
 ` Andor Demarteau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).