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
  Pinebook pro bricked? michaelmoua 2 539 03-12-2025, 11:09 AM
Last Post: tophneal
  Use SD to install new OS over pinebook debian Rudy558 10 14,365 03-09-2025, 11:17 AM
Last Post: davisthomas
  Problem: Wi-Fi Connectivity Issues on Pinebook Pro markwood00 1 719 02-05-2025, 03:56 AM
Last Post: waylonwesley
  Pinebook Pro in EU for Sale - €90 jan_vdk 3 2,319 01-29-2025, 06:50 AM
Last Post: Macrae245
  Pinebook Next !spekulation! Surehand53 2 986 01-23-2025, 11:49 AM
Last Post: Surehand53
  Pinebook Pro wants a PIN for my bluetooth mouse ColoBill 1 507 01-19-2025, 04:38 PM
Last Post: ColoBill
Tongue Yet another Pinebook Pro won't boot thread pinemouth 5 4,492 12-27-2024, 11:38 AM
Last Post: akash3995
Question Pinebook pro dead / keyboard issue? / Troubleshooting Mengalef 2 897 12-05-2024, 04:16 PM
Last Post: tllim
  Unable to use umlaut key combos ili 4 1,283 12-02-2024, 03:56 PM
Last Post: Kevin Kofler
  Unable to boot? YossiS 4 1,151 09-04-2024, 10:35 AM
Last Post: wdt

Forum Jump:


Users browsing this thread: 1 Guest(s)