LinuxQuestions.org
Visit Jeremy's Blog.
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 05-26-2017, 04:00 PM   #1
johnfootmember
LQ Newbie
 
Registered: May 2017
Posts: 1

Rep: Reputation: Disabled
Question Multiple distributions on on computer


Hi, I'm a nubie so please, be kind and if you reply, try and use language I can understand, lol.
I have an old but upgraded MacBook, with a 1 terabyte SSHD hard drive hybrid, and 8 GB of ram, if this helps any. I have erased the hard drive and installed Kali.
I would like to have three distributions installed permanently on this computer, Kali, Mint Cinnamon and KXStudio. I have current editions on DVD.
I know nothing about partitioning
If someone could, and keep in mind, I'm a newbie who is new to Linux, and new to code and commands, so please dumbed down English if you reply, technical and code still confuses me, if someone could give me step by step, plain English instructions how to do this properly (and if any commands are required, specifics on when and where with commands I could copy and paste), it would be so greatly appreciated!
Thanks in advance,
johnfootmember
 
Old 05-28-2017, 09:45 AM   #2
kakistocrat
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,756
Blog Entries: 4

Rep: Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972Reputation: 3972
Welcome. Linux Mint Cinnamon is a good first choice. My first idea would be to go with it alone and add to it the packages from kxstudio and Kali a la carte.

kxstudio has Ubuntu- and Debian-compatible repositories which should be fully compatible with Linux Mint Cinnamon. So you can add the packages to Mint from kxstudio.

Alternately, with kxstudio being the unkown (to me) here, another option is to install kxstudio first, erasing the hard disk completely. Then when that is done install Mint along side it. Mint, if you follow the menu choices carefully, should allow you to install along side an existing distro. That should be the default choice at the top of the list on the third installation screen to install along side an existing distro.

I'd say forget Kali Linux as a distro for the time being for two reasons. First, it's not for beginners and it will thus be a miserable experience. Second, all the tools available in Kali are available in Mint. They are there in the repositories. You can add them one at a time to Mint and when you learn and master them in a familiar environment, you can proceed to the next tool on the list. When you know them all, and if you are still interested, you can make a bootable USB stick with Kali and carry that around.
 
Old 05-28-2017, 10:40 AM   #3
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,365
Blog Entries: 21

Rep: Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851
I have three distros on my main machine. To make them work together nicely, I use the following rules:
1) Each distro occupies one partition. There is also a swap partition and a partition for documents. I have a home directory on each system partition to contain program configuration files appropriate to that distro, but all document files (except the most temporary ones) go in the documents partition.

2) In each distro, the documents partition is automatically mounted on /home/data. In a one-distro setup, a "home partition" is usually mounted on /home/your_name (otherwise known as $HOME or ~), and this contains both documents and configuration files, but in a multi-distro setup, it's often more convenient to have a simple home directory (not a mount-point) on the root partition and use it only for config files.

3) I always ensure that my user id number (UID) and group id (GID) is the same in all my distros, so that all files created in the documents partition belong to me, whichever distro I'm booted into.
 
1 members found this post helpful.
Old 05-28-2017, 01:57 PM   #4
DVOM
Member
 
Registered: Nov 2010
Posts: 223

Rep: Reputation: 48
I've got 5 distros on my machine. So 5 partitions for OSs, (varies between 12GB and 20GB) one swap partition, (about 2GB) one data partition (about 780GB) and one partition to store clonezilla images of my OSs. (about 66GB)

I think "normal" people are going to want much larger OS partitions.

The tool I recommend for partitioning, installing grub, clonezilla and a lot of other things is Parted Magic. Free copies of older Parted Magic can be found at MajorGeeks and other places. Then burn it to a CD or USB.

I'd also recommend going to youtube and watching a couple of gparted tutorials.
 
Old 05-28-2017, 04:16 PM   #5
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
Hi.

Some Links in my signature may help, have fun
Quote:
... try and use language I can understand, lol. ...
...GNU\Linux is a fun language to learn, try them all (like anyone could.) If you are gonna use Kali as a operating system tho please post all private and sensitive data here:
 
Old 05-28-2017, 10:55 PM   #6
isometric
LQ Newbie
 
Registered: May 2017
Location: Reykjavík, Iceland
Distribution: Debian, openSUSE, Fedora
Posts: 26

Rep: Reputation: Disabled
Typically a linux distribution needs 3 partitions:

1 for folder '/'
2 for the folder '/ home'
3 swap (optional recommended), that can be used by all sistems.

But you can install '/' and '/ home' on a single partition.

So, because there are several systems, you can create a primary[1] partition for the system and you can use it as a whole, / or with an extended[2] partition for / home, the case is that the primary[1] partition is necessary to write the boot information(GRUB) of all Systems.

The other systems can be installed on extended[2] partitions, those that you need.


[1] https://en.wikipedia.org/wiki/Disk_p...mary_partition
[2] https://en.wikipedia.org/wiki/Disk_p...nded_partition

Last edited by isometric; 05-28-2017 at 11:10 PM.
 
Old 05-29-2017, 01:32 AM   #7
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 8,365
Blog Entries: 21

Rep: Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851Reputation: 4851
Quote:
Originally Posted by isometric View Post
the case is that the primary[1] partition is necessary to write the boot information(GRUB) of all Systems.

The other systems can be installed on extended[2] partitions, those that you need.
Actually I don't think that's true. Windows has to boot from a primary partition but Linux is a lot less fussy.

For a traditional dos mbr disk, the first stage of GRUB lives in the mbr and the second stage in a gap between the mbr and the first partition. The GRUB modules and the configuration file are loaded from a Linux partition which GRUB regards as its "root" but I don't think that it has to be a primary.
 
Old 05-29-2017, 01:47 AM   #8
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
learning partitioning - just a web search away.

fwiw, i recommend a separate data partition (for large files such as media, and personal stuff needed across all distros).

you need
Code:
1 partition per distro ---- 3
1 swap partition       ---- 1
1 data partition       ---- 1
=============================
                            5
but you can only have 4 primary partitions on any 1 hard drive, so you will need to set up an extended partition with (many more) logical partitions inside (hope i'm getting the terms right).
that is perfectly possible and no problem whatsoever, but good to know & understand.
 
Old 05-29-2017, 02:05 AM   #9
isometric
LQ Newbie
 
Registered: May 2017
Location: Reykjavík, Iceland
Distribution: Debian, openSUSE, Fedora
Posts: 26

Rep: Reputation: Disabled
Quote:
Originally Posted by hazel View Post
Actually I don't think that's true. Windows has to boot from a primary partition but Linux is a lot less fussy.

For a traditional dos mbr disk, the first stage of GRUB lives in the mbr and the second stage in a gap between the mbr and the first partition. The GRUB modules and the configuration file are loaded from a Linux partition which GRUB regards as its "root" but I don't think that it has to be a primary.
I like to have at least one partition with bootable flag and a nice grub, I think it has less than one can avoid future compatibility problems, if you want to change something.

Last edited by isometric; 05-29-2017 at 02:27 AM.
 
Old 05-29-2017, 02:30 AM   #10
jamison20000e
Senior Member
 
Registered: Nov 2005
Location: ...uncanny valley... infinity\1975; (randomly born:) Milwaukee, WI, US( + travel,) Earth&Mars (I wish,) END BORDER$!◣◢┌∩┐ Fe26-E,e...
Distribution: any GPL that work on freest-HW; has been KDE, CLI, Novena-SBC but open.. http://goo.gl/NqgqJx &c ;-)
Posts: 4,888
Blog Entries: 2

Rep: Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567Reputation: 1567
If GRUB has a distro with rescue can always root in.
.
.

Last edited by jamison20000e; 05-29-2017 at 11:42 AM.
 
Old 05-29-2017, 07:50 AM   #11
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 11,418

Rep: Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718Reputation: 2718
Quote:
Windows has to boot from a primary partition but Linux is a lot less fussy.
Absolutely true. Windows needs a primary active partition for it's boot files to install. It doesn't need it's system files on a primary and doesn't need to be installed on the first primary partition either as I've seen mentioned in other posts and on other forums. Pretty much any Linux can be installed and booted from a logical partition and I've never known of any that needed a boot flag but it certainly isn't a problem to have that.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Why do people use multiple distributions on one computer? Cultist Linux - Distributions 17 11-22-2011 12:47 PM
ANNOYING FREEZES: Happens on multiple distributions on multiple computers. keithieopia Linux - Software 26 02-23-2009 02:36 PM
How to install multiple linux distributions on a computer orpolo Linux - General 17 12-25-2006 12:07 AM
GRUB boot loader and installing multiple distributions on one computer juyce Linux - General 3 06-27-2005 06:13 PM
How many Distributions can co-exist on a computer? anzan Linux - Newbie 5 05-10-2004 11:25 PM

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

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