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 08-17-2013, 02:33 AM   #1
Renorei
LQ Newbie
 
Registered: Aug 2013
Posts: 3

Rep: Reputation: Disabled
Partitioning Questions; where to put Xubuntu, Crunchbang, etc.?


Okay so I'm brand new to Linux. My first Linux OS was Crunchbang as of a few days ago. I like it very much. But I figured I might put Xubuntu and perhaps even Fedora on my machine as well, and as soon as I can find someone with a MAK I want to put either Win7 or Win8 on there too. It's a netbook; Atom N2600, but with a 120GB SSD and 4GB RAM. So far with Crunchbang it's been pretty snappy. I can play youtube videos and kongregate games without a hitch.

But that's besides the point, my issue is I don't know ANYTHING about partitioning. Partition-wise here's what's on my SSD so far:

/dev/sda
-----sda1 (ext4) 115,127 MB Size 5876 Used

-----sda5 (swap) 4904 MB 0 Used


Now it seems like I'm supposed to leave swap alone, as that's a backup for RAM, right?

But what about the rest of it? Should I take sda1 and subdivide it, like for instance make a partition called sda2 and put Xubuntu in that, and put Windows in sda3? Or should separate OS's have separate letters altogether, like Xubuntu in sdb and Windows in sdc? I really don't know what's the best way to do this.

And furthermore, what's the best way to go about doing this? Can I use gparted to do this or should I let Xubuntu lead the way as I install it? I tried that way and it gave me the option to install Xubuntu alongside Crunchbang (Debian) and then it asked me to divide up the available space on the SSD, with the default being 57 GB for one half and 57 for the other.

But I didn't know for sure which side would be Xubuntu and which side would be Crunchbang and I didn't know how I'd go about dividing the larger portion further once I needed to install another OS.

Also does every OS need to be in a partition formatted as ext4?

I really just don't understand all this.

I posted a thread over at linuxforums as well. So if you saw the other one I'm not a bot or something I just figured I might as well get as much advice as possible.
 
Old 08-17-2013, 08:29 AM   #2
moo-cow
Member
 
Registered: Mar 2006
Distribution: Debian
Posts: 105

Rep: Reputation: 26
Code:
my issue is I don't know ANYTHING about partitioning
I urgently recommend you to do a bit of reading on this topic. Any introductory Linux book has info on partitioning. It helps when you know what you're doing .

Code:
Now it seems like I'm supposed to leave swap alone, as that's a backup for RAM, right?
Yep.

Code:
But what about the rest of it? Should I take sda1 and subdivide it
Yes. You basically have to, because sda is your only storage device (that is, your SSD). There won't be an sdb or sdc on your system unless you add more disk devices.

Code:
Can I use gparted to do this or should I let Xubuntu lead the way as I install it?
Any modern distribution's installer includes a partition manager similar to gparted. So you can just install Xubuntu and do the partitioning from inside the Xubuntu installer. Note that you'll have to select "manual partition setup" or similar to be able to create partitions for the other OSs that you want to install. By default, most distros suggest a partitioning scheme that only has partitions for one OS.

Code:
I really just don't understand all this.
As I said, do yourself a favor and read up on this topic, it's really easy once you get into it and it's worth the effort, because it will be difficult to change your partitioning scheme once you have your OSs installed!
 
1 members found this post helpful.
Old 08-17-2013, 09:12 AM   #3
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
post output of
Quote:
fdisk -l
 
Old 08-17-2013, 11:34 AM   #4
dasy2k1
Member
 
Registered: Oct 2005
Location: 127.0.0.1
Distribution: Manjaro
Posts: 963

Rep: Reputation: 36
When installying multiple distros i tend to go for creating N small partitions (for / of each distro)
then one large partitian that I usially mount as /mnt/data in all distros,

I then symlink ~/Documents ~/Music ~/Videos etc to /mnt/data/[whatever]

this works slightly better than trying to mount the same /home on various distros as it stops the various distro user config files that are ofthen stored in home from fighting with each other
 
Old 08-17-2013, 11:57 AM   #5
snowday
Senior Member
 
Registered: Feb 2009
Posts: 4,667

Rep: Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411Reputation: 1411
Stick with Crunchbang, and if you are curious about other distros, run them as a Live USB.
 
1 members found this post helpful.
Old 08-17-2013, 03:28 PM   #6
Renorei
LQ Newbie
 
Registered: Aug 2013
Posts: 3

Original Poster
Rep: Reputation: Disabled
@ EDDY1

Quote:
rebel@Netbook:~$ sudo fdisk -l
[sudo] password for rebel:

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000d43c9

Device Boot Start End Blocks Id System
/dev/sda1 * 2048 224860159 112429056 83 Linux
/dev/sda2 224862206 234440703 4789249 5 Extended
/dev/sda5 224862208 234440703 4789248 82 Linux swap / Solaris
And thanks for all the helpful info so far everyone!
 
Old 08-17-2013, 11:06 PM   #7
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
To install another distro you need to free up space from sda1 then add the free space to sda2 which is your extended partition.& install there.
gparted-live cd/usb would do the trick.
 
Old 08-18-2013, 10:53 PM   #8
Renorei
LQ Newbie
 
Registered: Aug 2013
Posts: 3

Original Poster
Rep: Reputation: Disabled
Awesome, thanks guys.

One final question, when I make new partitions with gparted am I going to have to pick the format or will that be automatic when I install stuff on it? If I have to pick should I just make everything ext4? If not which partitions should be which formats?
 
Old 08-19-2013, 01:34 AM   #9
moo-cow
Member
 
Registered: Mar 2006
Distribution: Debian
Posts: 105

Rep: Reputation: 26
Code:
am I going to have to pick the format or will that be automatic when I install stuff on it?
Linux installers usually allow you to format partitions, but you can also pre-format them with gparted, you can do it either way.

Code:
If I have to pick should I just make everything ext4?
Yes, that's a reasonable choice and the default in most modern distros.
 
  


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
iGrabber USB Video Capture Device under Linux (Xubuntu/CrunchBang) nobuntu Linux - Hardware 2 11-09-2012 10:36 PM
several questions re XUBUNTU 10.04 xfce Timmi Ubuntu 2 06-06-2010 09:00 PM
Dual Boot WinXP/Xubuntu partitioning puzzle dkathrens77 Linux - General 3 12-06-2008 02:18 PM
How can I put my computer in a domain ? (Xubuntu) vozke Linux - Software 2 01-25-2008 12:55 AM
Trying to install xubuntu... error messages during partitioning AntidoteSqrd Linux - General 5 06-06-2007 06:31 PM

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

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