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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,209
» Latest member: Drappehs
» Forum threads: 16,385
» Forum posts: 117,597

Full Statistics

Latest Threads
Thinking about memory bot...
Forum: General Discussion on Pinebook Pro
Last Post: xiley32050
9 hours ago
» Replies: 0
» Views: 8
Hardware Feature Suggesti...
Forum: Quartz64 Hardware and Accessories
Last Post: Independent Researcher
08-30-2026, 07:19 PM
» Replies: 0
» Views: 69
Single-board computers an...
Forum: General
Last Post: Spaker
08-29-2026, 08:12 PM
» Replies: 0
» Views: 117
Pinephone visibly losing ...
Forum: General Discussion on PinePhone
Last Post: baptx
08-29-2026, 11:18 AM
» Replies: 9
» Views: 8,430
Fixing the Quartz64 USB3 ...
Forum: Quartz64 Tutorials
Last Post: mig
08-28-2026, 01:32 AM
» Replies: 1
» Views: 12,783
Pinecil as a Pocket-Sized...
Forum: General
Last Post: Arsen
08-27-2026, 09:15 AM
» Replies: 0
» Views: 148
SlateOS feedback needed!
Forum: Development Discussion on PineTime
Last Post: highjumpman
08-24-2026, 08:00 AM
» Replies: 0
» Views: 223
Pinephone + Keyboard for ...
Forum: PinePhone Hardware
Last Post: Nambo
08-23-2026, 12:17 AM
» Replies: 18
» Views: 13,681
Hello, I am a new member ...
Forum: General
Last Post: WhiteRabbit0
08-20-2026, 12:17 PM
» Replies: 0
» Views: 430
Need help compiling andro...
Forum: Android on Pine A64(+)
Last Post: ahegarosib97
08-20-2026, 08:45 AM
» Replies: 2
» Views: 2,049

 
  PineBook Pro Status Update Page?
Posted by: LittleWalter - 01-05-2020, 10:24 PM - Forum: General Discussion on Pinebook Pro - Replies (19)

Hi,

I'm sure that I'm in the same boat as other folk that made orders, but is there a place to check order-update status? Or should just wait until the end of the month before doing anything like contacting the sales people directly?

I placed an order in early December for an ANSI Pinebook Pro and only received the the paypal transaction email, no kind of direct Pine64 confirmation email.  I don't even remember what the particular email address I used for the order, so I don't even know how to look that up.

Thanks!


  Adjust brightness of backlight i3w-Manjaro
Posted by: Gerhard - 01-05-2020, 04:06 PM - Forum: Pinebook Pro Tutorials - No Replies

To adjust the brightness in i3w on Manjaro or Arch:


  1. Code:
    sudo pacman -S brightnessctl

  2. Add this keybindings to your config:
    Code:
    #Adjust Brightness with brightnessctl
    bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl -q s  +1
    bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl -q s  1-
           
Reload your config and adjust brightness with FN+F1 and FN+F2


  i3blocks Manjaro battery status script
Posted by: Gerhard - 01-05-2020, 02:35 PM - Forum: Pinebook Pro Tutorials - No Replies

I did this to have battery-status on the i3bar:


Code:
#!/bin/bash
#simple Shellscript for i3blocks on Pinebook pro
#05012020 geri123@gmx.net Gerhard S.
#battery-symbols: on Manjaro you need the awesome-terminal-fonts package installed!
PERCENT=$(cat /sys/class/power_supply/cw2015-battery/capacity)
STATUS=$(cat /sys/class/power_supply/cw2015-battery/status)
case $((
 $PERCENT >= 0 && $PERCENT <= 20 ? 1 :
 $PERCENT > 20 && $PERCENT <= 40 ? 2 :
 $PERCENT > 40 && $PERCENT <= 60 ? 3 :
 $PERCENT > 60 && $PERCENT <= 80 ? 4 : 5)) in
#
       (1) echo $STATUS::"" ::$PERCENT%;;
       (2) echo $STATUS::"" ::$PERCENT%;;
       (3) echo $STATUS::"" ::$PERCENT%;;
       (4) echo $STATUS::"" ::$PERCENT%;;
       (5) echo $STATUS::"" ::$PERCENT%;;
esac

and in the i3blocks-config:


Code:
[batterystat]
command=sh ~/.config/i3blocks/scripts/batterystat
interval=5


  Unable to read files on samba shares (but browsing OK)
Posted by: regivanx - 01-05-2020, 08:34 AM - Forum: Linux on Pinebook Pro - No Replies

Hello!

On default OS: I can browse samba shares, but not open files.

After installing vlc-plugin-samba, I can read files with vlc :

smb://share/music/sweet_sms.mp3

but no:

smb://[2a01:e0a:185:7630:9eb7:dff:fe6c:1e86]/music/sweet_sms.mp3

No other program can read any file. After installing the samba plugin, vlc is the only exception.

In Windows, open shared files works normally.


  TTY Keyboard on PinePhone
Posted by: Danct12 - 01-05-2020, 06:39 AM - Forum: General Discussion on PinePhone - Replies (3)

Have you ever thought that you would get away with mobile UI and live with TTY? Well, it looks like the dream came true.  Big Grin


  Still trying to upgrade
Posted by: georgetina1 - 01-05-2020, 05:16 AM - Forum: Rock64 Tutorials - Replies (1)

Manage to get the system to carry out upgrade to LXDE version 0.8.3 but on reboot the boot sequence runs and then the screen goes blank with the cursor flashing. Reboot gives the same result. Any help please.


  Java 64bit
Posted by: Dreamwalker - 01-05-2020, 05:15 AM - Forum: Linux on Pinebook Pro - Replies (6)

This is probably obvious but I am not brilliant on linux but how do I enable the 64bit JVM for java?  I don't want to just follow some random instructions on the internet due this not been an intel device!


  Baldur's Gate on Pinebook Pro
Posted by: brzegorz - 01-05-2020, 04:51 AM - Forum: Linux on Pinebook Pro - No Replies

Hi, I've managed to get Baldur's Gate II running on Pinebook Pro with Manjaro. In order to achieve that you need to use the GemRB open-source engine. I've published a script which achieves that. Before running, you need to download the latest release from https://github.com/gemrb/gemrb/releases/tag/v0.8.6. Baldur's Gate is bundled with it's enhanced edition on GOG. You can extract it using innoextract, available in Manjaro repositories. I had issues with the git version, though it might have had to do with bad cmake flags. Please note that the script doesn't install the dependencies - check out the sources.
https://bitbucket.org/brzegorz/pinebookp...l_gemrb.sh

Sources:
http://gemrb.org/wiki/doku.php?id=installation

Things I had to correct in order to get it to work:
- Your installation should be in a folder without spaces, e.g. "BaldursGateII" instead of "Baldurs Gate II"
- cmake .. -DDISABLE_WERROR=1 -DSDL_BACKEND=SDL2 -DOPENGL_BACKEND=OPENGL -DSTATIC_LINK=enabled
    - I haven't checked if DISABLE_WERROR and SDL_BACKEND make a difference
   - OPENGL_BACKEND=GLES caused segfaults when starting the game for me
    - STATIC_LINK=enabled is needed for the game to compile. It might have to do with my Python installation, but, well, it works 
- My gemrb.cfg: https://pastebin.com/LvcwRhzw. The annoying thing is that the one which is copied from build dir has wrong paths
- to run: gemrb -c gemrb.cfg

I'm working on the widescreen mod and testing how it actually works right now.

EDIT1: I've freed my friends and won an epic battle with Mephits on 640x480. Stuff seems to be working just fine.

EDIT2: I've added a script to install the widescreen mod. Mephits die twice, everything works: )
https://bitbucket.org/brzegorz/pinebookp...escreen.sh


  Kamils resize_rootfs.sh
Posted by: Bullet64 - 01-05-2020, 03:04 AM - Forum: Linux on RockPro64 - Replies (2)

With new uboot you can boot from PCIe NVMe SSD Smile

https://forum.pine64.org/showthread.php?...2#pid55832

After installation you must resize the root partition. For this Kamil has an script under

Code:
/usr/local/sbin/resize_rootfs.sh

Add this

Code:
/dev/nvme0n1*)
               DISK=${dev:0:12}
               NAME="pcie/nvme"
               ;;

On my system it works, but do it on your own risk!!


  How do I get official support?
Posted by: dream - 01-04-2020, 11:22 PM - Forum: General Discussion on Pinebook Pro - Replies (4)

I just received the PBP ordered in early September, but I found that the default operating system cannot add languages, and I cannot browse Chinese websites. Emailed pinebook@pine64.org but did not reply. Posts in the forum, but did not get an official response.this my post https://forum.pine64.org/showthread.php?tid=8671

How can I get support services? Thank you!