03-27-2014, 06:20 AM
Quote:The first thing is "Create Partition Table", do you do this for each disk, or is 1 selection/setting that covers both disks..??
Do it for both separately. As N4RPS pointed out, you could use the GParted program from the live LL disk (Menu -> System -> Partition Drives) to create your partitions before the installation. (Personally, I think that is easier than doing it from the installer.) Here is a good tutorial for using that program: GParted partitioning software - Full tutorial. (You don't set mount points in GParted -- that gets done during installation. To make identifying the partitions easier, give them labels with GParted. You can label them with same names you are going to mount with if you want -- eg. DATA, MEDIA.)
You would still pick "Something else" option when installing. Set the mount points and file system types. Since you made them to desired sizes already, don't change the size. Don't bother checking the box to format partitions -- you will have done that in GParted. After doing that for each partition, set "Device for bootloader installation" to /dev/sda (no partition number after sda). Double-check your entries, then click "Install now".
Quote:Then create the partitions, all ext4, except swap is swap.
Yes, unless you plan on sharing anything on the Data and Media partitions with a Windows computer. If you do, you should format those as NTFS. Windows can't use Linux formatted file systems.
Quote:Also remembering to make sda the boot device.
Yes.
Quote:If I create this structure during install, will the / data & / media partitions be recognised, and the mounts be created to / data & / media .??
I've always added the mount points after the install. Have never tried it during install, so don't really know the answer to that -- but I think you can. If you do though, change the mount points from what you are planning -- especially the /media one. /media already exists and that is where USB's and other removeable media get mounted when you plug them into the computer; so you can't use that. Based on what you're planning to do, I would recommend mounting them to /mnt/DATA and mnt/MEDIA instead. (I like using all caps for the names so they stand out when looking through file system, but you can name them differently if you want.)
Since I've never done mount points during an installation, I don't know if your username will own the mount points or if root will. You may need to change ownership of them after you first bootup, before you can start creating files and linking (or binding) them to your /home/username directory.
Quote:I want to move the "Home Folders" documents to data, music, pictures, videos to media
You'll need to create those directories/(folders) in their respective partitions first. Then:
* If "symlinking" them to home, you would delete the existing ones in /home/username before symlinking the new ones.
* If "binding" the directories to home, you would keep the existing directories.
Quote:I have seen Ubuntu Tweak, I think this allows changing the location, or is there more to it...??, do I still have do edits to fstab.?
Sorry, not familiar with Ubuntu Tweak. If you can set the mount points during the installation, then you probably won't need to change anything in /etc/fstab -- but I'm not sure of that.
Quote:Then, my plan is to do another standard install into some of the free space, I will use this install to test and do anything I'm unsure of, before doing it to the main install, hope this makes sense.?
That's fine. Or you could install it to VirtualBox for testing things.
Bottom Line:
You did your homework well -- the plan looks good! If you decide to go with a separate /home, 5GB should be fine for it and 15GB should be fine for / (root). If you do away with /home partition, then make / = 20GB to be safe. (Chances are good you won't come close to filling it at 20GB.) Everything else looks good the way you have it.
Your plan is essentially the same as what I do. (You're just putting different things in different places than me.) My main desktop has 2 hard drives. First one (/dev/sda) has one operating system with a root partition, room for two more distros' root partitions, and a main DATA partition. The second drive (/dev/sdb) has a swap partition, one partition for ISO files, one for VirtualBox drives, one for data backups, one for /home directory backups (which I never bother doing), and 70GB of free space if I need it down the line for something else. Here is what it looks like:
Code:
sda 8:0 0 298.1G 0 disk
├─sda1 8:1 0 25G 0 part /
├─sda2 8:2 0 1K 0 part
└─sda3 8:3 0 223.1G 0 part /mnt/DATA
sdb 8:16 0 596.2G 0 disk
├─sdb1 8:17 0 9G 0 part [SWAP]
├─sdb2 8:18 0 230G 0 part /media/bill/DataBackup
├─sdb3 8:19 0 1K 0 part
├─sdb5 8:21 0 40G 0 part /mnt/ISOs
├─sdb6 8:22 0 40G 0 part /media/bill/HomeBackups
└─sdb7 8:23 0 200G 0 part /mnt/VBoxHDs
(If you're wondering, sda2 and sdb3 are "extended" partitions.)
The DATA, ISOs and VBoxHDs partitions are automounted on boot and directories in them are bound to directories in the /home/bill directory for any distro installed to sda. Home is part of the root partition because nothing but configuration files is actually located there. (I used to use a separate partition for home as well, but found it to be a waste of space and effort.) The DataBackup and HomeBackups partitions are not mounted on boot -- I only mount them when doing a backup.
If you plan on sticking with one Linux distro using the same desktop environment (Xfce in Linux Lite) for a long time, then having a separate /home partition makes sense. Under that scenario, you are not likely to run into major problems with old config files conflicting with newer program versions that may come with an upgrade. However, if you switch distros or desktop environments, they may pose problems if you try to re-use that /home partition without re-formatting it.
In my case, I don't do it because:
* I would only save 5-10 minutes over just re-installing and using my backups.
* All important data is kept elsewhere and ready to go in the 10 minutes it takes to set the mount points again.
* I keep backups of the select few program configs that I care about.
* I'm inclined to change things often enough and differently enough that I probably wouldn't be able to re-use the /home partition even if I did have it.
Try Linux Beginner Search Engine for answers to Linux questions.