3

I have just installed a second NVME drive to my laptop and cannot get it to work properly.

I am new to Ubuntu (Linux) and am struggling with the advice on the following tutorial -

https://help.ubuntu.com/community/InstallingANewHardDrive

I have used Gparted to create a single partition from this second drive and can 'see' it within the file manager (Dolphin). I get an 'access denied message when I try to place a file within it however.

Gparted gives the following information about this second drive

  • List item
  • File system: ext4
  • UUID: 36372849-0d3c-40d9-b3b4-dae1139c10f0
  • Mounted on: Mounted on /media/bob9395/36372849-0d3c-40d9-b3b4-dae1139c10f0
  • Path: /dev/nvme1n1p1

Can anyone help me please?

Thanks in advance, Bob

1 Answers1

2

I get an 'access denied message when I try to place a file within it however.

The correct order is:

  • Format the partition and set a mountpoint. "Path: /dev/nvme1n1p1" is not the mountpoint, it is an actual name you provided at the formatting settings.
  • Optional: add the device to /etc/fstab. Otherwise you will need to mount it manually
  • Change the user and owner. from command line:

    sudo chown -R $USER:$USER /mountpoint
    

The last one is to make you the owner. If you have more users change the 2nd $USER to the group those users belong to.

Rinzwind
  • 309,379