The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Mounting Hard Drive

    Discussion in 'Linux Compatibility and Software' started by ZaZ, Apr 28, 2019.

  1. ZaZ

    ZaZ Super Model Super Moderator

    Reputations:
    4,982
    Messages:
    34,001
    Likes Received:
    1,415
    Trophy Points:
    581
    I have a second drive in my HP that I use to store movies and stuff. I've formatted it with NTFS in the past. I'd like to use with a Linux partition, but couldn't find a good guide to show me how. Does anyone have one?

    Secondly, I'm trying to put K3B on the favorites bar, but it doesn't give me the option when I right click. Thanks for any help.
     
  2. rlk

    rlk Notebook Evangelist

    Reputations:
    146
    Messages:
    607
    Likes Received:
    316
    Trophy Points:
    76
    gparted is the most user-friendly way to partition and format disks under Linux. Formatting it as an ext4 filesystem (which is usually the default gparted offers) is probably the best way to go. https://www.howtogeek.com/howto/17001/how-to-format-a-usb-drive-in-ubuntu-using-gparted/ explains what to do.

    As for putting it on the favorites bar, which desktop are you using?
     
  3. ZaZ

    ZaZ Super Model Super Moderator

    Reputations:
    4,982
    Messages:
    34,001
    Likes Received:
    1,415
    Trophy Points:
    581
    Thanks. The Gparted worked. I've used it before. I don't know why I didn't think of it.

    I'm just using whatever comes with Ubuntu 18.04.
     
  4. ZaZ

    ZaZ Super Model Super Moderator

    Reputations:
    4,982
    Messages:
    34,001
    Likes Received:
    1,415
    Trophy Points:
    581
    I got the ext4 partition created, but I can't seem to write anything to it. Paste is grayed out. I think it's a permissions issue, but I've no idea how to fix it.
     
  5. rlk

    rlk Notebook Evangelist

    Reputations:
    146
    Messages:
    607
    Likes Received:
    316
    Trophy Points:
    76
    The partition first needs to be mounted (and added to /etc/fstab) if it hasn't been already. I always do this stuff by hand, as I've been doing so for decades, so I don't know if there's a GUI for it and what that might be on any given Linux distribution.

    It could be a permissions issue; you might need to

    chown <your_user_id> <mountpoint>

    after mounting the filesystem.