| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,969
» Latest member: Bianca
» Forum threads: 16,334
» Forum posts: 117,438
Full Statistics
|
| Latest Threads |
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 176
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,730
|
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 267
|
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 121
|
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 217,137
|
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 224
|
Voidlinux working on eMMC
Forum: General Discussion on PineTab
Last Post: tllim
04-01-2026, 04:14 PM
» Replies: 1
» Views: 310
|
Pinecil V2 doesn’t power ...
Forum: General Discussion on Pinecil
Last Post: Juptin
03-28-2026, 02:37 AM
» Replies: 1
» Views: 2,096
|
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 951
|
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 609
|
|
|
| Chromium Crashing if not Superuser |
|
Posted by: cmelcher - 12-08-2019, 07:21 PM - Forum: General Discussion on Pinebook Pro
- Replies (3)
|
 |
On my PBP, Chromium crashes every time I try to go to settings if I'm not running it as a superuser. So I cannot enter my Google Passpharse to sync all my bookmarks.
It works fine if I run "sudo chromium-browser", but that seems to use a different profile. The passphrase takes there, but when I go back on as a regular user, it's not synced.
I really don't want to run chromium as a super user every time. Any thoughts on how to fix this?
|
|
|
|
| Internal Speaker Modification |
|
Posted by: hmuller - 12-07-2019, 08:51 PM - Forum: Pinebook Pro Hardware and Accessories
- No Replies
|
 |
The internal speakers are secured to the palm rest with adhesive. Additionally there is adhesive on the foam attached to the speakers facing the bottom magnesium cover.
When disassembling the bottom cover from the palm rest the speakers pull off the palm rest, sticking to the bottom cover. Although this is not a huge problem, this exercises the speaker wires more than I like.
The solution I devised way to apply plastic wrap (common food wrap, not cellophane) to the foam on the speakers. I then used a pair of scissors to trim the plastic wrap around the outer perimeter of the foam. Then I carefully cut a slit within the inner perimeter of the foam and then used the scissors to trim the plastic wrap within the inner perimeter of the foam.
This prevents the speakers from attaching to the bottom magnesium case. They remain attached to the palm rest and the speaker wires remain undisturbed when the bottom case is removed from the palm rest.
The sound quality of the speakers remains the same as before the fix, but in full disclosure I have old man ears with specific frequency impairment in one ear. My good ear can not discern any difference.
Update: 17 DEC 2019:
This has been an effective solution. To improve the adhesion of the speakers to the palm rest assembly I used a dab of silicon adhesive under each speaker.
|
|
|
|
| A list of supported OSes would be helpful |
|
Posted by: blicken - 12-07-2019, 06:10 PM - Forum: Getting Started
- Replies (2)
|
 |
Im a new user of pine phone, indeed my phone has yet to arrive.
Im just wondering what my OS options are, I think it would be handy if there was a list of functional and tested OS builds to choose from.
Is there such a thing already? Have I simply missed it?
|
|
|
|
| Hardening your Pinebook Pro software |
|
Posted by: Arwen - 12-07-2019, 03:33 PM - Forum: Pinebook Pro Tutorials
- Replies (4)
|
 |
Here is a guide to some of the hardening you can do on your Pinebook Pro's OS and applications. Each post will be dedicated, (and edited for corrections and updates), for a specific type of hardening.
Hardening SSH:
Disable Root login:
File - /etc/ssh/sshd_config
PermitRootLogin no
Service - systemctl restart sshd
One other thing that probably should be done, is re-create the host SSH keys. SSH host keys should be unique per host. From what I can tell, the default Debian comes with host SSH keys already created from July 11, 2019;
Code: # ls -l ssh_host_*
-rw------- 1 root root 668 Jul 11 16:55 ssh_host_dsa_key
-rw-r--r-- 1 root root 609 Jul 11 16:55 ssh_host_dsa_key.pub
-rw------- 1 root root 227 Jul 11 16:55 ssh_host_ecdsa_key
-rw-r--r-- 1 root root 181 Jul 11 16:55 ssh_host_ecdsa_key.pub
-rw------- 1 root root 411 Jul 11 16:55 ssh_host_ed25519_key
-rw-r--r-- 1 root root 101 Jul 11 16:55 ssh_host_ed25519_key.pub
-rw------- 1 root root 1675 Jul 11 16:55 ssh_host_rsa_key
-rw-r--r-- 1 root root 401 Jul 11 16:55 ssh_host_rsa_key.pub
Plus, remove the in-secure DSA host key.
Here is how to do it.
As user "root", simply run the following commands. If you like, you can put the hostname in the comment, like "MyHost rsa hostkey".
Code: cd /etc/ssh
rm ssh_host_*
ssh-keygen -b 4096 -t rsa -C "rsa hostkey" -f ./ssh_host_rsa_key
ssh-keygen -b 521 -t ecdsa -C "ecdsa hostkey" -f ./ssh_host_ecdsa_key
ssh-keygen -t ed25519 -C "ed25519 hostkey" -f ./ssh_host_ed25519_key
Note that you will be asked for a passphrase. Per SSH manual page, host keys must have an empty passphrase. Simply hit return when prompted, (twice per key).
Hardening NTP;
Don't allow others to use Pinebook Pro for time source:
File - /etc/ntp.conf
restrict 127.0.0.1 nomodify nopeer noquery limited kod
restrict [::1]
interface ignore wildcard
interface listen 127.0.0.1
interface listen ::1
Service - systemctl restart ntpd
Disable Samba services, (if you are not using them);
Disable services:
systemctl stop smbd
systemctl disable smbd
systemctl stop nmbd
systemctl disable nmbd
Disable Avahi, (zeroconf & service discovery);
Disable service:
systemctl stop avahi-daemon.service
systemctl stop avahi.daemon. socket
systemctl stop dbus-org.freedesktop.Avahi.service
systemctl disable avahi-daemon.service
systemctl disable avahi.daemon. socket
systemctl disable dbus-org.freedesktop.Avahi.service
Chromium browser:
Launcher change: --password-store=basic
|
|
|
|
| Doubts about Bootloader |
|
Posted by: tuxd3v - 12-07-2019, 02:24 PM - Forum: Linux on RockPro64
- No Replies
|
 |
Hello all,
I have tried to build Rockpro64 bootloader..
But I am still confused with the methodology/ tools used..
I am using ATF mainline + u-Boot..
But it seems that the boards uses OPTEE Trusted Execution Environment instead of ATF?
Is this scheme bellow correct?
Code: +--------+----------------+----------+-------------+---------+
| Boot | Terminology #1 | Actual | Rockchip | Image |
| stage | | program | Image | Location|
| number | | name | Name | (sector)|
+--------+----------------+----------+-------------+---------+
| | | | | |
| 2 | Secondary | U-Boot |idbloader.img| 0x40 | pre-loader
| | Program | TPL/SPL | | |
| | Loader (SPL) | | | |
| 3 | - | U-Boot | u-boot.itb | 0x4000 | including u-boot and atf
| | | | | |
| 4 | - | /boot | boot.img | 0x8000 |
| | | | | |
| 5 | - | / | rootfs.img | 0x40000 |
+--------+----------------+----------+-------------+---------+
Does I need OPTEE 'tee.bin'( renamed as bl31.elf )??
I am already using ARM Trusted Firmware bl31.elf..
Can somebody help me?
Thanks in Advance,
Best Regards
tux
|
|
|
|
| Printers? |
|
Posted by: mspohr - 12-07-2019, 01:20 PM - Forum: Pinebook Pro Hardware and Accessories
- Replies (9)
|
 |
Didn't seem to have any printer configuration in the default distribution.
I used Synaptic to install CUPS and this found a few network printers. However, no way to configure them so they mostly print blank pages.
I installed system-config-printer but it won't authenticate. When I go to add a new printer, it asks for username and password (I only have the default) but tells me "not authorized".
Any suggestions for getting printing to work (obviously a newbie here).
|
|
|
|
|