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,
Ok, I have now been running this setup since June and it, well, sort of works. At least good enough in a way that I didn’t put any energy into trying to fix the issues I have.
So what are the issues? Well, in a random fashion, the pi just looses the disk. I haven’t found any pattern or manage to see anything in the logs but sometimes everything works as a charm for a month, sometimes it just looses the disk after 12 hours.
Easy fix is a power cycle and then everything is fine… For a while
My main problem now is that now when the winter is coming, I can’t have this behavior anymore as some of my radiator are controlled by simple thermostats.
Anyone else with 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 going back to SD Card…
Edit: And yes, I’m using the recomended standard pi5 power supply.