| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,697
» Latest member: john9
» Forum threads: 16,260
» Forum posts: 117,187
Full Statistics
|
| Latest Threads |
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: brorean
Yesterday, 08:45 PM
» Replies: 1
» Views: 98
|
Hi everybody!
Forum: General
Last Post: MadisynErnser
11-20-2025, 10:03 PM
» Replies: 2
» Views: 2,254
|
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: brb78
11-20-2025, 04:15 PM
» Replies: 0
» Views: 78
|
Recycling pinephone as ho...
Forum: PinePhone Hardware
Last Post: biketool
11-20-2025, 09:04 AM
» Replies: 5
» Views: 565
|
Light Sensor / Proximity ...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
11-18-2025, 03:07 PM
» Replies: 1
» Views: 143
|
How to stop it turning on
Forum: General Discussion on PinePhone
Last Post: biketool
11-18-2025, 02:30 PM
» Replies: 3
» Views: 469
|
8/24 status of JumpDrive
Forum: PinePhone Software
Last Post: biketool
11-18-2025, 01:27 PM
» Replies: 5
» Views: 2,140
|
Questions about running U...
Forum: General Discussion on PineTime
Last Post: alicesphere
11-18-2025, 12:48 AM
» Replies: 0
» Views: 85
|
Difficulty with openSUSE ...
Forum: PinePhone Software
Last Post: danm1988
11-17-2025, 07:49 AM
» Replies: 0
» Views: 93
|
Second screen mirroring
Forum: General
Last Post: andrekyler
11-17-2025, 01:06 AM
» Replies: 3
» Views: 1,911
|
|
|
| DLNA and/or Plex problem with RockPro64 |
|
Posted by: aldrick - 09-30-2019, 03:25 PM - Forum: Linux on RockPro64
- Replies (10)
|
 |
Hi everybody!
I may think that I'm in the right place for my question:
I have a big problem that makes me wonder if I should've done the good hardware.
I've bought a Rockpro64 SBC with one WD Red HDD running on last Ayufan OMV version.
I have a synology DS213+ (well an old thing).
I've made copy of my movies from the DS213+ to the Rockpro64. Everything was almost fine but it's not the problem.
I have a Mi Box for watching movies with Kodi.
I tried to watch movies and some work some don't:
- Plex say that my connection it too slow or that an error came with transcoding.
- I tried the Plex DLNA from my TV too. It worked only once. The other times, it frose or I had no movies on my list.
- It doesn't work from Kodi and my TV (DLNA).
- The same movies work well from the DS213+ (DLNA).
- The same movies work well from my MacBook Pro.
So, is my SBC's not made for that or is there something I forgot to do ?
|
|
|
|
| Uses for SPI Flash |
|
Posted by: NoraCodes - 09-29-2019, 10:53 AM - Forum: General Discussion on Pinebook Pro
- Replies (36)
|
 |
The PBP is listed as having 128 MB of SPI flash - I assume this is where UBoot lives, but perhaps it could also be used for e.g. storing crypto keys and the like? Does anyone know if Linux has a good way to do this safely?
|
|
|
|
| Ethernet latency |
|
Posted by: nethammer - 09-29-2019, 05:42 AM - Forum: Linux on Rock64
- Replies (1)
|
 |
Hi Everyone,
I've been using Rock64 boards for about a year now and am overall pleased with them. I'm having NO stability or reliability issues, etc.
However, there has been one issue I've not been able to overcome---Ethernet latency. This is seen directly with ping performance, where ping round-trip times to/from a neighbor on the same LAN will be 650+ uS (microseconds). I've tried a LOT of tests and poked a lot of parameters, no solution found. For comparison, other (non-Rock64) hosts on the same LAN show round-trip latency under 150uS.
I've also tried different kernels, from recent Armbian (kernel: 4.4.182-rockchip64) to my preferred platform, archlinuxarm aarch64, including 4.18.2-1-ARCH
(my early builds from last year) up thru very recent, 5.x kernels.
I'm evaluating these boards for routing/firewall/VPN applications. I've not yet tried to evaluate what impact the network latency might have on performance. Typical routing performance I'm seeing, including VLANs and bridging, will end up with thru-put latency of over 1.6mS....That's a long time !
Any thoughts about a solution??
Thanks!
|
|
|
|
| Encrypted disk |
|
Posted by: jpakkane - 09-27-2019, 02:29 PM - Forum: Linux on Pinebook Pro
- Replies (11)
|
 |
Has anyone looked into running the pbpro with full disk encryption? It works really nicely on x86, but since the whole boot mechanism is different, there is no guarantee it will work out of the box.
Thanks,
|
|
|
|
| Hibernation (suspend to disk) progress |
|
Posted by: NoraCodes - 09-25-2019, 11:30 AM - Forum: Linux on Pinebook
- Replies (4)
|
 |
I have spent the last few days working on getting suspend to disk (hibernate) working, to improve battery life, since suspend to RAM does not improve it that much. I have it working now, with one major caveat. I am doing this on Manjaro ARM but the process should be similar on any OS.
First, it is necessary to create a swapfile using normal techniques. Allocate a swapfile (we'll call it /swapfile), set it as swap, and place an entry for it in /etc/fstab.
Create a 4GB file:
Code: sudo fallocate -l 4G swapfile
Make it a swapfile, make it private to root, and turn it on:
Code: sudo mkswap /swapfile
sudo chmod 0600 /swapfile
sudo swapon /swapfile
Then, add it to fstab, with the line "/swapfile swap swap defaults 0 0".
Now we need to add the resume hook to the initcpio. In /etc/mkinitcpio.conf, change the HOOKS line to include the hook resume:
Code: HOOKS=(base udev autodetect modconf block resume filesystems keyboard fsck)
Now we need to edit the kernel's command line to include the resume target. First we need the UUID and the offset of the file.
Get the UUID with
Code: sudo findmnt -no SOURCE,UUID -T /swapfile
And the offset by looking at the first row of sudo filefrag -e /swapfile, looking at the first column marked physical_offset. This tells the kernel where on the given block device to look.
These values need to be put into the kernel command line in /boot/boot.txt like so:
Code: # Original line
setenv bootargs console=${console} console=tty0 root=PARTUUID=${uuid} rw rootwait
# New line
setenv bootargs console=${console} console=tty0 root=PARTUUID=${uuid} rw rootwait resume=UUID=29a4df6e-1531-4e1b-be79-82bd21f849ff resume_offset=2727936
Then you need to generate a new uboot script by running sudo /boot/mkscr followed by sudo mkinitcpio -P to regenerate the modified initcpio.
Now the machine will hibernate and resume! Try it with systemctl hibernate.
HOWEVER. In my case, when the system resumes, the screen image is as expected, but the screens brightness is at minimum and neither the keyboard or the trackpad work. I have to hard power off the machine and reboot.
If we can solve this problem, Pinebook can have working suspend-to-disk!
|
|
|
|
|