Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,706
» Latest member: Hazel Stone
» Forum threads: 16,262
» Forum posts: 117,198

Full Statistics

Latest Threads
what is the point?
Forum: General Discussion on PinePhone
Last Post: vanja
2 hours ago
» Replies: 0
» Views: 13
irradium (based on crux l...
Forum: Linux on RockPro64
Last Post: mara
Yesterday, 02:45 PM
» Replies: 10
» Views: 16,843
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: j_s
Yesterday, 11:33 AM
» Replies: 4
» Views: 209
Quill OS for the PineNote
Forum: PineNote Software
Last Post: JhonSmith
Yesterday, 01:42 AM
» Replies: 1
» Views: 103
auto-owning the SD card i...
Forum: PineTab Software
Last Post: biketool
11-25-2025, 04:16 AM
» Replies: 1
» Views: 397
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: Stunnned
11-24-2025, 01:27 PM
» Replies: 2
» Views: 221
Volumio (PINE A64-LTS / S...
Forum: Linux on PINE A64-LTS / SOPINE
Last Post: kapqa
11-23-2025, 02:02 AM
» Replies: 8
» Views: 15,567
Reinstallation Arch Linux...
Forum: General Discussion on PineTab
Last Post: rth
11-22-2025, 08:25 PM
» Replies: 1
» Views: 246
Recycling pinephone as ho...
Forum: PinePhone Hardware
Last Post: biketool
11-20-2025, 09:04 AM
» Replies: 5
» Views: 665
Light Sensor / Proximity ...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
11-18-2025, 03:07 PM
» Replies: 1
» Views: 241

 
Question How to assemble a portable ARM computer.
Posted by: onizou - 08-15-2020, 10:30 AM - Forum: Getting Started - No Replies

Hello,

First of all, I apologize for my English.

I want to assemble a portable ARM computer running Manjaro Linux and would need your help as I lack the skills to identify the necessary components.

It would consist of an ARM SoC in its small box also containing an accumulator and a portable screen.

I found this screen that seems to fit: https://www.asus.com/en/Monitors/ZenScre...fications/

The latter connecting via a USB-C DisplayPort, the SoC must be equipped with this function. This single connection also supplies it with its power supply and the SoC must therefore be able to supply it with the necessary electricity via this port (8W). I have spotted four ARM SoCs with, if I haven't made a mistake, and compatible with Manjaro Linux:
- The ROCKPro64 by Pine64.
- The Edge V and Captain + Edge byKhadas: https://www.khadas.com/edge
- The ROC-RK3399-PC (Renegade Elite) by Libre Computer: https://libre.computer/products/boards/roc-rk3399-pc/

Unfortunately, I cannot find any documentation / wiki provided on Libre Computer's SoC, which is eliminatory given my limited knowledge.

Could you list me the components to acquire to assemble such a computer?


Thank you. Smile


  How do I get into Loader mode to flash an image?
Posted by: olivercfc - 08-15-2020, 07:33 AM - Forum: Android on Rock64 - Replies (1)

I'm following the guide at https://github.com/ayufan-rock64/android-7.1 but failing at step 3

Step 1 is to d/l and compile rkflashtool (done)

Step 2 is to connect a USB A-to-A cable to the upper USB2 port on the Rock64 and my computer (I assume any old male-to-male / A-to-A cable will do)

Step 3 is to put the Rock64 into Loader mode but no matter what I do, it just goes through the normal boot process and ends up at a ' => ' prompt

The specific steps are
i) press and hold recovery button
ii) press reset button
iii) stop holding recovery button after 3 seconds

Is there any visual change I should be seeing on the console to let me know it's in Loader mode?

When I run 'rkflashtool n' to verify it tells me 'fatal: cannot open device.'  I'm also not seeing anything in 'dmesg' (but maybe that's normal)

My Rock64 is microSD only, no eMMC.


  File transfer mode no longer working?
Posted by: Zweitaktmotor - 08-15-2020, 07:31 AM - Forum: UBPorts on PinePhone - No Replies

In older update versions of Ubuntu, I could start file transfer mode by holding the volume up key during boot. When I connected the phone to my PC, all partitions would show up and the content could be edited.

I can still do the volume up procedure, but on the phone, I get "Awaiting command" and the partitions no longer show up on my pc.

I can probably do something in Terminal, but I regret that this functionality has been lost.

UPDATE: Panic over. They are there, but not automatically mounted. You have to do this by hand now.


  32 bit apps supported?
Posted by: pcdoodle - 08-15-2020, 06:42 AM - Forum: Mobian on PinePhone - Replies (6)

I was wondering if pureos or mobian will support 32 bit apps in the future?

Thanks!


  How to add an external power button?
Posted by: foresto - 08-15-2020, 03:06 AM - Forum: RockPro64 Hardware and Accessories - Replies (6)

Does the RockPro64 have header pins (or something similar) for an external power button? I would like to add such a button, since the on-board one can be difficult to use.

I see four holes at the corner of the board near the headphone jack. They're at the bottom right of this close-up view. One of those contacts is labeled PWR. Does that mean it's for delivering power, or will grounding it act like pressing the power switch? (The other contacts are labeled GND, REC, GND.)

If those holes are the contacts I need, what size header will fit them?

Is there a better way to do this?


  Funny Conky like script to monitor your PBP state
Posted by: as400 - 08-14-2020, 08:39 AM - Forum: Linux on Pinebook Pro - Replies (1)

I found it this script useful. So I'm sharing it.
It monitors CPU/GPU frequencies, temperatures and gives basic info from top.

Code:
#!/bin/bash

a53=$(cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq | awk '{print $1 / 1000000}')
a72=$(cat /sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq | awk '{print $1 / 1000000}')
cpu=$(cat /sys/class/thermal/thermal_zone0/temp)

gpuf=$(cat /sys/devices/platform/ff9a0000.gpu/devfreq/ff9a0000.gpu/cur_freq | awk '{print $1 / 1000000}')
gpu=$(cat /sys/class/thermal/thermal_zone1/temp)
echo CPU temperature '>' ${cpu::2}C
echo GPU temperature '>' ${gpu::2}C
echo A53 Little frequency '>' ${a53}Ghz
echo A72 Big frequency '>' ${a72}Ghz
echo GPU frequency '>' ${gpuf}Mhz
echo ""
top 1 -bn1 | head -10


Copy code, save as eg. script.sh. Then:


Code:
chmod +x script.sh


If you want to refresh information every 0.5 seconds:

Code:
watch -n 0.5 script.sh


Every 2 seconds:

Code:
watch -n 2 script.sh


  I have a manjaro 20.03 install from march, now pacman does not work
Posted by: Ilia3101 - 08-14-2020, 07:16 AM - Forum: Linux on Pinebook Pro - Replies (5)

I installed manjaro 20.03 in march, and pretty much haven't touched the pinebook since april. Now I am back to it, every time I try to run pacman it can't connect to the package servers.

Is there any way of fixing this? Or will I have to completely reinstall to a newer manjaro? I just want to install a few more packages and update what I have.

I get this output:

Code:
:: Synchronising package databases...
error: failed retrieving file 'core.db' from manjaroarm.mirrors.lavatech.top : Could not resolve host: manjaroarm.mirrors.lavatech.top
core is up to date
error: failed retrieving file 'extra.db' from manjaroarm.mirrors.lavatech.top : Could not resolve host: manjaroarm.mirrors.lavatech.top
extra is up to date
error: failed retrieving file 'community.db' from manjaroarm.mirrors.lavatech.top : Could not resolve host: manjaroarm.mirrors.lavatech.top
community is up to date
:: Starting full system upgrade...
there is nothing to do


  Ubuntu for RockPro64
Posted by: dndeokar - 08-13-2020, 06:23 PM - Forum: Linux on Pinebook Pro - Replies (1)

I am looking for stable version of Ubuntu for my RockPro64 SBC. Please let me know the details


  Possible to upgrade PBP with NVMe M.2 1TB SSD from Sabrent?
Posted by: kkdao - 08-13-2020, 06:06 PM - Forum: Pinebook Pro Hardware and Accessories - Replies (15)

I tried using this: https://store.pine64.org/product/pineboo...e-adapter/ to upgrade my PBP storage capacity using these instructions: https://forum.pine64.org/showthread.php?tid=4971 but after the "sudo cp -avx / /mnt" command it makes my "kernel panic" and the power light starts flashing red and green.

On the second try of restarting the laptop I'm able to log back in like normal, so is this behaviour a sign that I can't use this high amount of an SSD, or is i possible as long as uboot is in the right spot? Not sure how to do that though if so.

Thanks in advance!


  Komorebi: Live wallpaper manager
Posted by: nas - 08-13-2020, 05:35 PM - Forum: PinePhone Software - No Replies

So can we have animated wallpapers on the pinephone? Here's a quick video that says yes.

Caveats: It's running on desktop mobian and utilises approx 12% per core for 720p videos. 1440p native resolution playback is smoother but double the cpu penalty. Selector menu expects mouse rather than touchscreen.

This eye candy is a bit expensive even with pause-when-not-focused but there's a fork of komorebi which may implement improvements.

https://github.com/Komorebi-Fork


.jpg   komorebi-pinephone.jpg (Size: 41.91 KB / Downloads: 597)