| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,708
» Latest member: Ninjacat
» Forum threads: 16,263
» Forum posts: 117,202
Full Statistics
|
| Latest Threads |
PinePhone sensors - Gyros...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
5 minutes ago
» Replies: 0
» Views: 1
|
what is the point?
Forum: General Discussion on PinePhone
Last Post: zetabeta
3 hours ago
» Replies: 2
» Views: 60
|
irradium (based on crux l...
Forum: Linux on Rock64
Last Post: mara
5 hours ago
» Replies: 10
» Views: 15,922
|
irradium (based on crux l...
Forum: Linux on RockPro64
Last Post: mara
Yesterday, 02:45 PM
» Replies: 10
» Views: 16,844
|
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: j_s
Yesterday, 11:33 AM
» Replies: 4
» Views: 216
|
Quill OS for the PineNote
Forum: PineNote Software
Last Post: JhonSmith
Yesterday, 01:42 AM
» Replies: 1
» Views: 121
|
auto-owning the SD card i...
Forum: PineTab Software
Last Post: biketool
11-25-2025, 04:16 AM
» Replies: 1
» Views: 400
|
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: Stunnned
11-24-2025, 01:27 PM
» Replies: 2
» Views: 232
|
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: 250
|
|
|
| best way to get a stuck sd card out? |
|
Posted by: elix - 03-13-2025, 02:41 PM - Forum: Pinebook Pro Hardware and Accessories
- Replies (3)
|
 |
so i have always had problems with the micro sd card in my pinebook pro.
the micro sd card is now stuck and i wanna switch distros.
i tried the old knife method, etc. but ended up screwing up the outer part of the card.
is my next bet to the case off and get it out that way?
not sure its even safe to use the card at this point.
thanks
|
|
|
|
| PinePhone Pro disable Volume Buttons when malfunctioning |
|
Posted by: ArchBene - 03-12-2025, 05:51 PM - Forum: PinePhone Pro Hardware
- No Replies
|
 |
Hi together,
here comes a solution for a problem I had with the PinePhone Pro, hoping that it helps someone else. When I started installing different distributions, there was the same problem all over again. The volume buttons were randomly sending signals to the phone although I didn't press them, constantly changing the volume. This was very annoying as the pop-up message interrupted anything I wanted to do on the phone. After some research I found the following work around. Tested it on Arch with Phosh and on Manjaro with Plasma Mobile, but should work on other distros too. The solution works by unbinding the volume keys from the driver. The volume keys will stop working then, but the power key can still be used normally. Up to now I didn't miss the volume keys, as it can easily be adjusted in the settings. You can find more information about driver unbinding in this article: https://lwn.net/Articles/143397/
First open a terminal and issue the following command to stop the nuisance:
Code: sudo echo -n "adc-keys" > /sys/bus/platform/drivers/adc_keys/unbind
Now to permanently deactivate the volume keys on startup we can create a systemd-service.
All of the following code-snippets should be executed as root-user.
First create the shell-script, for example in /opt or wherever you like to have it:
Code: cat > /opt/unbind-adc-keys.sh << EOF
#!/bin/bash
echo -n "adc-keys" > /sys/bus/platform/drivers/adc_keys/unbind
exit 0
EOF
Don't forget to give execute permissions:
Code: chmod a+x /opt/unbind-adc-keys.sh
Now create the systemd service unit:
Code: cat > /etc/systemd/system/unbind-adc-keys.service << EOF
[Unit]
Description=Unbinds the Volume Keys on startup
[Service]
ExecStart=/bin/bash /opt/unbind-adc-keys.sh
[Install]
WantedBy=mulit-user.target
EOF
Now enable the service unit:
Code: systemctl enable unbind-adc-keys.service
From now on the volume keys should be disabled from startup and you can again enjoy your PPP :-)
|
|
|
|
| Pinebook pro bricked? |
|
Posted by: michaelmoua - 03-11-2025, 09:04 PM - Forum: General Discussion on Pinebook Pro
- Replies (3)
|
 |
Hello,
my pinebook pro stopped working. When I plug it in, the red light on the connector turns on, but pressing the power button does nothing. Here’s what I’ve tried:
- Holding the power button down for over 30 seconds
- Bypassing the battery by disconnecting it and bridging the two connectors
- Removing the eMMC and attempting to boot from an SD card
None of these solutions have worked, and the power light remains off (neither red nor green). Any assistance would be appreciated!
|
|
|
|
| Pinenote + PinePhone Pro USB-C Docking Bar with USB Keyboard |
|
Posted by: Badgery - 03-10-2025, 12:40 PM - Forum: PineNote Accessories
- No Replies
|
 |
I have a wireless USB keyboard that when connected to the Pinenote via a USB-C adapter works fine, including the trackpad.
The problems is when I connect the keyboard to the Pinenote via a PinePhone Pro USB-C docking bar I get no response. I also tested it with my Android phone, and same thing, recognises the keyboard via adapter but not the docking bar.
I was starting to wonder if it is a faulty docking bar, but when used with my linux laptop running KDE, then the keyboard does work via the docking Bar.
Any idea what could be going on?
|
|
|
|
| [Article] PR Test Bot for PinePhone (Avaota-A1 SBC / Apache NuttX RTOS) |
|
Posted by: lupyuen - 03-08-2025, 02:43 PM - Forum: General Discussion on PinePhone
- No Replies
|
 |
Earlier we created a PR Test Bot that will Build and Test the Pull Requests for Apache NuttX RTOS. Our Test Bot kicks into action when we post a PR Comment...
Code: ## For Oz64 SG2000 RISC-V SBC
@nuttxpr test oz64:nsh
## For QEMU Emulator: Arm64 and RISC-V
@nuttxpr test qemu-armv8a:netnsh
@nuttxpr test rv-virt:knsh64
Today we extend our Test Bot to Build and Test the Pull Requests for PinePhone. Yep on the Real PinePhone Hardware!
(1) We used Special Hardware: SDWire MicroSD Multiplexer (pic below)
(2) Controlled by a Single-Board Computer: Yuzuki Avaota-A1 (Open Hardware)
(3) PinePhone Test Bot kinda works!
(4) Though PinePhone Battery complicates Hardware Testing
(5) We might pivot to another Arm64 Single-Board Computer
(6) Maybe we'll port NuttX to Allwinner A527 SoC?
Check out the article: https://lupyuen.org/articles/testbot3.html
Lup
|
|
|
|
| need help whit pinephone |
|
Posted by: janjansen1312 - 03-07-2025, 09:32 PM - Forum: News
- Replies (1)
|
 |
hello i am new to linux and i am verry intrest in the pinephone are on the forum members that com from netherlands of belguim how like to help whit the pinephone
yhx jan
|
|
|
|
| cracked screen and repair |
|
Posted by: elix - 03-07-2025, 01:40 PM - Forum: PineTab Hardware
- No Replies
|
 |
hey all.
i have a crack in my pinetab2 (thanks cat) and I am admittedly horrible at hardware.
can i purchase a replacement screen and is there anyone in the DC area who would be able to help me replace it?
if not, is there somewhere i can send it to be repaired?
gonna send an email to support but wanted to reach out here too.
thanks!
|
|
|
|
|