Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 29,467
» Latest member: wsmhjqq123
» Forum threads: 16,192
» Forum posts: 116,858
Full Statistics
|
Latest Threads |
Pinephone Pro wont boot t...
Forum: General Discussion of PinePhone Pro
Last Post: zetabeta
1 hour ago
» Replies: 3
» Views: 81
|
PinePhone Pro discontinue...
Forum: General Discussion of PinePhone Pro
Last Post: teekay
3 hours ago
» Replies: 5
» Views: 173
|
Are there plannes to crea...
Forum: PinePhone Pro Hardware
Last Post: franzthiemann
Yesterday, 04:43 AM
» Replies: 2
» Views: 804
|
prototyping to help someo...
Forum: General
Last Post: xerosenex
Yesterday, 02:31 AM
» Replies: 0
» Views: 45
|
Password reset via u-boot...
Forum: PineNote Software
Last Post: lunnabae
08-13-2025, 01:17 AM
» Replies: 6
» Views: 1,701
|
incorporate a multimeter ...
Forum: General
Last Post: lalisa12
08-13-2025, 01:14 AM
» Replies: 2
» Views: 495
|
New PineNote: No WiFi aft...
Forum: PineNote Software
Last Post: krexplex
08-12-2025, 01:09 PM
» Replies: 5
» Views: 1,422
|
Full desktop Surfing and ...
Forum: General Discussion on Pinebook Pro
Last Post: Pattienner
08-10-2025, 10:35 PM
» Replies: 2
» Views: 486
|
Any recommended brands/mo...
Forum: Pinebook Pro Hardware and Accessories
Last Post: fnfgopro
08-10-2025, 08:38 PM
» Replies: 2
» Views: 861
|
Thoughts after a year wit...
Forum: General Discussion on Pinebook Pro
Last Post: tantamount
08-10-2025, 02:25 PM
» Replies: 3
» Views: 621
|
|
|
Power LED / Charging LED Question |
Posted by: d97 - 09-03-2017, 09:06 AM - Forum: Pinebook Hardware and Accessories
- Replies (4)
|
 |
Hi - I've noticed what I think is somewhat unusual behaviour in my 14 inch Pinebook. When I plug the adapter in, the orange charging light doesn't light up to let me know that the machine is charging - at least not until I've done a couple of things.
When the machine is shut down and I plug the adapter in, I get no orange led.
When I open the pinebook up, I get a brief flash of what looks like a battery charging icon but the LED stay unlit.
When I start the pinebook, the LED lights up orange and stays lit after I shut the machine down - until it is fully charged and the LED goes off.
Is this normal? Has anybody else experienced this?
D.
|
|
|
Has anyone taken Puppy for a run? |
Posted by: CD Xbow - 09-02-2017, 09:08 PM - Forum: Linux on Pinebook
- Replies (5)
|
 |
I received my Pinebook a few weeks ago and have enjoyed playing with it, and of course pulling it apart. It's nice to pull apart something that humans can actually work with, pretty nicely made with no glue. All in all a great platform for hacking. Congrats to the builders and devs, well done. On the default Ubuntu Mate, I installed Misfit3D and Meshlab OK, a couple of 3D packages I use frequently, as well as Openshot and Audacity. Just for fun I installed Red Eclipse and managed to get 4 fps, though I didn't really expect it to even run at all. I tried a few other distros, including Bliss (misnamed in my opinion) and Android and the experience was still disappointing.
Then I remembered there was a Puppy Linux version for ARM. Barry Kauler, the developer of Puppy built an ARM version for the Raspberry Pi, Quirky, this is his post announcing it - http://barryk.org/news/?viewDetailed=00441 I have used this on the Pi and it works well so I tried to boot the Pinebook with the image, but without success. Would be interested if anyone else has had a try? I looked in the Puppy forums and could only find a mention of of the Pine64 board but no post relating to running Quirky on the Pine platform.
|
|
|
desktop stops responding to clicks |
Posted by: sjk - 09-02-2017, 11:49 AM - Forum: Linux on Rock64
- Replies (2)
|
 |
I have loaded ubuntu-mate from 0.4.15-17 through 0.5.5 and have been seeing the same behavior with desktops.
Initially everything is OK, I can open terminals, apps, etc... After some period of time, the screen will not respond to mouse click or allow focus (via mouse click).
Moving the mouse causes the screen to wake (from powersave mode), and the mouse moves. Also The screen continues to redraw, i.e. if I have a sysm monitor on the screen I see it updates. I cannot click on an open terminal, or do anything except move the mouse around.
The system is still responsive -- I can ssh into the rock64.
Is this a know issue? Is there a fix?
Many thanks,
Scott.
P.S.> I always started with a minimal image, and used install-deskop to get mate up an running.
|
|
|
How to set Keybindings for LCD Brightness in i3wm |
Posted by: MarkHaysHarris777 - 09-01-2017, 03:21 AM - Forum: Linux on Pinebook
- Replies (2)
|
 |
Greetings,
The purpose of this tutorial blog post is to describe how to setup LCD brightness keybindings in the i3wm tiling window manager , on your Pinebook.
Below I am providing a script which will be placed in /usr/local/sbin/lcd_bright.sh , which may be used to set the brightness of the LCD display in increments of +10 or -10. I will describe the step(s) necessary to activate the script via /etc/sudoers.d so that the keybindings ( bindsym ) in the i3 config can run as sudo without needing to prompt for the password !
First, the scripts... the first one is the lcd_bright.sh ( which does the work ) and the second one is the source file for /etc/sudoers.d which allows the bindsym to call lcd_bright.sh without a password.
lcd_bright.sh
Code: #!/bin/bash
#
# lcd_bright.sh v0.1a
#
# Mark H. Harris
# 08/31/2017
#
# Usage: lcd_bright.sh <U|D> <value>
#
MODE=`echo $1 |tr '[a-z]' '[A-Z]'`
LCDVALUE=`cat /sys/class/backlight/lcd0/brightness`
if [ "$MODE" = "U" ]
then
NEWVALUE=$(( $LCDVALUE + $2 ))
if [ $NEWVALUE -le 100 ]
then
echo $NEWVALUE > /sys/class/backlight/lcd0/brightness
echo $NEWVALUE
else
echo $LCDVALUE
fi
else
NEWVALUE=$(( $LCDVALUE - $2 ))
if [ $NEWVALUE -gt 30 ]
then
echo $NEWVALUE > /sys/class/backlight/lcd0/brightness
echo $NEWVALUE
else
echo $LCDVALUE
fi
fi
lcd_bright_rules
Code: # lcd bright rules
Cmnd_Alias LCDBRIGHT=/usr/local/sbin/lcd_bright.sh
ALL ALL=NOPASSWD: LCDBRIGHT
Procedure:
Open a terminal and access root with :
sudo -i
Place the lcd_bright.sh script in the /usr/local/sbin/ directory.
Set the owner and group with :
cd /usr/local/sbin/
chown root lcd_bright.sh
chgrp root lcd_bright.sh
Make the script executable with :
chmod 0754 lcd_bright.sh
Place the lcd_bright_rules file in the /etc/sudoers.d/ directory.
Set the owner and group with :
cd /etc/sudoers.d
chown root lcd_bright_rules
chgrp root lcd_bright_rules
Set special read permissions with :
chmod 0440 lcd_bright_rules
At this point the system is setup to use the lcd_bright.sh script. The last step(s) necessary is to set the keybindings in the i3wm config file.
You do not need root permissions to do the following; if you're still in root# please exit.
exit
Change into the i3wm config directory for your default pine64 i3 user with :
cd ~/.config/i3/
Use your favorite editor to edit the config file.
Somewhere near the end of the other bindsym entries , add these two definitions :
Code: bindsym $mod+Shift+u exec sudo /usr/local/sbin/lcd_bright.sh u 10
bindsym $mod+Shift+d exec sudo /usr/local/sbin/lcd_bright.sh d 10
Save the file.
Re-read the config file with :
mod + Shift + c
Restart the i3wm tiling window manager with :
mod + Shift + r
Congratulations! Your brightness keybindings are set for i3wm.
To use the keybindings use :
mod + Shift + u (turns up the LCD backlight by 10)
mod + Shift + d (turns down the LCD backlight by 10)
|
|
|
Bad EMMC |
Posted by: s69arky - 08-31-2017, 05:11 PM - Forum: Pinebook Hardware and Accessories
- Replies (29)
|
 |
Just got my new pinebook and played with it but ran out of system memory really quick. Now knowing I would I purchased the 64GB EMMC at the same time. My problem is that I followed all instructions and it says that there is no EMMC detected. The only info I can find on this in the forum is that not all are supported. I purchase mine when I ordered the pinebook. I opened a case about this a week ago and still haven't heard anything. Just wondering if there is a tip or trick I can use to get it up and running.
Sent from my SM-G955W using Tapatalk
|
|
|
|