no, only via POE. I’ll redo following your steps on the weekend to see if that fixes this occasional reboot loop issue.
Just to confirm I did these steps too
dtparam=pciex1
dtparam=pciex1_gen=3
Enable auto detection PCIe and booting from NVME.
sudo rpi-eeprom-config --edit
PCIE_PROBE=1
BOOT_ORDER=0xf416
but not these one as per Geekpi wiki
sudo fdisk /dev/nvme0n1
and then input:
> p
> n
> p
> 1
> Enter
> Enter
> w
> q
* Format the partition
<pre>
sudo mkfs.ext4 /dev/nmve0n1p1
Create mounting point and mounting the partion to the mounting point.
mkdir ~/mydata
sudo mount -t ext4 /dev/nvme0n1p1 /home/pi/mydata -v
Automount configuration, edit /etc/fstab file and adding following parameters:
sudo vim.tiny /etc/fstab
adding:
/dev/nvme0n1p1 /home/pi/mydata ext4 defaults,noatime 0 0
While you did neither of these… which also means you’re not running PCI Gen3.
Hi,
I have been running this setup since June, and it, well, sort of works. It is running well enough, at least to a degree that I didn’t put any energy into trying to fix my issues.
So what are the issues? Well, in a random fashion, the Pi just loses the disk. I haven’t found any pattern or managed to see anything in the logs, but sometimes everything works as a charm for a month, and sometimes it just loses the disk after 12 hours.
The easy fix is a power cycle and then everything is fine… For a while
My main problem now is that when the winter is coming, I can’t have this behavior anymore as some of my radiators are controlled by simple thermostats.
Does anyone else have similar issues?
Any ideas would be very appreciated!!
Using geekworm X1001 with a crucial P3 500G gen 3.
Maybe I will have to create some external watchdog or go back to SD Card…
Edit: And yes, I’m using the recommended standard pi5 power supply.