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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,674
» Latest member: hello_kevin
» Forum threads: 16,248
» Forum posts: 117,155

Full Statistics

Latest Threads
No touch KB after update(...
Forum: Mobian on PinePhone
Last Post: biketool
3 hours ago
» Replies: 2
» Views: 63
Running Pinebook (non-Pro...
Forum: Pinebook Hardware and Accessories
Last Post: guidol
Yesterday, 04:19 AM
» Replies: 0
» Views: 51
compass pdf link expired:...
Forum: General Discussion on PinePhone
Last Post: biketool
11-08-2025, 12:56 PM
» Replies: 3
» Views: 174
Pinebook Pro for sale
Forum: General Discussion on Pinebook Pro
Last Post: rfm83
11-08-2025, 09:22 AM
» Replies: 0
» Views: 96
What is wrong with the Mo...
Forum: General Discussion on PinePhone
Last Post: Mahgue
11-08-2025, 05:13 AM
» Replies: 0
» Views: 74
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
11-07-2025, 01:12 PM
» Replies: 12
» Views: 5,910
Wake up Call
Forum: General Discussion on PinePhone
Last Post: biketool
11-06-2025, 06:18 AM
» Replies: 6
» Views: 431
Reinstallation Arch Linux...
Forum: General Discussion on PineTab
Last Post: victor_yeh
11-05-2025, 11:17 PM
» Replies: 0
» Views: 109
I think you can try compi...
Forum: General Discussion on Pinebook Pro
Last Post: wangyukunshan
11-05-2025, 02:25 AM
» Replies: 0
» Views: 141
Second screen mirroring
Forum: General
Last Post: OpalTromp
11-04-2025, 09:53 PM
» Replies: 2
» Views: 1,795

 
  Apps not working
Posted by: milkaca - 07-06-2017, 03:43 PM - Forum: Android on Pinebook - No Replies

Minecraft pocket edition and OpenVPN for Android applications doesn't work on Android. Minecraft doesn't start at all and OpenVPN establish a connection but with no Internet and start to reconnect after some time.


  A7.1 eMMC install image (unofficial!)
Posted by: Luke - 07-06-2017, 01:03 PM - Forum: Android on Pinebook - Replies (19)

By popular demand I modified a Ubuntu Mate installer as per my instructions here to install latest pre-release Android 7.1 image to your Pinebook's eMMC (NB: disregard the message that its installing Ubuntu in the installer - it will install Android). 
This is not an official image so I am just tossing it up on google drive for those who want to try it. Also, I have not tested if it works - so it may not. Do let me know if it doesn't. I have done this in the past and worked just fine so I expect there won't be any issues.

Here is the google drive link 

edit 2: Removed the image because apparently the image did not work. 

Follow this simple procedure:

1) Flash the ubuntu install image to SD
2) mount rootfs of the installer 
3) delete the pinebook.img (please check, I cant remember if thats what its called)
4) rename A7.1 image to 'pinbook.img' 
5) copy the renamed A7.1 image to the installers rootfs
6) put the SD into your Pinebook

edit: Do not update SudoSu - it breaks the installation


  Does the ROCK64 use any closed source boot loaders, firmware, drivers or other blobs?
Posted by: mpb - 07-06-2017, 12:51 PM - Forum: Linux on Rock64 - Replies (4)

Does the ROCK64 use any closed source boot loaders, firmware, drivers or other non-open blobs?

If so, how many and for which components?  Thanks!


  Best OS for Pine A64+
Posted by: abrmx - 07-06-2017, 12:05 PM - Forum: General Discussion on PINE A64(+) - Replies (8)

Hello

I want to know what is the best build for this board. I have just installed Remix OS 2.0 and its okay.... But I want something more. I would like with HArdware Acceleration.

Thanks guys!


  Sound coming out both speakers and headphones
Posted by: eclay - 07-06-2017, 09:15 AM - Forum: Pinebook Hardware and Accessories - Replies (8)

Hello,

I've noticed that when I attempt to plugin headphones to my pinebook and play a video that sound still comes out the internal speakers and the headphones.  Is this how it's supposed to work?  Any ideas how to troubleshoot or fix this?

I'm running the default ubuntu mate on it and I poked around in the sound settings and didn't find anything there that looked like the answer to this problem.


  HDMI Compatability
Posted by: rahlquist - 07-06-2017, 08:19 AM - Forum: General Discussion on PINE A64(+) - Replies (5)

So, its been a good while. The question is, has anything been done with any of the OS that has increased HDMI compatibility, or is it still shi%t? The main reason I bought the Pine64 was to use it as a playback device with Plex since it touted its 4k compatibility, and since even a Pi can work with nearly all HDMI devices I expected this to work, but every time I have tried only one Tv/Monitor in my house out of 5 works.


  Pinebook browser performance
Posted by: advait - 07-06-2017, 05:35 AM - Forum: General Discussion on Pinebook - Replies (6)

Hi pine community,
For android image
Can anyone tell the reason behind poor performance of chrome (or any other) browser mostly during video playing ( VLC player's output is nice )?
Is there any solution?


  GPIO LED blinker using SYSFS on the Rock64
Posted by: MarkHaysHarris777 - 07-06-2017, 03:41 AM - Forum: General Discussion on ROCK64 - Replies (20)

   

In the above pic I'm blinking an LED at physical pin(16) of the Rock64, GPIO3_A5, on the PI-2 bus;

... to use the sysfs method of setting the pin on|off one must first calculate the gpio# using the following:

( bank_num  * 32 )  + ( pad_name * 8 ) + pad_num

where pad names = {A:0, B:1, C:2, D:3}

In the above example the bank_num is 3 , pad_name is 0*8,  and the pad_num is 5 ,  so:
 ( 3 * 32 ) + ( 0 * 8 ) + 5  =  101

The following steps are used to set the gpio pin on|off:

1) sudo -i
2) echo 101 > /sys/class/gpio/export
3) echo out > /sys/class/gpio/gpio101/direction
4) echo 1 > /sys/class/gpio/gpio101/value          <--ON
5) echo 0 > /sys/class/gpio/gpio101/value          <--OFF

The following codes will blink gpio101 at pin(16), GPIO3_A5:  blinker.sh and sysled.sh are closely related scripts. The former is a controlled loop, and the latter is a forever running loop;  both are useful. Compare the two script and notice that they are almost identical.

blinker.sh

Code:
#!/bin/sh

echo $1 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio$1/direction

COUNTER=0
while [ $COUNTER -lt $2 ]; do
   echo 1 > /sys/class/gpio/gpio$1/value
   sleep .35
   echo 0 > /sys/class/gpio/gpio$1/value
   sleep .65
   COUNTER=$(($COUNTER+1))
done

echo $1 > /sys/class/gpio/unexport

To run blinker enter two parameters;  the first the gpio#, and the second the number of times you want it to blink!

sudo  ./blinker.sh  101  7

(will blink gpio101 seven times)


sysled.sh

Code:
#!/bin/sh

echo $1  > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio$1/direction

COUNTER=0
while [ $COUNTER -lt 10 ]; do
   echo 1 > /sys/class/gpio/gpio$1/value
   sleep .35
   echo 0 > /sys/class/gpio/gpio$1/value
   sleep .65
done


To run sysled: 

sudo  -b  ./sysled.sh  101

(will strobe gpio101 forever)

( remember to cd into the working directory where you place the script   )
( also, don't forget to make the script executable: chmod 0754 sysled.sh )

   

In the pic above I have attached the grey wire at ground pin(14),  and the orange wire at pin(16).

The anode of the LED is attached at the orange wire, and the cathode of the LED is attached to the grey wire through the ballast resistor , which is 330 ohms. The LED is a low power (5-7ma) 3mm standard LED.

I have so far tested the blue pins ( see chart ) and the green pins.  DO NOT use the blue pins if you're using the micro SD card !  If you're booting from the eMMC module (as I am) then the blue pins and most of the green pins are available to you;


  Throttling?
Posted by: genosensor - 07-05-2017, 10:12 PM - Forum: Rock64 Hardware and Accessories - Replies (8)

I'm looking at this board as an upgrade to my Hardkernel C2.
Even with its large heatsink, the C2 reaches 72C under load, in my experience.
(but it does not throttle!)

The Rock 64 has similar power dissipation in the same form factor.
Can anyone recommend case and/or heat sink for it that will keep it from throttling under sustained load?

Thanks!


Question Building up to LXDE from Xenial-Minimal
Posted by: falcon15500 - 07-05-2017, 06:11 PM - Forum: Linux on Pinebook - Replies (2)

Hi all,

As per the thread heading, I am in the process of building up LXDE from the Xenial-Minimal 0.6.1 image.

Let me tell you - so far it's been quite a trial! Smile
I am very close to having things running how I would like them, with a few exceptions that irk me.

At the present time I cannot get suspend working when I close the PB lid.
In journalctl I can see the following:

Jul 06 00:08:23 pinebook kernel: hall: (D) hall_isr
Jul 06 00:08:23 pinebook kernel: hall: (I) HALL_CLOSE
Jul 06 00:08:27 pinebook kernel: hall: (D) hall_isr
Jul 06 00:08:27 pinebook kernel: hall: (I) HALL_OPEN

So obviously the kernel is detecting the lid position changes.
How can I get the suspend working off this?  I currently have xfce-power-manager running (for a battery applet) and although it is set to suspend on lid close - it doesn't.

Anyone have any ideas?  

M.