| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 144
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,675
|
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 235
|
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 107
|
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 216,842
|
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 194
|
Voidlinux working on eMMC
Forum: General Discussion on PineTab
Last Post: tllim
04-01-2026, 04:14 PM
» Replies: 1
» Views: 275
|
Pinecil V2 doesn’t power ...
Forum: General Discussion on Pinecil
Last Post: Juptin
03-28-2026, 02:37 AM
» Replies: 1
» Views: 2,074
|
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 934
|
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 599
|
|
|
| Question for GNOME3 users |
|
Posted by: tophneal - 02-24-2020, 02:22 PM - Forum: Linux on Pinebook Pro
- Replies (23)
|
 |
Last week on Manjaro I got a whole stack of updates to GNOME and some system packages. After rebooting, both gdm and GNOME give me black screens with cursors, journalctl /usr/bin/gnome-shell gives me a bunch of errors:
Code: Failed to open gpu '/dev/dri/card0':
GDBus.Error:org.freedesktop.DBus.Error.AccessDenied: Operation not permitted
Installed Budgie a little earlier to get another DE going, and to see if it'd run since it shares a lot with Gnome. It runs without any issue.
Have any other GNOME3 users experienced similar issues from the most recent updates?
|
|
|
|
| Substitute heatsink? |
|
Posted by: chrestomanci - 02-24-2020, 07:28 AM - Forum: RockPro64 Hardware and Accessories
- Replies (9)
|
 |
My RockPro64 finally arrived, and when I unpacked it, I realised that I forgot to include a CPU heatsink on my order.
I have read in a number of places that the RK3399 get very hot, so it would be foolish to run it without a heatsink, but as my last order took 6 weeks to arrive, I don't want to order just a heatsink from the PINE store and wait that long before I can start using my new RockPro64.
Can anyone suggest where I might get a substitute heatsink from? Does the heatsink spec match a well known standard from elsewhere in the electronics industry? Looking at the board it is clear that a CPU cooler from a desktop CPU would not fit, and the mounting would be totally different, but would a chipset heatsink likely fit?
Thanks.
|
|
|
|
Motor is always on, always |
|
Posted by: Motor_why - 02-23-2020, 11:56 PM - Forum: PinePhone Hardware
- Replies (1)
|
 |
Hello wonderful Pine64 people,
First off, I read all the other threads on vibrating and motors on this forum for the pinephone. I don't see a fix for my problem with an otherwise cool phone. I got my really cool pinephone in the mail earlier this month, and it vibrates all the time it is on. Before the booting even shows light on the screen, the motor is vibrating. It vibrated from the first moment I turned it on. It vibrates after the screen shuts down, and up until the phone is completely off. It vibrates now. I tried booting a different OS to see if it the motor still runs all the time, it does, it still has the same issue. So, it likely isn't a programming issue. When I contacted support I was told:
Hello (Motor_why),
Please to inform you that the PinePhone batch consider as developer state, for more info on PinePhone bring up, please visit PINE64 forum and also communicate with developers at PinePhone IRC, http://www.pine64.xyz, /join #pinephone
Your understanding and patience is greatly appreciated.
support team#2...
I don't know what to do. I am now posting here, Reddit. The private outreach didn't work, and since I can't return it for a phone that is vibrating all over, I'm willing to do what people recommend.
I really want this phone to work.
Sincerely,
Motor_why
|
|
|
|
Howto: Mobile data on pmOS + Phosh with APN requiring user/pass |
|
Posted by: pajux - 02-23-2020, 10:14 PM - Forum: General Discussion on PinePhone
- Replies (3)
|
 |
Have been having trouble getting mobile data on any of the available distributions, and finally with the help of IRC, manpages, and a few guides, I managed to get mobile data on my operator, which requires setting up an APN with user and password.
So for me it wasn't a simple matter of using ofonoctl wan --connect --append-dns, or simply enabling ofonod, or anything of the sorts. I had to dig in deeper.
This has only been tested under pmOS + Phosh so far, because it uses NetworkManager and it's easy to install ModemManager without messing up the whole system (like I did once under Ubuntu Touch). YMMV on other distributions.
Step 1
Install pmOS your favorite way, and make sure to install modemmanager
Code: apk add modemmanager
Step 2
Disable ofono, enable modemmanager at startup
As root:
Code: rc-service ofono stop
rc-update del ofono
rc-update del ofono-auto-enable
rc-update add modemmanager
rc-service modemmanger start
Step 3
Wait 10-20 seconds and check the status of your modem with:
If all is good, you can also see the 4G and modem icons in the status bar.
Step 4
Create a "bearer"
Code: mmcli -m 0 --create-bearer='apn=APN.NAME,user=USERNAME,password=PASSWORD,allowed-auth=chap,allow-roaming=no'
auth and roaming may vary on your provider.
Once you've done the above successfully, you should see a new device in network manager (previously it was alled ttyUSB2) : cdc-wdm0
This is the device name to use in the next step
Step 5
Now configure the connection with nmcli, I'm not sure if you need to specify tall the APN info all over again or not, I'll have to try without and update this guide:
nmcli c add type gsm ifname cdc-wdm0 con-name OPERATOR-NAME apn APN.NAME user USERNAME password PASSWORD
Step 6
Verify connectivity with all the usual commands
Code: nmcli c # check status of the connection named OPERATOR-NAME as above
nmcli d # check status of cdc-wdm0
ip addr # check for wwan0
and so on.
References:
https://docs.ubuntu.com/core/en/stacks/n...onnections
https://docs.ubuntu.com/core/en/stacks/n...onnections
https://www.freedesktop.org/software/Mod...cli.8.html
|
|
|
|
| Live Camera View |
|
Posted by: mpnordland - 02-23-2020, 09:47 PM - Forum: General Discussion on PinePhone
- Replies (2)
|
 |
Up for a crude, barely functional method for taking photos with your PinePhone?
Of course you are. You wouldn't have one otherwise.
It's not too hard either. Credit to the postmarketOS wiki as it had the hard part.
You will need to install the mpv and v4l-utils packages.
Code: media-ctl -d /dev/media1 --set-v4l2 '"ov5640 3-004c":0[fmt:UYVY8_2X8/1280x720]'
mpv av://v4l2:/dev/video1
Press 's' at any time to take a photo. Press 'q' to exit.
I recommend making this into a script and copying it to your SD card so you can avoid typing it in by hand.
Troubleshooting
The pmOS wiki states that the entity name is "ov5640 2-003c". I found that not to work.
If you get a message stating "Invalid argument (22)" then you may have the wrong entity name. Fortunately, you can get it like this:
Code: media-ctl -d /dev/media1 -p
There should be two entities listed, one a source and the other a sink. You want the entity name for the sink. It will look like the ones mentioned above.
|
|
|
|
| Installing Brother printer drivers on Manjaro |
|
Posted by: dhosh - 02-23-2020, 08:52 PM - Forum: Linux on Pinebook Pro
- Replies (4)
|
 |
I have gone around in circles trying to get a couple Brother printers to work on my network. They are an MFC-J4620DW (color ink jet) and an JL-L2930DW. Both are less than a year old. The AUR builds end up with the drivers 'not available for aarch64 architecture. I've done some searches for ideas, but apparently, I'm not grasping something ... as all i end up with is my head spinning. I'm not new to Linux, but am to Manjaro (usually use flavors of Ubuntu) ... I don't seem to be having too much trouble with Manjaro but apparently the aarch64 architecture is.
Thanks in advance.https://download.brother.com/welcome/doc101074/cv_eng_login_password_insertion_a.pdf
|
|
|
|
| Mali400 video driver? |
|
Posted by: Zweitaktmotor - 02-23-2020, 06:36 PM - Forum: PostmarketOS on PinePhone
- Replies (2)
|
 |
As you may have seen in my other posts, I am tinkering with Gnome in PMOS/Alpine.
Originally, I installed Gnome alongside Phosh and started it from Terminal. Although all individual screen elements were rather small, this produced a near perfect screen layout (for me at least).
I am now trying to build an image from scratch that I may be able to share. However, deleting Phosh and booting right into Gnome has messed up the video driver.
Checking under Settings/Details/About gives me "Graphics unknown" whereas my old setup says "Graphics Mali400".
I found some interesting info about the Mali400 hardware here:
https://wiki.debian.org/MaliGraphics
And, checking both my installations, I found a file called mali-dp.ko in
/pmOS_root/lib/modules/5.5.0/kernel/drivers/gpu/drm/arm
The problem seems to be that this driver was deactivated when I deleted Phosh.
How can I get it back to run?
Many thanks for your help.
|
|
|
|
| Kill-A-Watt measurements |
|
Posted by: Der Geist der Maschine - 02-23-2020, 04:17 PM - Forum: Pinebook Pro Hardware and Accessories
- Replies (3)
|
 |
Power measurements of kernel builds on X cores with make -jX. [Note, the base system is booted off an SD card with the kernel source code located on the eMMC card. Eventually, I will redo the measurements when booted straight from eMMC].
-j1: 10.0W +/- 0.5W (0 ... 07.0W with screen disabled)
-j2: 12.7W +/- 0.5W (0 ... 09.6W with screen disabled)
-j3: 13.7W +/- 0.5W (0 ... 10.2W with screen disabled)
-j4: 14.3W +/- 0.5W (0 ... 11.2W with screen disabled)
-j5: 15.0W /- 0.5W (0 ... 11.3W with screen disabled)
-j6: 15.0W /- 0.5W (0. .. 11.4W with screen disabled)
When the screen is turned on, power consumption is quite constant with a variance of +/- 0.5W. It's puzzling that occasionally no power is consumed for a few seconds when the screen is turned off. Maybe the battery is taking over during these short intervals?
The external power supply can provide up to 15W. Utilizing 4 cores, the system requires from time to time almost all that power and while utilizing 5 or 6 core, the system requires all the time all that power and probably occasionally even more. This helps explaining the sudden drops in battery charge from 100% to 91% on systems under load (there are are a few threads here on this board).
I also noticed weird things going on which are barely explainable [the actual timestamps are rough guesses. Numbers for the sake of numbers]:
t=00min. I stress the system with make -j5. Power consumption 15W
t=10min. I continue stressing the system with make -j5: Power consumption goes to 0W.
t=11min. I stop the make -j5. Power consumption remains at 0W.
t=20min. Power consumption goes to 13W.
t=40min. Over the last 20 min, the power consumption went slowly down from 13W eventually reaching 8.4W. 8.4W also the power consumption of a freshly booted system.
I gain the impression that at t=10min, the internal battery may have taken over and then from t=20 to 40, the power supply charged back the internal battery. I did not see any capacity drops on /sys/class/power_supply/cw2015-battery/charge, though. Maybe the charge dropped by less than 0.5% keeping the rounded value of 100?
Let's focus on display off (without load): When the display is off, there is an oscillation of 0W for 2 seconds and 5.4W for two seconds. Do here really main power and battery flip flop charging the Pinebook Pro?
Any comments? Can you guys do further power measurements?
|
|
|
|
| Windows 10 (KVM) on PinePhone |
|
Posted by: Danct12 - 02-23-2020, 10:08 AM - Forum: General Discussion on PinePhone
- Replies (5)
|
 |
It's about time.
Just keep in mind that this is a PoC about native virtualization on AW A64, Windows 10 ARM on A64 is not really usable as you thought, no networking, keyboard/mouse get borked most of the time when you do something, frequent BSODs because watchdog keeps timeout and very slow.
The way how this is being done is the same as Pinebook Pro, but you have to skip OOBE using audit mode (Shift+Ctrl+F3 when it fails to update).
But better yet, just replace the ISO Windows with a Linux distro, it makes your life easier, and it's also faster too.
|
|
|
|
|