LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-09-2004, 04:49 PM   #16
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47

Can you paste the contents of your /etc/lilo.conf file here. Only the stanza relating to Windows is necessary (it'll start "other="). You'll need to be the root user to do that.


edit to another clarification:

Also, what OS is on what disk (you did say you had two, right?) - /etc/fstab will tell you (paste if you want).

Last edited by vectordrake; 09-09-2004 at 04:50 PM.
 
Old 09-10-2004, 04:22 AM   #17
tidasu
Member
 
Registered: Aug 2004
Location: Bruges - Belgium
Distribution: Mandrake 10.0
Posts: 45

Original Poster
Rep: Reputation: 15
I'm at school right now, but when I'm home I'll post the file.
I have installed Windows XP on HD40gig
and I have installed Linux on HD120GIG.
Afterwards I have installed linux again on HD40GIG on the windows partition with the intention to choose at the startup what OS to use.

This worked so far.
Untill I wanted to launch windows of cource ...

I hope somebody can help ...
(I'll post the file in an hour or so)

Kind regards
 
Old 09-10-2004, 08:19 AM   #18
tidasu
Member
 
Registered: Aug 2004
Location: Bruges - Belgium
Distribution: Mandrake 10.0
Posts: 45

Original Poster
Rep: Reputation: 15
Hello,

Sorry I'm late, here's the code:
Code:
# File generated by DrakX/drakboot
# WARNING: do not forget to run lilo after modifying this file

boot=/dev/hda
map=/boot/map
default="linux"
keytable=/boot/be2-latin1.klt
prompt
nowarn
timeout=100
message=/boot/message
menu-scheme=wb:bw:wb:bw
image=/boot/vmlinuz
	label="linux"
	root=/dev/hdb8
	initrd=/boot/initrd.img
	append="devfs=mount acpi=ht resume=/dev/hda5 splash=silent"
	vga=788
	read-only
image=/boot/vmlinuz
	label="linux-nonfb"
	root=/dev/hdb8
	initrd=/boot/initrd.img
	append="devfs=mount acpi=ht resume=/dev/hda5"
	read-only
image=/boot/vmlinuz-2.6.3-7mdk
	label="263-7"
	root=/dev/hdb8
	initrd=/boot/initrd-2.6.3-7mdk.img
	append="devfs=mount acpi=ht resume=/dev/hda5 splash=silent"
	read-only
image=/boot/vmlinuz
	label="failsafe"
	root=/dev/hdb8
	initrd=/boot/initrd.img
	append="failsafe acpi=ht resume=/dev/hda5 devfs=nomount"
	read-only
other=/dev/hdb1
	label="windows"
	table=/dev/hdb
	map-drive=0x80
	   to=0x81
	map-drive=0x81
	   to=0x80
Here it is, I hope you can help ...


Kind regards
 
Old 09-10-2004, 02:22 PM   #19
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Is there no OS at all on hda?
Or did you physically swap the hdd's during
install or from BIOS? That lilo.conf looks odd :)

When you talk about HD1 and HD2 in the
first post ... are those partitions or separate
physical devices?


Cheers,
Tink
 
Old 09-10-2004, 03:05 PM   #20
tidasu
Member
 
Registered: Aug 2004
Location: Bruges - Belgium
Distribution: Mandrake 10.0
Posts: 45

Original Poster
Rep: Reputation: 15
I have 2 HD's on the pc.
HD1, the first HD has got 2 partitions.
This HD has got Windows on partition 1 and Linux mandrake 10.0 on partition2

The second HD has got also a OS, namely Mandrake linux 10.0

So they got both a OS.
However, the 2nd HD doesn't come in the lilo, and it doesn't needs to.
The only thing I want is that I can choose bitween linux and wndows at the startup ...

Hope this helped.


Kind regards
 
Old 09-10-2004, 04:35 PM   #21
Mara
Moderator
 
Registered: Feb 2002
Location: Grenoble
Distribution: Debian
Posts: 9,696

Rep: Reputation: 232Reputation: 232Reputation: 232
Boot your Linux, open a terminal and type 'mount'. Then look at the result and search for the directory you have your WIndows files in /mnt/windows (or just /mnt/). What do you have in the same line at the beginning? If it's /dev/ide/host0/bus0/target0/lun0/part1 or /dev/hda1 you need to change the lilo.conf file. I'd also show you the lat section:
Code:
other=/dev/hda1
	label="windows"
	table=/dev/hda
Save it, run 'lilo' as root and reboot to see if it works.
 
Old 09-10-2004, 05:23 PM   #22
tidasu
Member
 
Registered: Aug 2004
Location: Bruges - Belgium
Distribution: Mandrake 10.0
Posts: 45

Original Poster
Rep: Reputation: 15
I think this is what youre looking for?

Code:
/dev/ide/host0/bus0/target1/lun0/part1 on /mnt/win_c type vfat (rw,umask=0,iocharset=iso8859-15,codepage=850)
So I need to change
Code:
other=/dev/hdb1
	label="windows"
	table=/dev/hdb
	map-drive=0x80
	   to=0x81
	map-drive=0x81
	   to=0x80
to

Code:
other=/dev/hdb1
	label="windows"
	table=/dev/ide/host0/bus0/target1/lun0/part1
	map-drive=0x80
	   to=0x81
	map-drive=0x81
	   to=0x80
or to this?

Code:
other=/dev/hdb1
	label="windows"
	table=/mnt/win_c
	map-drive=0x80
	   to=0x81
	map-drive=0x81
	   to=0x80

Please help ...



Kind regards
 
Old 09-10-2004, 07:54 PM   #23
wearetheborg
Member
 
Registered: Sep 2004
Distribution: Mint 19.1
Posts: 298

Rep: Reputation: 41
Quote:
Originally posted by mykrob


and for rippers, i sue lxdvrip to make copies of DVD's. If you just want to rip to an AVI file, do a google search for AcidRip or DVD:RIP


-myk
Can they rip encrypted dvds?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 35 02-07-2006 03:29 PM
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 4 11-10-2005 11:37 AM
Vnc only works linux to windows not windows to linux mbdayton Linux - Networking 2 04-16-2005 06:36 PM
Red Hat Linux 9 + Windows Server 2003 + Windows XP + Fedora in same domain wolfy339 Linux - Networking 5 03-02-2005 06:03 AM
Samba - Linux box can see Windows, but WIndows can't see Linux Korff Linux - Networking 1 06-02-2003 10:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration