LinuxQuestions.org
Help answer threads with 0 replies.
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 01-29-2005, 12:01 PM   #1
ronlon
LQ Newbie
 
Registered: Jan 2005
Location: Milwaukee, Wisconsin
Distribution: Mandriva
Posts: 26

Rep: Reputation: 15
Dual Booting WinXP/SUSE 9.2pro?


Hi I have just built a new system and I would like to start becomming an avid linux user. I've played around with some live CD's and I am impressed.
So anyway, I would like to install both OS's winXPpro and SuSE 9.2 pro, however, I am not sure how big to create the partitions on my HD (160gb). Should I make two small partitions (eg. 5 or so gb) for the OS's and the programs associated with them and leave the rest of the HD for storing files which i can access from both OS's, is that possible? Or should I just partition the HD in half or some ratio of how much I feel I'll be using one or the other OS?
Please some advice would be nice. Thank You.
 
Old 01-29-2005, 12:28 PM   #2
rsmith
Member
 
Registered: Jan 2005
Location: Arizona
Distribution: SuSE 9.3 Pro / Slackware 10.1 / WBEL 3
Posts: 57

Rep: Reputation: 15
I like the idea of setting aside smaller partitions for the OS's and leaving the rest as shared storage. Since you have a large drive I'd recommend each OS getting about 8 gigs to allow for updates, package installation and the like. Keep in mind that Windows must be installed first -- otherwise it will erase your linux bootloader and installation. Also, when you format, you have to format your Windows partitions as FAT32, otherwise all you can is mount your data as READ-ONLY in Linux. There is now NTFS write support yet.

My company is transitioning to a complete Linux shop utilizing SuSE 9.2 Pro for distrobution. We do offer dual-boot with Windows XP for the hesitant users and this will tend to be our method of doing things when it comes to addressing the dual-boot issues.

Good luck and should you have any questions just ask!
 
Old 01-29-2005, 12:29 PM   #3
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
If you know that you will shift a lot of data between Windows and Linux, your idea with a separate data partition is good. On the other hand, Linux likes to have its /home partition formated with a Linux-format. FAT32 does not work very well (if at all).

I guess there are as many well-reasoned suggestions as suggestors, so I tell you about my solution:

Take as much space as you think you may need for Windows on one partition for programs and data. I would recommend not to use too much, since you won't work with Windows much longer

Leave the rest unpartitioned (cause this is better to be done with Yast). Devide Linux into four partitions:

1. 4-8GB for the OS and software (depending on your needs)
2. 500MB for swap (the Linux pagefile)
3. 1-2GB as FAT32 formated partition for data exchange with Windows
(Linux can read NTFS, but not write. Windows data is therefore alway accessible, even without this exchange partition)
4. the rest for /home (your data)
 
Old 01-29-2005, 12:37 PM   #4
rsmith
Member
 
Registered: Jan 2005
Location: Arizona
Distribution: SuSE 9.3 Pro / Slackware 10.1 / WBEL 3
Posts: 57

Rep: Reputation: 15
What I do on my personal machine's at home is:

1. share out a folder on my Windows XP machine that serves as a drop box. Anything I want shared to Linux will be dropped in there.

2. create a smbmnt folder inside my home directory on my Linux machine.

3. smbmount -t smbfs -o username=user,password=pass //server/share /home/smbmnt

By doing this I can move data from my Windows XP machine to my laptop, and vice-versa. My XP box is formatted with NTFS but since I am not editing files directly from the share -- instead I move them to categorized folders in Linux -- I don't have to worry about the lack of NTFS write support or insufficient permissions. Same scenario applies for when I move files from Linux to Windows with NTFS because the files will inherit the permissions of their parent folder.

So far this method is working flawlessly for my needs and it saved me hours of time of having to burn CDs just for data transfer.
 
Old 01-29-2005, 12:51 PM   #5
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Quote:
...So far this method is working flawlessly for my needs and it saved me hours of time of having to burn CDs just for data transfer.
But I think you should mention that you need two machines for this scenario. Doesn't apply to a dual-boot system.

[HIJACKMODE]: Would it be possible to exchange data through SAMBA, if you run windows on VMware ? [/HIJACKMODE]
 
Old 01-29-2005, 01:29 PM   #6
RodimusProblem
Member
 
Registered: Dec 2004
Distribution: Knoppix 3.6
Posts: 135

Rep: Reputation: 15
Here's how I set my system up.

Note the 2.6 GB vfat partition: a simple work around the NTFS problem using leftover space.
 
Old 01-29-2005, 01:38 PM   #7
ronlon
LQ Newbie
 
Registered: Jan 2005
Location: Milwaukee, Wisconsin
Distribution: Mandriva
Posts: 26

Original Poster
Rep: Reputation: 15
So, first, what is the 500mb swap file (linux page file) for?
Second, is the 2-3 gb FET32 partition a partition to save linux files to when you know you will want to access them from windows? and can you save a file that was originally saved in a linux partition to the 2-3 gb FET32 partition by simply doing a "save to"? or is there more to it?
 
Old 01-29-2005, 01:45 PM   #8
abisko00
Senior Member
 
Registered: Mar 2004
Location: Munich
Distribution: Ubuntu
Posts: 3,517

Rep: Reputation: 58
Quote:
So, first, what is the 500mb swap file (linux page file) for?
Swap is a part of the harddisk that may be used as memory. But I see that you have sufficient RAM, so it may not be used ever. On the other hand, one never knows how much RAM a badly programmed application will use.
Quote:
Second, is the 2-3 gb FET32 partition a partition to save linux files to when you know you will want to access them from windows? and can you save a file that was originally saved in a linux partition to the 2-3 gb FET32 partition by simply doing a "save to"? or is there more to it?
Yes and yes and no, there is not more to it! You may need to adjust one parameter in /etc/fstab once, to give all users on your system access rights. But have a try first
 
Old 01-29-2005, 01:57 PM   #9
RodimusProblem
Member
 
Registered: Dec 2004
Distribution: Knoppix 3.6
Posts: 135

Rep: Reputation: 15
Quote:
So, first, what is the 500mb swap file (linux page file) for?
I get better performance out of this computer with a swap partition over 1.2 GB, so I just made it 5 GB to make the partitions a little more even. I have 256 MB of ram, but access speed isn't as high as it should be.

Quote:
Second, is the 2-3 gb FET32 partition a partition to save linux files to when you know you will want to access them from windows?
Yes, Windows can't read ext2 partitions, and Linux can't write to NTFS partitions, but both can read & write FAT32 partitions.


Quote:
and can you save a file that was originally saved in a linux partition to the 2-3 gb FET32 partition by simply doing a "save to"? or is there more to it?
There's a tiny bit more. I have to mount hda9 to access it in Linux. Knoppix makes that easy with a file I can click to mount it and display it in one step. It's just a drag 'n drop of the files then. In other cases, mount /dev/hda9 /mnt/hda9 does the mounting. Once mounted I don't have to mount it again untill I reboot or manually unmount it.

Last edited by RodimusProblem; 01-29-2005 at 01:58 PM.
 
Old 01-29-2005, 02:45 PM   #10
ronlon
LQ Newbie
 
Registered: Jan 2005
Location: Milwaukee, Wisconsin
Distribution: Mandriva
Posts: 26

Original Poster
Rep: Reputation: 15
So should I create a NTFS or FAT32 partition for the winXP OS and programs?
 
Old 01-29-2005, 02:54 PM   #11
RodimusProblem
Member
 
Registered: Dec 2004
Distribution: Knoppix 3.6
Posts: 135

Rep: Reputation: 15
Quote:
So should I create a NTFS or FAT32 partition for the winXP OS and programs?
Windows XP unfortunatly doesn't give you that option. The partition the OS and software is on will be NTFS. There's no way to change that.

You'd need a small FAT32 partition in addition to the partition Windows is run from.
 
Old 01-29-2005, 04:39 PM   #12
rsmith
Member
 
Registered: Jan 2005
Location: Arizona
Distribution: SuSE 9.3 Pro / Slackware 10.1 / WBEL 3
Posts: 57

Rep: Reputation: 15
You can reformat the NTFS partition as FAT32. I think this is done through Disk Management.
 
Old 01-29-2005, 05:54 PM   #13
leadazide
Member
 
Registered: Apr 2004
Location: Germany
Distribution: SuSE 11.0, Ubuntu 7.10
Posts: 390

Rep: Reputation: 30
Quote:
Originally posted by RodimusProblem
Windows XP unfortunatly doesn't give you that option. The partition the OS and software is on will be NTFS. There's no way to change that.

You'd need a small FAT32 partition in addition to the partition Windows is run from.
No, you can install Evil OS on a FAT32 partition, so you don't need an NTFS partition at all.
 
Old 01-29-2005, 06:16 PM   #14
floppywhopper
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Mageia , Centos
Posts: 644
Blog Entries: 2

Rep: Reputation: 136Reputation: 136
I generally give Windows three partitions,
C Drive for Windows & programmes
D Drive for Data
E Drive for windows, HW drivers etc backups
on a drive that big ( 160 gig )
your E would only need to be 5 -10 g
C about the same
and D whatever - depending on what you are going to put in there
however if you are doing any video editing
either make C bigger or create an F drive for that
thats what I generally do.

Suse on the other hand should be able to figure it out for itself
unless you're into custom partitioning

HTH
live long and prosper
floppy
 
  


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
Dual boot WinXP/Debian, grub error booting WinXP ChemBot Linux - General 5 02-22-2007 05:13 PM
Dual-booting MEPIS and WinXP, I want Grub to default to WinXP jjf Linux - Newbie 8 01-19-2006 04:27 AM
Some questions about WinXP dual-booting. Gag Halfrunt Linux - Newbie 3 12-31-2004 01:12 AM
Dual booting winxp/suse Multra Linux - Newbie 4 08-14-2004 05:17 PM
Dual Booting WinXP and Suse 9.1 gazzerh Linux - General 4 07-12-2004 10:14 AM

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

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