Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: dual booting (first time advice)

Hybrid View

  1. #1
    Join Date
    Oct 2012
    Location
    somewhere, west of wonder
    Beans
    68
    Distro
    Ubuntu 12.04 Precise Pangolin

    dual booting (first time advice)

    i'm about to dual bot my computer with windows 7. i have a couple questions as i have never done this and don't wish to foul it up.

    1) will i need any software other than whats on the OS disk to dual boot?

    2) will i need to remove my current harddrive (i'm getting another harddrive for 7) to dual boot cleanly to a new harddrive?

    3)will windows 7 automatically partition the harddrive as Ubuntu did?

    4) if not than how do i go about partitioning the harddrive?

    anything i forgot to ask that you think would help would be highly appreciated

    thank you all in advance for all the help from you guys !
    insanity: because its more fun the 9001st time.

  2. #2
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: dual booting (first time advice)

    There are many opinions on your questions.

    First, know that dual booting is dangerous. The setup forces Ubuntu/Linux to work with Microsoft Windows. Ubuntu tries to play nice, but Microsoft assumes they own the entire HDD and sometimes does not play nice with other, non-MS OSes. Linux, Canonical and others try really hard to handle these cases. Sometimes we fail. That can leave you with a computer that will not boot.

    Installing Windows7 AFTER any Linux is likely to cause issues. Linux will not boot. Installing Linux AFTER Windows is probably fine, since Linux is used to working behind MS for booting.

    Windows does not understand the linux file systems. We only hope that it ignores them. Usually that is the case.

    Linux can understand Windows file systems, to a certain extent. It is not perfect support, but usually good enough to allow access to data on NTFS. NTFS does not support the same permissions that Linux file systems support AND that Linux requires. File permissions are critical to multi-user operating systems like Linux.

    There are many opinions about partitioning HDDs. With the relatively new changes to HDDs and new format requirements to support large HDDs, but Microsoft and Linux tools are not perfect. The rule of thumb is to use the OS tools for the partition target user (Windows for Windows AND Linux tools for Linux partitions). The best recommendation that I can make about this is to use either parted or gparted for partitioning on Linux systems. Do not use fdisk sfdisk or cfdisk - they were created for older 512b sector HDDs which are not commonly sold today. To modify a partition, you cannot be running an OS on that partition, so I use a special gparted ISO that I boot from a USB-Flash drive under Yumi (from the unetbootin guys).

    When partitioning for Linux and Windows7, here are a few ideas:
    * Use GPT partitioning, not MBR, unless you plan to run older OSes like WinXP.
    * Linux can boot from and access either primary or logical partitions.
    * With GPT, over 100 primary partitions are allowed.
    * With MBR, only 4 primary partitions are allowed.

    I think Windows need 2 primary partitions - to support 4k sector HDDs with GPT. Let Windows create those.

    For Linux, you want 3 partitions, perhaps 4.
    * / - where most of the OS and applications go. 10-20G is fine for this.
    * swap - like the Windows swap file, a place to have 1-2G only.
    * /home - where your personal settings, documents and programs reside. If you place large files elsewhere, then 5-15G is plenty ... unless you are a Java programmer. Then you'll need lots more.
    * If you want to share data with Linux and Windows, you probably want an NTFS Data partition. This is where all those big files should be placed too - videos, music, etc... Know that file permissions mean next to nothing on NTFS partitions.

    This took me awhile to write. Hopefully others have commented too.

  3. #3
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: dual booting (first time advice)

    Some good info from TheFu.

    I use gpt for my Linux drives, but Windows will only boot from gpt with UEFI, so for Windows you may need MBR(msdos) partitioning.

    If you have a full Windows install it will just install to an empty drive. But be sure to set BIOS to boot from that drive before installing or it may put its boot drives on the other drive.

    I prefer to keep each system on separate drives. And keep Windows as the first partition(s) on the sda drive. Windows will work with other configurations, but it works better if it still thinks it is the only system.

    I recommend the separate shared data NTFS partition for any data you may want in both systems. Set Windows as read-only from Ubuntu.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  4. #4
    Join Date
    Dec 2012
    Beans
    5

    Re: dual booting (first time advice)

    I have just recently done exactly what you are going to do - one difference being you probably know a lot more about this than I did (or do!). I can tall you I just jumped in and did the install without any prep on my laptop - everything went fine and I can boot up now on Windows 7 or Ubuntu. Soon afterward I found my Ubuntu space was rapidly becoming too small - so I simply used the partition manager to re-size the partitions that resulted from the default install. If you can, my suggestion is to give Ubuntu 5G headroom. Good luck - I'm using Ubuntu almost exclusively now and probably won't look back!

  5. #5
    Join Date
    Mar 2007
    Location
    Denver, CO
    Beans
    7,958
    Distro
    Ubuntu Mate 16.04 Xenial Xerus

    Re: dual booting (first time advice)

    A few questions that I have to ask you since I've done dual boots with winxp, vista, and 7.

    Are you planning on using 1 or 2 hard-drives? 2 hard drives are the most secure in case something goes wrong, however with laptops this is a no go.

    Most tutorials will tell you to install Windows first and Ubuntu last. However the thing you need to be careful about is overwriting the windows MBR if this is important. Ubuntu will by default overwrite the MBR (Master Boot Record) which will in turn run grub. Its possible to do it the other way around (add Linux to Windows boot menu and do it that way). I've done it both ways, however it just depends on your setup and if their are any hardware constraints that will get in the way.

    Do yourself a favor and readup on this before you do anything -- particularly if everything is going on one hard drive or disc. It will determine the way you partition. I usually do a /boot partition, / (root partition or system partition, /home partition and /swp partition however that's just my preference. Your's might be different. You are going to have to do some reading. Within Windows you can shrink your windows partition if needed and then I usually use GParted to add and configure the windows partition.

    Good luck and don't be afraid to ask questions. What you want to do is very easy, however I've found that in the end sometimes I messed things up. And this usually either deals with overwrite of the MBR, not making the correct partitions, or making the partitions either too big or too small when I run out of disc space months later.

  6. #6
    Join Date
    Oct 2012
    Location
    somewhere, west of wonder
    Beans
    68
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: dual booting (first time advice)

    Quote Originally Posted by kevdog View Post
    A few questions that I have to ask you since I've done dual boots with winxp, vista, and 7.

    Are you planning on using 1 or 2 hard-drives? 2 hard drives are the most secure in case something goes wrong, however with laptops this is a no go.

    Most tutorials will tell you to install Windows first and Ubuntu last. However the thing you need to be careful about is overwriting the windows MBR if this is important. Ubuntu will by default overwrite the MBR (Master Boot Record) which will in turn run grub. Its possible to do it the other way around (add Linux to Windows boot menu and do it that way). I've done it both ways, however it just depends on your setup and if their are any hardware constraints that will get in the way.

    Do yourself a favor and readup on this before you do anything -- particularly if everything is going on one hard drive or disc. It will determine the way you partition. I usually do a /boot partition, / (root partition or system partition, /home partition and /swp partition however that's just my preference. Your's might be different. You are going to have to do some reading. Within Windows you can shrink your windows partition if needed and then I usually use GParted to add and configure the windows partition.

    Good luck and don't be afraid to ask questions. What you want to do is very easy, however I've found that in the end sometimes I messed things up. And this usually either deals with overwrite of the MBR, not making the correct partitions, or making the partitions either too big or too small when I run out of disc space months later.
    i'm going to be using a separate, clean harddrive to install windows 7 onto.

    will i be needing to make all of the above mentioned partitions when using a separate harddrive?
    of not than what partitions should i make on the harddrive?
    and lastly, will the partitions need to be made before or after the installation of windows 7?
    insanity: because its more fun the 9001st time.

  7. #7
    Join Date
    Jan 2013
    Location
    Another Dimension
    Beans
    164
    Distro
    Kubuntu 12.10 Quantal Quetzal

    Re: dual booting (first time advice)

    i'm going to be using a separate, clean harddrive to install windows 7 onto.

    will i be needing to make all of the above mentioned partitions when using a separate harddrive?
    of not than what partitions should i make on the harddrive?
    and lastly, will the partitions need to be made before or after the installation of windows 7?
    If using a separate hard drive as you have said (and that is how I do it)

    unplug unbuntu drive
    mount new drive into sata0 so it is sda (if you want to use windows back up it has to be the first drive)
    run the windows install (whether you create a single partition for the whole drive or part of the drive a small 100mb partition will be created and labelled as system reserved at the beginning of the drive)

    reconnect ubuntu and using BIOS tell it to always boot from ubuntu as primary boot device

    When you load ubuntu do the
    Code:
    grub-mkconfig
    in the terminal and enjoy.

    When wanting to do windows backup from the BIOS select single boot option and select the windows drive to boot.

  8. #8
    Join Date
    Oct 2012
    Location
    somewhere, west of wonder
    Beans
    68
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: dual booting (first time advice)

    Quote Originally Posted by furything View Post
    If using a separate hard drive as you have said (and that is how I do it)

    unplug unbuntu drive
    mount new drive into sata0 so it is sda (if you want to use windows back up it has to be the first drive)
    run the windows install (whether you create a single partition for the whole drive or part of the drive a small 100mb partition will be created and labelled as system reserved at the beginning of the drive)

    reconnect ubuntu and using BIOS tell it to always boot from ubuntu as primary boot device

    When you load ubuntu do the
    Code:
    grub-mkconfig
    in the terminal and enjoy.

    When wanting to do windows backup from the BIOS select single boot option and select the windows drive to boot.
    why do i have to do the code/what does it do?
    insanity: because its more fun the 9001st time.

  9. #9
    Join Date
    Mar 2010
    Location
    Squidbilly-Land
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: dual booting (first time advice)

    Quote Originally Posted by majorburt View Post
    i'm going to be using a separate, clean harddrive to install windows 7 onto.

    will i be needing to make all of the above mentioned partitions when using a separate harddrive?
    of not than what partitions should i make on the harddrive?
    and lastly, will the partitions need to be made before or after the installation of windows 7?
    There is only 1 boot sector for each HDD, but a PC BIOS only boots from 1 drive. If you plan to have both drives connected at the same time, then you'll need to have both Windows and Linux be able to boot.

    Also, MBR is for older hard drives. If you have a newer HDD, then it is likely to be 4K sectors, not 512b sectors. It is important for performance in both Windows AND Linux that you get the sectors aligned on 4K boundaries. While you can use MBR for drives smaller than 2TB, that might not be the best answer. For drives larger than 2TB, you must use GPT partitioning.

    OTOH, if you will physically disconnect each drive when the other is connected and will be changing the BIOS to point to the boot sector of the HDD between changes, then you can ignore what I've said.
    Last edited by TheFu; January 31st, 2013 at 07:42 PM. Reason: Correction.

  10. #10
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: dual booting (first time advice)

    With multiple drives and multiple installs I prefer to keep each boot loader on the same drive as the install, but set BIOS to boot from grub since grub is designed to multiple boot. That way when one drive fails, I should be able to change BIOS and boot other drive.

    If you have drives disconnected when you install Ubuntu, grub cannot find other systems. If you have the drives connected you have to use Something Else or manual install to have the option on where to install the grub2 boot loader. But then you also have to manually specify partitions, formats & sizes.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •