LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-02-2011, 11:07 AM   #1
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Rep: Reputation: Disabled
dual boot or chainloading


Hi Im something of newbie to linux. But not computers( my frist one was a VIC 20). Im new to the linux OS. Ive been useing Ubuntu and it works ok for me, better than windows. So now I try to try other distros to find something more to my likeing I have completly removed windows from my system with only Ubuntu on it. So I want to know how can I add another to my system. I do need a step by step guide. I did find some information on this but nothing I was confortable with trying.
 
Old 12-02-2011, 11:53 AM   #2
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,369

Rep: Reputation: Disabled
There are a lot of live-cd with you can try without installing .
They are fully working OS
And yes can have more than one OS installed and using the GRUB menu to decide with Os you're going to boot .
But you did not tell us how much free space you do have on you're HD
Use the command fdisk -l (L lower case ) and post it over here so we do know how you're disk partitioning is
 
1 members found this post helpful.
Old 12-02-2011, 12:02 PM   #3
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Original Poster
Rep: Reputation: Disabled
thanks for the response
Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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: 0x0000ac28

Device Boot Start End Blocks Id System
/dev/sda1 * 2048 468520959 234259456 83 Linux
/dev/sda2 468523006 488396799 9936897 5 Extended
/dev/sda5 468523008 488396799 9936896 82 Linux swap / Solaris

Disk /dev/sdb: 499.4 GB, 499405291520 bytes
255 heads, 63 sectors/track, 60715 cylinders, total 975400960 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: 0x0003d290

Device Boot Start End Blocks Id System
/dev/sdb1 2048 975400959 487699456 7 HPFS/NTFS/exFAT
that is what the fdisk -l reports.
Like I said Im a newbie to linux so Im not sure how to read this.
Thanks for any input you can give
 
Old 12-02-2011, 01:22 PM   #4
ronlau9
Senior Member
 
Registered: Dec 2007
Location: In front of my LINUX OR MAC BOX
Distribution: Mandriva 2009 X86_64 suse 11.3 X86_64 Centos X86_64 Debian X86_64 Linux MInt 86_64 OS X
Posts: 2,369

Rep: Reputation: Disabled
As you are new to linux it might be more easy for you to do the most task in windows assuming that windows is still there .
Defrag you're windows drive being sdb
shrink the windows drive using windows utility to make room for you're other distro
60 Gb is more than enough for you,re new linux distro .
When you install the new linux OS choice the expert or customize partitioning it depends on the linux flavor how they call it and use the free space .
If you're new linux distro did not find the others OS we have to add it manually .
We can shrink sda2 you're original linux partition but it might be that we have to chance fstab too , because we created a new partition on the original linux partition , between the original partition and the swap file being sda5
 
Old 12-02-2011, 02:04 PM   #5
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Original Poster
Rep: Reputation: Disabled
I have no windows on the computer I removed it a long time ago
 
Old 12-02-2011, 03:08 PM   #6
syg00
LQ Veteran
 
Registered: Aug 2003
Location: Australia
Distribution: Lots ...
Posts: 21,127

Rep: Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120Reputation: 4120
In future, use [code] tags when posting output - this is yours from above. Much easier to read:
Code:
Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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: 0x0000ac28

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048   468520959   234259456   83  Linux
/dev/sda2       468523006   488396799     9936897    5  Extended
/dev/sda5       468523008   488396799     9936896   82  Linux swap / Solaris

Disk /dev/sdb: 499.4 GB, 499405291520 bytes
255 heads, 63 sectors/track, 60715 cylinders, total 975400960 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: 0x0003d290

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048   975400959   487699456    7  HPFS/NTFS/exFAT
You have no free space on either disk - compare the last "End" number with the total in the header. "Start" and "end" is a sector number - "Blocks" is in units of 1024 (1kiB).
Best to get something like the gparted livecd (GUI similar to Partition Magic) that allows you to manipulate partitions. It will handle that NTFS fine. Personally I prefer to have all free space in an extended partition, and add logical partitions for new systems.

BTW, chainloading is a means of dual booting. They are not different concepts.
 
Old 12-02-2011, 03:30 PM   #7
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Original Poster
Rep: Reputation: Disabled
ok thanks but im still confused about how to go about it
 
Old 12-02-2011, 05:24 PM   #8
Larry Webb
LQ Veteran
 
Registered: Jul 2006
Location: Crystal Beach, Texas
Distribution: Suse for mail +
Posts: 5,100
Blog Entries: 7

Rep: Reputation: 229Reputation: 229Reputation: 229
Syg00 is right, you need to partition your hds first. The best at this stage would be use your ubuntu live cd and use a program called gparted to make the partitions. Everyone has their own ideas of what size they should be. If doing multiple distros I make most distros:

boot 20 meg
/ 8 gig
swap 2 gig
/home 12 gig

I have one partition 100 gig I use for data

Of course you only need one boot partition.

One swap partition may be used for all your distros.

I chainload because I install the new releases and I do not have to worry about repairing grub on each update.

Last edited by Larry Webb; 12-02-2011 at 05:27 PM.
 
Old 12-02-2011, 06:12 PM   #9
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Original Poster
Rep: Reputation: Disabled
thanks and I did figur out that need to re-partition. But like I said im new to linux and Im not sure how to go about this
 
Old 12-02-2011, 06:23 PM   #10
coolsg5636
Member
 
Registered: Sep 2011
Location: Pune,India
Distribution: RHEL ,CentOS, Fedora
Posts: 100

Rep: Reputation: 25
Here are some usefull links for "gparted usage".

http://www.wikihow.com/Use-Gparted

http://www.ehow.com/how_4442619_use-...partition.html

Choose the drive from which you want to remove some free space from so that you can install your new distro.

-Sandy
 
Old 12-02-2011, 06:40 PM   #11
thezman
LQ Newbie
 
Registered: Dec 2011
Location: New Hampshire USA
Distribution: Ubuntu
Posts: 6

Original Poster
Rep: Reputation: Disabled
thank you for the information Ill check it out
 
  


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
Dual boot Dual hdds, Download of ubuntu 10.1, no vista or dual boot jim d Linux - Newbie 4 11-25-2010 04:18 PM
My FC6 / XP dual boot to FC10 / XP dual boot upgrade plan... is this sane? rylan76 Fedora - Installation 6 02-03-2009 07:31 AM
Grub Chainloading /direct booting ( arising from Boot 100+ systems tutorial) uncle-c Linux - Newbie 2 02-27-2007 03:47 AM
Installing dual Boot 98/Linux - WONT 'LILO' Dual Boot !? L1nux3d Linux - Laptop and Netbook 15 02-11-2006 05:36 AM
Fedora Core 3 Dual Boot, Dual Hard drives, Grub Boot Loader Denali03 Linux - Newbie 1 03-04-2005 01:44 PM

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

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