Unable to mount NVME (PineBook Pro)
#5
Just an FYI for folks that have installed a new NVME drive, but don't know what to do with it.

It needs to be partitioned, formatted and mounted for you to use it.  If you're not used to installing drives on computers, this may not be obvious.

Here is a decent tutorial of how to do that:  https://www.digitalocean.com/community/t...s-in-linux

And here are the commands I used (these are mine only, and may be different for you):

1. Make sure it's recognized by the computer: 

#>   lsblk

(my output):   nvme0n1      259:0    0 931.5G  0 disk

2. Select your partitioning standard (extremely likely you should use GPT):

#> sudo parted /dev/nvme0n1 mklabel gpt

3.  Create the partition (ext4 is the most likely format, and you may want to just use a single partition).  Note that the partition has a slightly different name (nvme0n1p1) than the mount point (nvme0n1):

#> sudo parted -a opt /dev/nvme0n1p1 mkpart primary ext4 0% 100%

4. Create a filesystem: 

#> sudo mkfs.ext4 -L  datapartition  /dev/nvme0n1p1

5. Mount the filesystem:

#> sudo mkdir -p /mnt/data
#> sudo mount -o defaults  /dev/nvme0n1p1  /mnt/data

6. Add mount to fstab, so that it happens on boot:

#> sudo nano /etc/fstab


Code:
LABEL=datapartition /mnt/data ext4 defaults 0 2


Messages In This Thread
RE: Unable to mount NVME (PineBook Pro) - by Phillip Bell - 09-13-2020, 11:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Updated Pinebook Pro? tantamount 2 1,065 06-20-2026, 10:14 AM
Last Post: tantamount
  Pinebook pro bricked? michaelmoua 4 6,608 05-26-2026, 02:20 AM
Last Post: Anthona
Thumbs Up Finally got Kali working on my Pinebook Pro! qingss0 0 1,002 04-04-2026, 08:00 AM
Last Post: qingss0
  dead Pinebook - help please RicTor 3 2,078 03-26-2026, 04:22 PM
Last Post: williamcorlin
  Pinebook problem meghancordo 2 5,561 03-18-2026, 08:58 AM
Last Post: RicTor
  Pinebook Pro in EU for Sale - €90 jan_vdk 5 9,126 02-09-2026, 12:50 AM
Last Post: Anthona
  Pinebook Pro for sale rfm83 0 1,214 11-08-2025, 09:22 AM
Last Post: rfm83
Question Full desktop Surfing and Absolute Privacy on the pinebook? Www 1 7,899 08-02-2025, 08:55 PM
Last Post: KC9UDX
Question Printing and scanning documents with pinebook? Www 0 4,500 06-28-2025, 01:25 AM
Last Post: Www
  Use SD to install new OS over pinebook debian Rudy558 10 27,548 03-09-2025, 11:17 AM
Last Post: davisthomas

Forum Jump:


Users browsing this thread: 1 Guest(s)