nvme drive disappears after about an hour of uptime
#6
Update: so my thermal padding order arrived, and I replaced the copper heat sink I installed yesterday with a 1.5mm layer of padding. I also added gratuitous thermal padding throughout the unit to tighten up the keyboard and touchpad button action. It took a bit of trial and error to find the right amount for under the touchpad; too little meant the buttons were still bouncy, and too much meant the buttons would stick out and wouldn't click/activate. Here's a photo of the unit with thermal padding: https://imgur.com/gallery/CalsmAs

I'm happy to report that the keyboard and touchpad are now much nicer to use. I'll have to see how this performs for thermal conduction. The padding adds some weight to the laptop, but I don't mind. These Pinebook Pros are very lightweight to begin with.

I also added a systemd service to lower the power setting of the NVMe drive.

/etc/systemd/nvme-enter-low-power-state.service:


Code:
# systemd service for setting the NVMe drive power state on boot
# Per "Post NVMe install power limiting" from https://wiki.pine64.org/index.php/Pinebook_Pro
# Loosely based on example one-shot service here: https://gist.github.com/drmalex07/d006f12914b21198ee43

[Unit]
Description=Set the NVMe drive power state

[Service]
Type=oneshot
# -v is power state, power states for various NVMe SSDs are outlined here:
# https://wiki.pine64.org/index.php?title=Pinebook_Pro_Hardware_Accessory_Compatibility
# Mine is Intel 660p M.2 and I'm setting it to PS 1 as recommended there
ExecStart=nvme set-feature /dev/nvme0 -f 2 -v 1
RemainAfterExit=true
User=root
StandardOutput=journal

[Install]
WantedBy=multi-user.target



I installed and started the service with:
Code:
$ sudo systemctl enable nvme-enter-low-power-state.service
$ sudo systemctrl start nvme-enter-low-power-state.service


And here's a one-liner for printing the NVMe drive temperature in Farhenheit:

Code:
$ echo $(echo $(sudo nvme smart-log /dev/nvme0 | grep temperature | sed 's/[^0-9\.]//g')'*9/5+32' | bc)'°F'

If I still encounter issues with the NVMe drive disappearing, I'll report back.
  Reply


Messages In This Thread
RE: nvme drive disappears after about an hour of uptime - by elijahr - 09-18-2020, 12:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  NVMe drives not detected mattpenn 18 16,332 12-24-2024, 08:54 PM
Last Post: KC9UDX
  NVMe reukiodo 0 431 11-18-2024, 09:00 AM
Last Post: reukiodo
  New Working nVME gilwood 1 1,209 11-17-2024, 04:24 AM
Last Post: reukiodo
  NVME problems 2022 / Intel 660p 1TB Starbug 1 2,828 04-04-2023, 12:16 PM
Last Post: globaltree
Thumbs Up NVMe adapter, Great addition dachalife 2 3,026 11-28-2022, 12:56 PM
Last Post: dachalife
  NVme intall usage? tkudog 2 4,111 03-04-2022, 01:29 AM
Last Post: Tazdevl
  Anyone selling a spare NVMe adapter in Europe? tom.tomasz 1 2,689 01-03-2022, 07:57 AM
Last Post: tom.tomasz
  NVMe SSD testing methodology halogen 1 3,629 07-22-2021, 05:57 PM
Last Post: calinb
Question Battery stops charging and NVMe and other media disconnect randomly Eey0zu6O 4 6,917 07-09-2021, 08:45 PM
Last Post: moonwalkers
  NVME SPI Update not booting SD Card WZ9V 5 8,462 10-18-2020, 08:36 PM
Last Post: wdt

Forum Jump:


Users browsing this thread: 1 Guest(s)