LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-30-2011, 08:23 PM   #1
katokato
Member
 
Registered: May 2011
Location: united states
Distribution: i have used ubuntu, but want to switch to slackware (ubuntu is too user friendly).
Posts: 62

Rep: Reputation: 0
help me triple boot


ok so now i download bf3 beta and it broke because it cant work on win xp. so then i want to install a windows 7 to triple boot with slackware and windows xp.

the thing is is that i already have slackware and windows xp on my computer as a dual boot setup, now i heard that you have to install linux last, so i cant install windows 7 over the linux copy.

so help me uninstall slackware and then install windows 7 then slackware.

so then i have win xp -> windows 7 ->slackware
i have important files on xp thats why i still need to keep it.

iim afraid dat lilo will broke and broke up de mbr. help plz

Last edited by katokato; 09-30-2011 at 08:35 PM.
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 09-30-2011, 08:31 PM   #2
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Please edit your question to remove the offensive homophobic allusions and clean up the general tone. This is an open forum, not a backstreet gutter.
 
3 members found this post helpful.
Old 09-30-2011, 08:53 PM   #3
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Thankyou for doing that.
I suggest that you first get a live CD that includes Gparted (e.g. SystemRescueCD) and use that to organise your disk partitions.
Windows XP will be best on the first primary partition. Windows 7 will want a small boot partition and a second partition for the main operating system. Put the Slackware installation into a fourth partition. It would be best to make the fourth partition into an extended partition so you can have a separate swap and Linux partition.
You can then boot from the Slackware installation disk, follow the instructions to boot Slackware on your hard disk in a pinch, and then edit your /etc/lilo.conf to reflect the new partitioning and rerun lilo.
Then install Windows 7.
Repeat the modification of lilo to reflect the new install.

Naturally you will have backed up all important data before attempting this.

Last edited by allend; 09-30-2011 at 09:01 PM.
 
Old 09-30-2011, 10:02 PM   #4
katokato
Member
 
Registered: May 2011
Location: united states
Distribution: i have used ubuntu, but want to switch to slackware (ubuntu is too user friendly).
Posts: 62

Original Poster
Rep: Reputation: 0
how do i reflect new partitioning with lilo?
 
Old 09-30-2011, 10:22 PM   #5
coralfang
Member
 
Registered: Nov 2010
Location: Bristol, UK
Distribution: Slackware, FreeBSD
Posts: 836
Blog Entries: 3

Rep: Reputation: 297Reputation: 297Reputation: 297
Quote:
Originally Posted by katokato View Post
how do i reflect new partitioning with lilo?
Code:
  other=/dev/sdaX
  table=/dev/sda
  label=WinblowsXP

  other=/dev/sdaX
  table=/dev/sda
  label=WinblowsVista
Assuming you have one harddrive, "table" can stay as /dev/sda.
Replace /dev/sdaX in the "other" lines for the bootable partition of that operating system.


Code:
/sbin/lilo
and reboot, you should have 3 menu entries.
 
Old 09-30-2011, 10:31 PM   #6
bonixavier
Member
 
Registered: Sep 2010
Distribution: Slackware
Posts: 320

Rep: Reputation: 69
No need for reinstall. Just make room for Windows 7, install it, then boot your Slack DVD and start your current install, like
Code:
huge.s /dev/sda2 rdinit= ro
, add the /etc/lilo.conf changes and run /sbin/lilo. Reinstalling everything will take too long.
 
Old 10-01-2011, 03:38 PM   #7
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
You may also want to use cfdisk to remove any status that the Windows partitions are "bootable" except the Linux partition. It won't reformat the drive.
 
Old 10-01-2011, 05:03 PM   #8
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Hi,

Quote:
Originally Posted by ReaperX7 View Post
You may also want to use cfdisk to remove any status that the Windows partitions are "bootable" except the Linux partition. It won't reformat the drive.
Why? Slackware doesn't need the partition to be marked as 'boot'.
 
Old 10-01-2011, 06:14 PM   #9
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
It's mostly to ensure that Windows 7's bootloader doesn't try to overwrite GRUB or LILO with it's own bootloader.

I've had Windows 7 still listed as bootable and I had to go back and disable it before it would stop overwriting LILO.

It's just a small optional insurance step to know to make sure Windows behaves itself with Linux.
 
Old 10-05-2011, 11:59 PM   #10
katokato
Member
 
Registered: May 2011
Location: united states
Distribution: i have used ubuntu, but want to switch to slackware (ubuntu is too user friendly).
Posts: 62

Original Poster
Rep: Reputation: 0
ok i need to reinstall slackware too since its buggy i messed up some dependency thing which i dont know how to fix.
so then how bout i delete the slackware partition and bootloader messed up, then install windows 7 which rewrites the mbr with windows xp added to it, then install slackware last?
 
Old 10-06-2011, 12:33 AM   #11
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
A pity that you have to do the Slackware reinstall, but what you propose is the easiest path to success.
 
Old 10-06-2011, 07:53 PM   #12
katokato
Member
 
Registered: May 2011
Location: united states
Distribution: i have used ubuntu, but want to switch to slackware (ubuntu is too user friendly).
Posts: 62

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by allend View Post
A pity that you have to do the Slackware reinstall, but what you propose is the easiest path to success.
thanks that is what ill be doing then.
thanks for the help!
 
Old 10-29-2011, 05:20 PM   #13
3dBdown
Member
 
Registered: Feb 2011
Location: Aimlessly adrift on a sea of documentation, searching for a rock to finally wreck upon
Distribution: Originally: Slackware 3.1; Now Slackware 13.37
Posts: 41

Rep: Reputation: 1
what the "rdinit=" do?

(original question to be posted elsewhere)

Last edited by 3dBdown; 10-30-2011 at 12:13 PM. Reason: though it was the wrong way to ask the question...
 
Old 10-30-2011, 12:13 AM   #14
psionl0
Member
 
Registered: Jan 2011
Distribution: slackware_64 14.1
Posts: 722
Blog Entries: 2

Rep: Reputation: 124Reputation: 124
Get set for some fun!

Windows 7 doesn't like sharing a hard drive with other operating systems. On some laptops, a dual boot with windows 7 and slackware is no problem but not on my PC (it seems to be something to do with the order of the 3 partitions used by Windows 7). Every time I ran lilo and tried to boot up windows, the boot-up partition would apparently "see" a problem and go into recovery mode.

My final solution was to delete the 3 primary partitions, set up a single partition in its place and install windows XP service pack 3 instead. Maybe upgrading XP to service pack 3 might allow you to use "bf3 beta".
 
Old 11-01-2011, 09:26 AM   #15
hughetorrance
Member
 
Registered: Aug 2009
Location: London North West
Distribution: x86_64 Slack 13.37 current : +others
Posts: 459

Rep: Reputation: 59
I will just tell you what I do and you can judge if it has merit or not...I multiboot a number of operating systems on two hard drives so I install GRUB to the MBR of each drive so I have two GRUB,s,usually GRUB 2 and Legacy but you can have any versions.
This allows me to easily change operating systems without having to worry about screwing up GRUB as I can install the new GRUB to either drive and that leaves one GRUB always fully functional so its no big deal if I get problems when adding or removing an operating system... LOL
 
  


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
[SOLVED] how can I incorporate windows boot loader into grub? Triple boot, single hard drive olkirf Linux - Newbie 8 10-24-2010 08:36 AM
Triple Boot or Dual with Fedora, no CD boot muckybucket Linux - Newbie 17 06-04-2010 09:59 AM
LXer: How to Triple-Boot Your Mac with Windows and Linux, No Boot Camp Required LXer Syndicated Linux News 0 05-05-2010 09:30 AM
Installing goblinX in triple boot laptop... no boot in the other linux OS amalgam Linux - Newbie 2 02-14-2008 01:08 PM
triple boot system/boot disk noODle Linux - Software 4 12-23-2001 10:55 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 10:37 AM.

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