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
Question Full desktop Surfing and Absolute Privacy on the pinebook? Www 2 4,312 08-10-2025, 10:35 PM
Last Post: Pattienner
  Pinebook problem meghancordo 1 1,684 07-24-2025, 07:28 AM
Last Post: mikehenson
Question Printing and scanning documents with pinebook? Www 0 1,616 06-28-2025, 01:25 AM
Last Post: Www
  Pinebook Pro in EU for Sale - €90 jan_vdk 4 4,383 06-19-2025, 02:14 AM
Last Post: shelfaberrant
  Pinebook pro bricked? michaelmoua 2 2,213 03-12-2025, 11:09 AM
Last Post: tophneal
  Use SD to install new OS over pinebook debian Rudy558 10 18,196 03-09-2025, 11:17 AM
Last Post: davisthomas
  Problem: Wi-Fi Connectivity Issues on Pinebook Pro markwood00 1 2,321 02-05-2025, 03:56 AM
Last Post: waylonwesley
  Pinebook Next !spekulation! Surehand53 2 2,880 01-23-2025, 11:49 AM
Last Post: Surehand53
  Pinebook Pro wants a PIN for my bluetooth mouse ColoBill 1 1,993 01-19-2025, 04:38 PM
Last Post: ColoBill
Tongue Yet another Pinebook Pro won't boot thread pinemouth 5 6,971 12-27-2024, 11:38 AM
Last Post: akash3995

Forum Jump:


Users browsing this thread: 1 Guest(s)