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

Thread: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

  1. #1
    Join Date
    Jun 2020
    Beans
    83
    Distro
    Ubuntu 20.04 Focal Fossa

    Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    My computer has both SSD and HDD so I am installing root as well as home in SSD. Now for storing media and other large files I will be using HDD. Should I enable automatically mounting of HDD?
    Also do I have to create swap area in whichever partition/partitions I will be installing Ubuntu?

  2. #2
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,821
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Automatically mounting your hard drive will be the easy solution. Create an empty directory to use as a mountpoint in whatever location you consider convenient (there are some directories to avoid) and setup /etc/fstab to mount it automatically at boot. You can do that after installation.

    There's no need to create a swap area. If you don't, the installer will automatically create a swap file in the root partition. But you can create a swap partition yourself, if you prefer.

  3. #3
    Join Date
    May 2010
    Beans
    3,246

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    If you need frequent access to the data then yes. Otherwise you keep it unmounted (like for backup) so that the storage is offline and cannot be touched. As stated above its a case of making an empty folder then adding a line in /etc/fstab
    If it's a permanent drive in the system then I recommend using Ext4 or some other Linux file system and not FAT32 or NTFS

  4. #4
    Join Date
    Jun 2020
    Beans
    83
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Do I need to create the empty directory during installation or after installation?

  5. #5
    Join Date
    May 2013
    Location
    Galiza
    Beans
    4,009
    Distro
    Ubuntu

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Why do you think you need an "empty directory"?

    The only situation in which a very small (1-2MB) unformatted partition, not directory, is a requirement is when installing Ubuntu or other Linux distro in BIOS/Legacy mode in a GPT drive and said partition is used in lieu of the MBR to store the bootloader.

    This very specific scenario is very likely NOT applicable to yours. If the goal is dual-booting with a preinstalled Windows in any modern computer (as in from at least 2012 or newer) then Windows is already installed in UEFI mode, as it should be, therefore Ubuntu should also be installed in UEFI mode, also as it should be, in ANY UEFI enabled hardware (again, anything from the last decade).

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

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Your HDD does need to be partitioned with gpt and you have to have to create partition(s) to mount them.

    If a new user often easier to have separate /home on HDD and / (root) on SSD.
    But I prefer to have /home inside / on SSD as it also has your hidden user configuration files that are regularly loaded. Data is not regularly loaded, so being on slower HDD is not normally an issue. Some dual booting like both a shared NTFS data partition for any data they want to share and ext4 data partition(s).

    Both one very large partition can create issues for backup or recovery when large, but too many small partitions can create issues where you have a lot of unused space in one partition and no space in another. Until you have used system for a while you may not know.

    I still have some allocated space on both SSD & HDD for future use. But I have good idea of current sizes of my systems & data and allowed for what I expected as normal growth (primary pictures of grandkids & hopefully vacations again).

    When you create /home on HDD, it automatically creates a fstab entry to mount it, gives it a mount point ( /home) and gives you ownership & permissions to use it.
    If you create a data partition you have to create your own mount point or label, add an entry to use that mount in fstab and set ownership & permissions so you can use it. Many threads with details & most is copy & paste, with minor adjustments for your specific settings.
    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.

  7. #7
    Join Date
    Dec 2006
    Location
    France
    Beans
    1,105
    Distro
    Xubuntu

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Quote Originally Posted by CelticWarrior View Post
    Why do you think you need an "empty directory"?
    Just to clarify: the "empty directory" is referring to ActionParsnip's advice. Indeed, the mounting point of the partition has to be an empty folder.
    Ubuntu user # 14396

  8. #8
    Join Date
    Jun 2020
    Beans
    83
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Can you explain step-by-step how to create a data partition where I can read as well as write? I have little knowledge on these things so I am unable to understand what to do in order to make a data partition.
    Last edited by EngineerStrange; January 16th, 2021 at 07:05 PM. Reason: NA

  9. #9
    Join Date
    Aug 2011
    Location
    52.5° N 6.4° E
    Beans
    6,821
    Distro
    Xubuntu 22.04 Jammy Jellyfish

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    Quote Originally Posted by EngineerStrange View Post
    Do I need to create the empty directory during installation or after installation?
    Quote Originally Posted by Impavidus View Post
    Create an empty directory to use as a mountpoint in whatever location you consider convenient (there are some directories to avoid) and setup /etc/fstab to mount it automatically at boot. You can do that after installation.
    The bold word "that" refers to the entire preceding sentence.

    Instructions:
    1: Make a plan. What partitions do you need, on which drive do you want them, where do you mount them.
    2: Use the partitioning tool on the live disk to create those partitions. Every live disk of every Ubuntu flavour (and most other Linux distros) has a partitioning tool (usually gparted) built in.
    3: During installation, tell the installer which partition to use at which mountpoint. If the mountpoint you want is not listed, skip that partition.
    4: After installation, add the partitions you skipped in step 3 to your /etc/fstab and create their mountpoints as empty directories.

    More about fstab: https://help.ubuntu.com/community/Fstab

    Some knowledge about file permissions may come in handy: https://help.ubuntu.com/community/FilePermissions

    On a Linux-only computer, only use native Linux partitions. Stick to ext4 partitions, unless you really know what you're doing.

  10. #10
    Join Date
    Dec 2006
    Location
    France
    Beans
    1,105
    Distro
    Xubuntu

    Re: Should I enable mounting of HDD automatically in a computer with SSD and HDD?

    At least with ubiquity, when I install Xubuntu, the mounting points do not yet exist but are created during installation according to the path provided. So just the path during the partitioning and it will be fine.
    Note that you can run gparted from the live usb without installing the whole system. Just launch the live usb as you were merely testing it, then launch gparted from the menu.
    Then either update your fstab or use the "disk" utility for that.
    Ubuntu user # 14396

Page 1 of 2 12 LastLast

Tags for this Thread

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
  •