-
Posts
0 -
Joined
-
Last visited
Reputation Activity
-
d.k.Brazz reacted to fahraynk in orange pi 5 plus auto-shutdown when inactive
Armbianmonitor: https://paste.armbian.com/uvoselupel I recently purchased an Orange Pi 5 Plus and installed Armbian. It shuts down about every ten minutes. Strangely, when it is streaming video over HDMI it does not shutdown. So it can stream movies for up to three hours without shutting down. But if I am not streaming, for example if I am SSH into the device, it will shutdown after about ten minutes and I get booted out.
I disabled system suspend in `settings > Power settings` but this did not help. I also just replaced the power supply with a 4 amp power supply (up from 3.5 amp) but this did not help at all. I also looked around 'armbian-config' but I did not notice any settings that could be the issue.
I do not see any services or anything in the system log related to this. I tried to install caffeine as a workaround, which is supposed to prevent the computer from sleep, however, this did not help. I installed caffeine and made sure it was running but again it didn't help:
```bash
ps aux | grep caffeine
pi 2356 0.0 0.2 364892 45416 ? Ssl 13:53 0:00 /usr/bin/python3 /usr/bin/caffeine
pi 2517 0.0 0.2 364896 45000 ? Sl 13:53 0:00 /usr/bin/python3 /usr/bin/caffeine
```
I would like help to debug this problem. Please give me some tips to track down the issue. Thanks!
-
d.k.Brazz reacted to arturito in installing OP5 NMVE boot
Couldn't booti from NVME with armbian-config or armbian-install, finally I could do it, a dirty easy and convoluted following way. No details about burning stuff
This is what I did
1) boot system from fresh downloaded SD (Armbian Jammy Desktop)
2) NVME setup (sudo gparted)
- if empty create a partition table (GPT)
if not delete all partitions
- create 256MB FAT16 partition (nvme0n1p1)
- create EXT4 partition (nvme0n1p2)
- optionally create more partitions (system recovery, backups ...)
- format partitions nvme0n1p1 -> FAT16
- format partitions nvme0n1p2 -> EXT4
- check partitions (if old NVME)
- label nvme0n1p1 as armbi_boot
- label nvme0n1p2 as armbi_root
3) run sudo armbian-install
- option 7 to flash mtdblock0 (bootloader install)
- option 4 (to install system and boot from mtdblock0)
choose nvme0n1p2 partition to install system
don't POWEROFF, just EXIT
4) copy SD boot partition to nvme0n1p1
- sudo dd if=/dev/mmcblk1p1 of=/dev/nvme0n1p1 bs=1M status=progress
- sudo sync
5) armbianExt.txt setup on NMVE
- sudo mount /dev/nvme0n1p1 /mnt
- check boot files/directories are already copied (ls -l /mnt)
- blkid
- copy (CTL_INS -> new UUID) of nvme0n1p2 UUID (without "")
with your favourite editor:
- sudo vi armbianExt.txt
- replace rootdev=UUID=with new UUID (SHIFT-INS)
- save (ESC :x)
6) - sudo poweroff
- remove SD
- press power button to restart
Maybe this cam help someone