LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 05-04-2005, 08:26 AM   #1
fstreed
Member
 
Registered: Aug 2002
Location: Oregon
Distribution: SuSE 11.3
Posts: 108

Rep: Reputation: 15
partition sizes


I am getting ready to load SuSE 9.2. It will be a dual boot system, I have two Maxtor 80 Gig HDDs with one of then (hda) set up with Win 2000 on one partition with NTFS and another partition set up as FAT 32. I want to load SuSE on the second HDD, hdb. I was thinking of setting it up with a 2 GIG swap partition, a 20 GIG / partition, and the rest as a HOME partition. This will be a home desk top computer, no server duties, no gaming. Does this partition scheme seem about right? What about other partitions such as USR, etc?

Also, which file system? Reiser or EXT3?
 
Old 05-04-2005, 11:26 AM   #2
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Swap sounds a little over-sized. How much RAM do you have? I am using 512 MB swap at 512 MB RAM.
The amount you need for / could also be a little smaller unless you want to install everything I have installed a lot and still do not have more than 9GB. I don't think a partition for /usr is required.
 
Old 05-04-2005, 11:29 AM   #3
SuSE05
Member
 
Registered: Apr 2005
Posts: 46

Rep: Reputation: 15
I've just got three. /root /swap and /usr (the largest of them all). I don't think you really need more than that.

And, your swap should be the same size, or smaller than the amount of RAM you have.
 
Old 05-04-2005, 11:37 AM   #4
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Quote:
I've just got three. /root /swap and /usr (the largest of them all).
Why /root? Or do you mean '/' (root)?
 
Old 05-04-2005, 02:59 PM   #5
SuSE05
Member
 
Registered: Apr 2005
Posts: 46

Rep: Reputation: 15
yes... I mean "/" (root)
 
Old 05-04-2005, 04:00 PM   #6
piratu
Member
 
Registered: Oct 2003
Location: FRANCE
Distribution: SLED 10
Posts: 98

Rep: Reputation: 15
Re: partition sizes

Quote:
Originally posted by fstreed
I am getting ready to load SuSE 9.2. It will be a dual boot system, I have two Maxtor 80 Gig HDDs with one of then (hda) set up with Win 2000 on one partition with NTFS and another partition set up as FAT 32.
... 80Gb FAT32 .... what a waste of space

better do both windoze partitions on one disk and SuSE's /boot too like that :

/dev/hda1 /boot EXT2 100Mb * active
/dev/hda2 c:\ NTFS 20Gb
/dev/hda3 d:\ FAT32 ~60Gb (the rest of space

Quote:
Originally posted by fstreed I want to load SuSE on the second HDD, hdb. I was thinking of setting it up with a 2 GIG swap partition, a 20 GIG / partition, and the rest as a HOME partition. This will be a home desk top computer, no server duties, no gaming. Does this partition scheme seem about right? What about other partitions such as USR, etc? [/B]
now, on the second disc I sugest you this :

/dev/hdb1 swap 1Gb
/dev/hdb2 / ReiserFS 20Gb
/dev/hdb3 /personaldata ReiserFS ~60Gb

/personaldata use it as your d:\ in windows, /home will be in / partition (like c:\documents and settings\your_user_name)

Quote:
Originally posted by fstreed Also, which file system? Reiser or EXT3? [/B]
ReiserFS for everything except :
/boot EXT2 - where is the case (for safety reasons)
swap - it has the swap filesystem
 
Old 05-04-2005, 06:28 PM   #7
fstreed
Member
 
Registered: Aug 2002
Location: Oregon
Distribution: SuSE 11.3
Posts: 108

Original Poster
Rep: Reputation: 15
Re: Re: partition sizes

Quote:
Originally posted by piratu
... 80Gb FAT32 .... what a waste of space

better do both windoze partitions on one disk and SuSE's /boot too like that :

/dev/hda1 /boot EXT2 100Mb * active
/dev/hda2 c:\ NTFS 20Gb
/dev/hda3 d:\ FAT32 ~60Gb (the rest of space



now, on the second disc I sugest you this :

/dev/hdb1 swap 1Gb
/dev/hdb2 / ReiserFS 20Gb
/dev/hdb3 /personaldata ReiserFS ~60Gb

/personaldata use it as your d:\ in windows, /home will be in / partition (like c:\documents and settings\your_user_name)



ReiserFS for everything except :
/boot EXT2 - where is the case (for safety reasons)
swap - it has the swap filesystem
On the first HDD I have it set up as C: 25 GIG NTFS, and D: as 55 Gigabyte FAT32, so I am real close to what you recommend there.

Do I have to manually set up a boot partition on hda, or will it do it for me?

Thanks all for the help.

Last edited by fstreed; 05-04-2005 at 06:29 PM.
 
Old 05-04-2005, 07:29 PM   #8
piratu
Member
 
Registered: Oct 2003
Location: FRANCE
Distribution: SLED 10
Posts: 98

Rep: Reputation: 15
the boot partiton on hda must be done manually.

you have two options :

1. the DANGEROUS one : installing LILO/GRUB on MBR (dangerous : you'll never know when your windows will erase the MBR and rewrite it and then you have to restore your LILO/GRUB - never done that because I never install the boot loader on MBR only if there is only Linux on that machine)

2. the safest one, resize your /dev/hda1 NTFS to gain arround 100Mb of free space at the begining of the disc (I used Acronis Disc Director 9 to do that flawlessly), /dev/hda1 becames /dev/hda2 and so on ... and create on the free space the /dev/hda1 of 100Mb as EXT2 which you'll mount it as /boot, make it active and intall the boot loader LILO or GRUB on it and the rest of Linux's partitons on the second disc

now you can proceed to install your SuSE

good lock

PS : when resizing there's allways a chance to loose your data, it never happened to me with Acronis Disc Director ... but I have firends the had that with PQ Magic

Last edited by piratu; 05-04-2005 at 07:32 PM.
 
Old 05-05-2005, 02:51 AM   #9
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
piratu:
I don't understand why a /boot partition is required or desired. Could you please explain?
 
Old 05-06-2005, 01:21 PM   #10
piratu
Member
 
Registered: Oct 2003
Location: FRANCE
Distribution: SLED 10
Posts: 98

Rep: Reputation: 15
Quote:
Originally posted by abisko00
piratu:
I don't understand why a /boot partition is required or desired. Could you please explain?
the /boot partition is not required nor desired, is optional, a suggestion! this is my 2 cents tip when multibooting to avoid the installation of linux's boot loader on MBR!

if you choose not to create a /boot you'll find it on your / root partition and you'll have to install the Linux's boot loader there, ofcourse you have to be sure that's a primay partition and in the boundaries of the first 1024 cylinders (for safety reasons, on old systems)

for more informations read the fantastic manual
 
Old 05-07-2005, 08:58 AM   #11
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Quote:
this is my 2 cents tip when multibooting to avoid the installation of linux's boot loader on MBR!
I see! How do you do that?
 
  


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
Partition sizes?? coldsalmon Linux - Newbie 6 03-18-2005 03:43 PM
Partition sizes for me Doctor Orange Linux - Newbie 2 08-13-2004 09:50 AM
Partition sizes? murbz Linux - Software 3 07-22-2004 08:43 AM
Partition Sizes JonyKyte Linux - Newbie 12 12-23-2003 07:48 AM
partition sizes scrambled2k3 Linux - Newbie 7 02-21-2003 02:32 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

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