[member=7052]pingball57[/member],
GParted = a partitioning program included in LL and on the "live" LL install USB/DVD you made from your ISO file.
Grub = the Linux boot loader
MBR = Master Boot Record (located at the very beginning of a hard drive, USB stick, etc. and is where initial stage of boot loader gets installed). After computer starts and completes its initial P.O.S.T (Power On Self Test), it looks to the MBR for a boot loader to boot the operating system.
If confused by terminology, (which everyone is when first learning Linux), try using search engines, Wikipedia and YouTube to find answers/explanations. A particularly good one is the Linux Beginner Search Engine which I have a link to in my signature line below.
Installing to external, USB-connected hard drive shouldn't be too hard. Very similar to a normal install except best way to do it is by manually creating the partitions on the hard drive, then directing the installer to use those for the installation. It sounds more difficult than it is and I think it would be a good thing for you to do because you'll likely learn a lot.
Basically what you're going to do is boot the computer with same live USB/DVD you used to install before, use GParted to make partitions for the installation on the external drive, then use the "Something Else" (manual install) option from the installer to direct installation to that drive, ensuring nothing accidentally ends up on the internal drive. (Eg. If you told installer to "automatically" install to the external drive, by default it will install the boot loader on the internal drive, which you don't want to happen.)
1. Boot computer with live USB/DVD of LL. (Don't have the external drive plugged in yet.)
2. Go to
Menu -> Settings -> Removable Drive and Media and look under the
Storage tab. Uncheck all of the things listed under "Removable Storage". (This will prevent the system from auto-mounting new partitions you'll be making with GParted later.) Close window when done.
3. Plug external drive into a USB slot.
4. Go to Menu -> System -> Partition Drives to open the GParted program. It will open showing the partitions on your internal drive initially. Look in the upper-right corner of the window to see what the drive is called. It will likely be "
/dev/sda". If you did a standard installation to the computer you'll likely see only two or three partitions listed -- either /dev/sda1 and /dev/sda2; or /dev/sda1, /dev/sda2 and /dev/sda5.
5. Click that upper-right corner with "dev/sda" shown to reveal drop-down menu listing other connected drives. You'll likely see two more entries -- one for the external drive you want to install to and one for the USB stick you're booted from (if that's what you used instead of a DVD). Select the external drive and make a note of what it is called -- eg. /dev/sd
b, or /dev/sd
c.
6. With correct drive now showing in the GParted window, go to
Device -> Create Partition Table -> "msdos" and click OK to make a new partition table on the drive.
7. With "Free Space" highlighted in bottom portion of GParted window, click "New" button along top of interface to make a new partition. In pop-up box:
- Leave start position as it's already pre-filled (probably either "0" or "1" MiB)
- Type of partition = Primary
- Size = 2048MiB (2 GiB) -- this will be your Swap partition during installation.
- Format = Swap space, or Linux-Swap (I forget exact wording)
- Done
8. With "Free Space" highlighted in bottom portion of GParted window, click "New" button again. In pop-up box:
- Leave start position as it's already pre-filled (probably either "0" or "1" MiB)
- Type of partition = Primary
- Size = rest of disk space -- this will be your main Root partition for the installation.
- Format = Ext4 file system
- Done
9. Hit the "Apply" button along top of GParted interface to finalize the creation of your new partitions. Once it completes go ahead and close the window.
10. Start the installer. When you get to screen that asks for Installation Type, choose "Something Else" option.
11. Following page will display both your internal and external drives and their partitions.
12. Choose (click on to highlight) the large partition you made on external drive for the Root partition, then click the "Change" button along bottom of window.
13. In pop-up box:
- Use as = Ext4 file system
- Mount point = /
- Size = leave as you already made it
- Check box to Format the partition
- Done
- Note: sometimes (for whatever reason) it will complain that you changed the size of the partition even though you did not. If that happens, just hit the "Go Back" button and ignore the warning. All will be fine.
14. Choose small partition you made on external drive, click "Change" button and in pop-up box:
- Use as = linux-swap
- No mount point
- Size = leave as is
- Check box to format if that's an option shown
- Done
15.
Very Important -- along bottom of window look for "
Device for boot loader installation" and change it from its default value of "/dev/sda" to whatever your external drive is called (probably
/dev/sdb or
/dev/sdc).
16. Once all that is done, click "Finish" installation and go have a cup of coffee.
17. When installer finishes and asks you to either "reboot" or "continue testing", pick "continue testing". Wait until installer window closes itself, then just do a normal shutdown from main menu.
18. Boot computer again with only the external drive connected via USB, direct computer to boot from USB (if necessary) and your new install should now boot-up. You can do everything on there that you do on a regular internal drive install -- run system updates, install things, etc. Only difference is that it will run slower than if it were connected internally due to slower transfer rates of USB connection.