LinuxQuestions.org
Review your favorite Linux distribution.
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 07-19-2007, 03:58 PM   #1
osc~
Member
 
Registered: Apr 2007
Location: brazil
Distribution: Arch Linux
Posts: 70

Rep: Reputation: 15
installing 2 distros


i would like to update to slackware 12.0 but also install arch linux 64bit distro to check it out --and also finally remove my window$ partition since i managed to cope pretty well with gnu/linux.

-should i first install slackware or arch.
-i know slackware uses lilo and arch uses grub. will that be a problem.
-how to partition the disk.

cheers
 
Old 07-19-2007, 04:12 PM   #2
Perceptor
Member
 
Registered: Jul 2007
Location: the Future
Distribution: Slackware
Posts: 128

Rep: Reputation: 64
I think it does not matter which distro you install first. As for the bootloader - after installing the first distribution, you could simply skip overwriting the existing one and add the last installed OS to the current bootloader (the one of the first installed distro). I think that this is the better option - both GRUB and LILO could find already installed system, but setting things on your own is much better IMHO.
As for partitioning, logic dictates that about 10 gb for each / and the rest for /home will do it. You may use different names for your users, if you don't want to mess up the personal settings.
Good luck! :-)
 
Old 07-19-2007, 04:20 PM   #3
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
a lot depends on how much you plan to use each one, but in general i would install arch first (with grub) which will make your life a whole lot easier when pacman upgrades the kernel. just don't forget NOT to install a bootloader during slack install.

partition any way you want. i'd probably do the typical / for each, share /home and swap, unless you had any special requirements (e.g., is one a server, etc.)
 
Old 07-19-2007, 05:35 PM   #4
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
Quote:
Originally Posted by osc~
i would like to update to slackware 12.0 but also install arch linux 64bit distro to check it out --and also finally remove my window$ partition since i managed to cope pretty well with gnu/linux.

-should i first install slackware or arch.
-i know slackware uses lilo and arch uses grub. will that be a problem.
-how to partition the disk.

cheers
Hi,

The install would depend on your experience with the bootloader. If you are familiar with lilo then by all means use Slackware 12.0 as the original. Then add Arch Linux. Update the '/etc/lilo.conf' file for Slackware then write the lilo.

If you want grub then reverse. But you will need to add Slackware to the grub menu. The flavor depends on your experience and taste.

You could use an initial bootloader then chain to each installation via the superblock. That way you can have a lot of installs. Just keep chaining to the one you are comfortable with. The initial bootloader would just point to a secondary which in turn will be the primary to the others. I set my initial to a small timeout and then the secondary to a longer timeout. Make sure you set the default to the one you want to load after the timeout.

As for the partition scheme, that can be a very debatable subject. I tend to set most of my desktop development systems with;
Code:
~#fdisk -l /dev/hda
Disk /dev/hda: 122.9 GB, 122942324736 bytes
255 heads, 63 sectors/track, 14946 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/hda1   *           1        2613    20988891    7  HPFS/NTFS
/dev/hda2            2614        2737      996030   82  Linux swap
/dev/hda3            2738        2987     2008125   83  Linux
/dev/hda4            2988        7473    36033795    5  Extended
/dev/hda5            2988        4233    10008463+  83  Linux
/dev/hda6            4234        4981     6008278+  83  Linux
/dev/hda7            4982        5231     2008093+  83  Linux
/dev/hda8            5232        6228     8008371   83  Linux
/dev/hda9            6229        7473    10000431    b  W95 FAT32

~# cat /etc/fstab
/dev/hda2        swap             swap        defaults         0   0
/dev/hda3        /                ext3        defaults         1   1
/dev/hda5        /home            ext3        defaults         1   2
/dev/hda6        /usr             ext3        defaults         1   2
/dev/hda7        /var             ext3        defaults         1   2
/dev/hda8        /tmp             ext3        defaults         1   2
/dev/sda2        /mnt/sda2        ext3        defaults         1   2
/dev/hda1        /mnt/winxp       ntfs        ro               1   0
/dev/hda9        /mnt/winfat32    vfat        defaults         1   0
/dev/sda1        /mnt/winxp_sda1  ntfs        ro               1   0
#/dev/cdrom      /mnt/cdrom       auto        noauto,owner,ro  0   0
/dev/fd0         /mnt/floppy      auto        noauto,owner     0   0
devpts           /dev/pts         devpts      gid=5,mode=620   0   0
proc             /proc            proc        defaults         0   0
For a server the setup would be set for the use/environment loads.
 
Old 07-19-2007, 06:03 PM   #5
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
again, just to reiterate, when you run pacman periodically (as you should) and it installs a new kernel (which happens from about every week to every couple of weeks), it will write to your grub/lilo config file so you can boot the new kernel/init image. if the arch grub/lilo isn't your default bootloader, you'll have to rewrite your slack grub or lilo file manually each time, which could become quite a hassle week after week (especially if you forget and then can't boot into arch until you fix it ).

so just keep in mind that if you install slack first with lilo, you'll have to remember to reboot into slack every time pacman upgrades your arch kernel, manually change your slack lilo config, and then run lilo before you can reboot into arch. if you use grub with slack, you can just mount the slack grub menu file from arch and change it, but you'll still have to remember to do it manually each time. a shared /boot partition with grub might be the best solution if you want to install slack first, although i haven't tested that and *perhaps* there would be an unforeseen permissions or systems problem with pacman writing to the slack config (although i doubt it -- i'm just adding the caveat b/c i've never tried it myself).

so in reality the actual order doesn't matter because you can change your bootloader anytime you want (i.e., if you install slackware/lilo first you can change it to grub, or arch lilo, or arch grub, etc.), but i'm just trying to save you time and trouble by giving you the path of least resistance. that would mean installing arch first with grub so that it can auto update the config file for you when pacman upgrades the kernel.

finally, if you plan to use your own kernels with arch, of course the whole issue is then a moot point.

gl

Last edited by slackhack; 07-19-2007 at 06:07 PM.
 
Old 07-19-2007, 06:27 PM   #6
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,

My, MY! That's another reason to love Slackware. I really don't like someone else doing anything to my system but me.
 
Old 07-19-2007, 06:43 PM   #7
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
Quote:
Originally Posted by onebuck
Hi,

My, MY! That's another reason to love Slackware. I really don't like someone else doing anything to my system but me.
That's your choice, naturally. But do you write all your own software, too? Probably not.

The Arch method isn't really someone "doing something" to your system that you haven't initiated. It's just like installing any other software, including typing configure, make, make install. If you know what's happening and what to expect, then you are just making an informed choice about what's happening on your system just like with anything else.

And of course you can always compile your own kernel in Arch, either in a traditional way or with ABS. As someone with experience with both distros, I was just trying to point out a potential pitfall that he might encounter if he wasn't aware of how the Arch kernel upgrades typically work. The overall point isn't really which to install first (you could even install slack first and then just overwrite lilo with the arch BL), but that the arch BL ultimately should be the one that's installed if what you're after is the best ease and convenience in using both systems.

gl
 
Old 07-19-2007, 07:07 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
Quote:
Originally Posted by slackhack
That's your choice, naturally. But do you write all your own software, too? Probably not.

The Arch method isn't really someone "doing something" to your system that you haven't initiated. It's just like installing any other software, including typing configure, make, make install. If you know what's happening and what to expect, then you are just making an informed choice about what's happening on your system just like with anything else.

And of course you can always compile your own kernel in Arch, either in a traditional way or with ABS. As someone with experience with both distros, I was just trying to point out a potential pitfall that he might encounter if he wasn't aware of how the Arch kernel upgrades typically work. The overall point isn't really which to install first (you could even install slack first and then just overwrite lilo with the arch BL), but that the arch BL ultimately should be the one that's installed if what you're after is the best ease and convenience in using both systems.

gl
Hi,

Yes, it is my choice. That's why I and many others use Slackware. I do not automate upgrades or installs of any kind. My choice again.

As for your statement;
Quote:
But do you write all your own software, too? Probably not.
You can put the smilie where the sun don't shine!

Know you not me! Reverse the thought. Sorry, the thought someone would make such an awkward statement just to try an belittle or support an argument appalls me.

<BLONK> Oh! This is not a NG. But I could block, but I like to follow a thread in it's entirety.

That's the LQ way to share and be helpful. Maybe I'm being too sensitive.

I understand the drift of your reply. Just don't agree.
 
Old 07-19-2007, 07:25 PM   #9
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
Quote:
Originally Posted by onebuck
Hi,

Yes, it is my choice. That's why I and many others use Slackware. I do not automate upgrades or installs of any kind. My choice again.
but the thread's not about you, is it?


Quote:
As for your statement;
You can put the smilie where the sun don't shine!

Know you not me! Reverse the thought. Sorry, the thought someone would make such an awkward statement just to try an belittle or support an argument appalls me.

<BLONK> Oh! This is not a NG. But I could block, but I like to follow a thread in it's entirety.

That's the LQ way to share and be helpful. Maybe I'm being too sensitive.

I understand the drift of your reply. Just don't agree.
chill out, dude. you started in with a very elitist sounding comment about "doing everything yourself," etc. i was just pointing out there that you (very likely) did not do everything on your system yourself, that in fact you do rely on others to "do" things for you, even when you type "make install."

the OP expressed a desire to install both distros. i was merely providing information for him to make a more informed choice about what he wants to do. no need to turn it into a flame on anything other than slack with all the "My My!" etc. that's not really necessary.
 
Old 07-20-2007, 11:04 AM   #10
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
Quote:
Originally Posted by slackhack
but the thread's not about you, is it?

chill out, dude. you started in with a very elitist sounding comment about "doing everything yourself," etc. i was just pointing out there that you (very likely) did not do everything on your system yourself, that in fact you do rely on others to "do" things for you, even when you type "make install."

the OP expressed a desire to install both distros. i was merely providing information for him to make a more informed choice about what he wants to do. no need to turn it into a flame on anything other than slack with all the "My My!" etc. that's not really necessary.
Hi,

No the OP was not about me but you directed statements to me therefore a reply was warranted. As for the smilies, that shows the professionalism you have!

As stated before, you don't know me. And I do perform all the work on the systems under my care. Yes, there is open source that someone else generated. But that is the way it is. Yes, I do write software. Nit picking aren't we;

Quote:
Originally Posted by slackhack
chill out, dude. you started in with a very elitist sounding comment about "doing everything yourself," etc. i was just pointing out there that you (very likely) did not do everything on your system yourself, that in fact you do rely on others to "do" things for you, even when you type "make install."
If you really want to get down and dirty, then the original masm and other compilers along with libs were the basis for a lot of open software generation originally. People decided to create their own but that still took some time to produce the compilers, libs and such. But still based on other peoples work.

As for being 'very elitist sounding comment about "doing everything yourself,' your inane judgment again. My comment stands for itself, I do everything relative to my equipment. Do you make your own tools, screwdrivers, wrenches and such? No! Most people don't! But they could if the need were there and the proper materials available.

Just like software, why re-invent the wheel? You can modify, adjust or just use as is the available open source software. But that doesn't mean that you wrote the software but improved or adjust to suit your needs. Much like the OS, we modify, adjust or maintain to suit our needs but others provide the base.

So if I hurt your 'ARCH' then my apologies. Nowhere did I state anything negative about ARCH.

Quote:
the OP expressed a desire to install both distros. i was merely providing information for him to make a more informed choice about what he wants to do. no need to turn it into a flame on anything other than slack with all the "My My!" etc. that's not really necessary.
As for the posts to the OP, I stand by my recommendations. My viewpoint! And My style. If you don't like it then don't respond.

Your argument is weak and you know it! I am speaking about the issue(s) between you and I.

So too use your style "chill out, dude".

Last edited by onebuck; 07-20-2007 at 11:08 AM.
 
Old 07-20-2007, 12:33 PM   #11
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
Quote:
Originally Posted by onebuck
Hi,

No the OP was not about me but you directed statements to me therefore a reply was warranted. As for the smilies, that shows the professionalism you have!

As stated before, you don't know me. And I do perform all the work on the systems under my care. Yes, there is open source that someone else generated. But that is the way it is. Yes, I do write software. Nit picking aren't we;



If you really want to get down and dirty, then the original masm and other compilers along with libs were the basis for a lot of open software generation originally. People decided to create their own but that still took some time to produce the compilers, libs and such. But still based on other peoples work.

As for being 'very elitist sounding comment about "doing everything yourself,' your inane judgment again. My comment stands for itself, I do everything relative to my equipment. Do you make your own tools, screwdrivers, wrenches and such? No! Most people don't! But they could if the need were there and the proper materials available.

Just like software, why re-invent the wheel? You can modify, adjust or just use as is the available open source software. But that doesn't mean that you wrote the software but improved or adjust to suit your needs. Much like the OS, we modify, adjust or maintain to suit our needs but others provide the base.

So if I hurt your 'ARCH' then my apologies. Nowhere did I state anything negative about ARCH.



As for the posts to the OP, I stand by my recommendations. My viewpoint! And My style. If you don't like it then don't respond.

Your argument is weak and you know it! I am speaking about the issue(s) between you and I.

So too use your style "chill out, dude".
Whatever, dude. It's pretty clear from the posts that I was trying to help the OP by giving him/her specific things to think about directly related to his questions that the other posters (including you) weren't mentioning. And then when you didn't like it b/c it contradicted what you said, you started in with the attitude and the "My MYs."

Because if he did it your way, he would have run into a hassle (or at least more work) the first time he upgraded the arch kernel. I should know, I have both arch and slack installed on my laptop. And I guess you didn't like me pointing that out, so you copped an attitude instead of the "professional" thing to do (since you seem to be so big on that ), which would have been simply to acknowledge a relevant point and move on. I never even addressed you until you started the snarky comments, so why don't you just drop it now? it's not really helping anyone.

Last edited by slackhack; 07-20-2007 at 12:35 PM.
 
Old 07-20-2007, 03:13 PM   #12
osc~
Member
 
Registered: Apr 2007
Location: brazil
Distribution: Arch Linux
Posts: 70

Original Poster
Rep: Reputation: 15
i agree we shouldnt really argue about these things people. there are so many problems already.
 
Old 07-20-2007, 03:44 PM   #13
slackhack
Senior Member
 
Registered: Jun 2004
Distribution: Arch, Debian, Slack
Posts: 1,016

Rep: Reputation: 47
Quote:
Originally Posted by osc~
i agree we shouldnt really argue about these things people. there are so many problems already.
true enough. i have no desire to argue with my fellow linux-ers or fellow slackers. i apologize to onebuck that things were starting to get out of control. he posted some useful information and examples regarding the layout of the partitioning.

to sum up the other issue: install whatever distro you want first, it really doesn't matter. just be aware of the issues that exist with the bootloader when upgrading the arch kernel, in case you want that done automatically.

gl
 
  


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
Installing New Distros? snakeo2 Linux - Newbie 8 09-12-2004 08:03 AM
Installing different distros linda Linux - Distributions 15 08-12-2004 04:08 AM
Installing two distros on one HD d4d4n9 Mandriva 17 01-29-2004 12:16 PM
Installing two distros EyeGuy Linux - Newbie 6 12-06-2001 02:52 AM
Installing distros over distros sunilkgarg Linux - Distributions 8 11-07-2001 02:14 AM

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

All times are GMT -5. The time now is 05:36 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