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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,938
» Latest member: Ephraim
» Forum threads: 16,330
» Forum posts: 117,428

Full Statistics

Latest Threads
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
Yesterday, 04:22 PM
» Replies: 3
» Views: 640
Womens In Your City - Ano...
Forum: General
Last Post: Hipocrates
Yesterday, 01:01 AM
» Replies: 0
» Views: 65
BT PAN - we need iptables...
Forum: Mobian on PinePhone
Last Post: biketool
03-25-2026, 12:57 PM
» Replies: 1
» Views: 457
How can I record video on...
Forum: General Discussion on PinePhone
Last Post: baptx
03-25-2026, 12:55 PM
» Replies: 23
» Views: 18,388
u-boot rk356х (rockchip r...
Forum: Quartz64 Tutorials
Last Post: hamsterbacke
03-25-2026, 09:39 AM
» Replies: 18
» Views: 34,005
A/V output enable
Forum: Linux on Rock64
Last Post: 8lall0
03-24-2026, 04:45 PM
» Replies: 0
» Views: 66
If your USB-C port is fla...
Forum: PinePhone Pro Hardware
Last Post: Zebulon Walton
03-24-2026, 02:25 PM
» Replies: 0
» Views: 86
Pinebook problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
03-18-2026, 08:58 AM
» Replies: 2
» Views: 4,687
Pine a64+ power supply
Forum: General Discussion on PINE A64(+)
Last Post: davidspencer
03-18-2026, 01:02 AM
» Replies: 0
» Views: 170
Private / self-hosted "Cl...
Forum: General Discussion on PinePhone
Last Post: cyberb123
03-17-2026, 11:57 AM
» Replies: 8
» Views: 7,220

 
  Keyboard commands for Android
Posted by: Drsdroid - 08-21-2017, 05:00 PM - Forum: Android on Rock64 - Replies (3)

I was wondering if anyone had good keyboard commands to perform the function of the "HOME" key in android

I know ESC works for BACK and ALT+TAB works for recent apps. But nothing seems to work for me for "HOME", surprisingly the "HOME" key on the keyboard doesn't do it.

I'm using a TV remote coupled with the FLIRC adapter and it works great for android.  Works 100% flawlessly with KODI so I may use KODI as my front-end.


  libssl-dev eon't install
Posted by: williamcolls - 08-21-2017, 03:22 PM - Forum: Debian - Replies (2)

I need to install libssl-dev, but when I try I am getting the following error:

The following packages have unmet dependencies:
libssl-dev : Depends: libssl1.0.0 (= 1.0.1t-1+deb8u6) but 1.0.2l-1~bpo8+1 is to
be installed

/etc/debian_version says 8.9 and i installed the pine64-image-debianmate-310102bps-2.img 

uname -a gives the following output:
Linux dev-fs 3.10.102-2-pine64-longsleep #66 SMP PREEMPT Sat Jul 16 10:53:13 CES
T 2016 aarch64 GNU/Linux


How do I fix this?

Thanks for your time.

William.


Big Grin Solar Eclipse 2017 August 21 Minnesota U.S.A.
Posted by: MarkHaysHarris777 - 08-21-2017, 01:50 PM - Forum: Community and Events - No Replies

         

Viewing the eclipse near peak ( 88% S.E Minnesota ) ;  I'm using a hand scope which I use to scan my PCB(s) for solder balls , bridges , and the like ( inverted ) ;  pic taken with Samsung S6 emphasizing color distortion !




                 

Near the peak eclipse the sunlight filtered through the leaves of the trees behind my house leave very distinct crescents which are beautiful if not very spooky.  These pics of solar crescents are displayed on the deck,  the table cloth,  and the siding of my house.

During the eclipse the heat went away and the neighborhood had a very spooky eeriness hard to describe.  ... like a beautiful 100 watt day set to 15 watt with a dimmer switch;  very spooky feel.

Tongue


Photo Daughter Card SBC for P64
Posted by: blue - 08-21-2017, 12:41 PM - Forum: General Discussion on PINE A64(+) - Replies (5)

I dunno if any of you remember, but in the 90's and 2k's you could buy a single-board computer that slotted into an ISA or PCI slot and acted as a very, very expensive watchdog for big servers. Well, history is repeating itself: here's a pi zero acting as a daughterboard for a pine64. Big Grin

[Image: MhtIJU.jpg]


  1.3GHz
Posted by: stuartiannaylor - 08-21-2017, 12:21 PM - Forum: General Discussion on ROCK64 - Replies (13)

I am presuming the Rock64 max clock speed is set in the DTS.

I just wondered if 1.3GHz had been chosen as a safe level without cooling as the Rock64 is supplied.
Did anyone do any testing with passive and active cooling at higher clock speeds or did 1.3GHz seem to be the limit.

I am presuming with the 1.5Ghz rating its a junction temperature cooling decision and wondered if a kernel/image might be supplied at higher clockspeeds for those who want to employ increased cooling solutions.


  Guide - Setting up a SMB(Windows) file server
Posted by: Ptheven - 08-21-2017, 08:54 AM - Forum: Rock64 Tutorials - No Replies

This quick and easy tutorial will show you how to set up a shared folder on your Rock64 and host it via SMB/CIFS to share it amongst Windows/Mac/Linux Clients. 

I will also show you how to connect to it using Googles Android client. 
_____________________

Prerequisites: 

Rock64 Board running Linux , Connected via Ethernet or Wifi

Know the IP address/Hostname of your board, SSH access. 

Basic knowledge of how to use the linux terminal


Suggested:


An external drive to host the Shared Directory

Basic understanding of how linux handles USB drives and File Permissions



____________________

I will continue this tutorial off from the last one, and I will set up the shared directory in the Flash drive. 


Firstly, you'll need to update your repositories and install any pending updates. This is good practise before installing software on any linux system. Debian/Ubuntu use the "apt" package management tool. You'll need superuser access for this. 


Code:
sudo apt update && sudo apt upgrade 


Type in your password when prompted and 'y' when prompted to install updates. 


After that, you'll need to invoke apt to install the samba server: 


Code:
sudo apt install samba samba-common-bin


[Image: t8pJbWu.png?1]

Depending on your distro, samba-common-bin may already be installed. However, allow the other supporting software to be installed. 

The next step is to create a directory to host the network share. In this senario, I will be placing it in the Flash drive mentioned in the tutorial listed at the top. 

Navigate to your mounted FS location. Following the previous tutorial, for me it is: 

Code:
cd /media/USB-test3/


Make a new directory which will act as the shared location. We will create it with Use/Write/Execute permissions for everybody inside the folder: 


Code:
sudo mkdir -m 1777 RockShare



Now we can edit Samba's configuration file to create a new share based on the directory we just set up: 


Code:
sudoedit /etc/samba/smb.conf



[Image: ZB2fLBd.png?1]

Use the Up/Down or PageUp/Down keys to navigate to the bottom of the file to create a new entry.

Code:
[share]
Comment = Rock64 Share
Path = /media/USB-test3/RockShare
Browseable = yes
Writeable = Yes
only guest = no
create mask = 0777
directory mask = 0777
Public = yes
Guest ok = yes



[Image: 7hKk4mK.png?1]


These options means that anybody can read, write or execute files in the share, either with a samba user or as a guest. To forbid guest access, simply omit the "guest ok" line. 


Now we can create a specialized user for samba, if you'd like to have your share accessible only with the proper credentials. 

First of all, you need to make a new linux user. In this case, I will be making a new user "rocksmb": 


Code:
sudo useradd rocksmb


After that, you can create a new samba user, and you'll be prompted to type in a password too. This is a unique password, independent to your linux user password: 


Code:
sudo smbpasswd -a rocksmb
New SMB password:
Retype new SMB password:
Added user rocksmb.
 

Now you restart the samba service: 

Code:
sudo /etc/init.d/samba restart
[ ok ] Restarting nmbd (via systemctl): nmbd.service.
[ ok ] Restarting smbd (via systemctl): smbd.service.
[ ok ] Restarting samba-ad-dc (via systemctl): samba-ad-dc.service.

Now your Samba share will be visible and accessible! 

There are many guides about how to access smb shares using Windows: 

https://www.howtogeek.com/176471/how-to-...and-linux/

http://www.techrepublic.com/article/how-...indows-10/

https://www.linux.com/news/using-samba-s...nd-windows

Mac OS: 

https://support.apple.com/en-au/HT204445

Ubuntu: 

https://help.ubuntu.com/stable/ubuntu-he...nnect.html


In all cases, replace the hostname/IP in the guide with the ones you have. 



_________________

If you want to access the drive using mobile apps, there are many apps available on both Android and iOS. 


iOS: https://itunes.apple.com/us/app/fileexpl...82524?mt=8

Android: https://play.google.com/store/apps/detai...ider&hl=en


I dont have an iphone, so I'll do a quick rundown using the android app: 


Download it and upen it to be greeted to a very simple credential screen. Simply fill in the details like:

Code:
smb://HOSTNAMEORIP/SHARE



In our case: 

[Image: ZBN8LZA.png]

Assuming you've put in the right credentials, it will immediately open up the share using the default android file selector: 

[Image: uW5A7bx.png]

However Google's app is VERY rudimentary and barebones. I was able to open image files, but video and audio files gave me problems unless I copied them to internal memory. 

If you need something more full featured, I highly recommend solid explorer: 

https://play.google.com/store/apps/detai...rer2&hl=en


  Useful Threads (fixes and improvements)
Posted by: Luke - 08-21-2017, 07:15 AM - Forum: General Discussion on Pinebook - Replies (1)

Many user fixes and improvements have been posted so I figured that I should take an inspiration from Ghost's thread for the Pine A64(+) and put together a post with useful links for improvements and fixes. 

In no particular order

Ghost's original thread 

If I missed a useful thread do let me know.


  Update to Firefox 55.0.X
Posted by: Luke - 08-21-2017, 06:16 AM - Forum: General Discussion on Pinebook - Replies (5)

For those of you who haven't done so already, do update to Firefox 55.0.2 (at the time of writing). Its a tangible improvement over the previous iteration in terms of performance on the Pinebook. Also, don't forget to apply these tweaks.


  UASP - NAS
Posted by: brabtob - 08-20-2017, 03:53 AM - Forum: Rock64 Hardware and Accessories - Replies (1)

I'm thinking of using the Rock64 as a cheap NAS and backup device. I'll attach a dual enclosure USB3.0 bay. The bottleneck will be elsewhere but does the USB controller support UASP?


  Unable to boot anything...
Posted by: fontalamh - 08-19-2017, 11:04 PM - Forum: General Discussion on ROCK64 - Replies (4)

I bought a Rock64 4GB and an eMMC.

I am unable to boot the board.

I have tried booting the the board repeatedly using the eMMC and 3 different SD cards (and I have tried removing the eMMC and putting the switch on)
I have downloaded every image both hf and 64 bit, some several times. I have tried burning the SD and eMMC in different ways - using your PINE installer, etcher, disk manager, I have used linux and windows to do this. I have checked MD5s for downloaded files where available (community downloads seem to be missing these)

I have encountered three outcomes:

  1. Android boots and I can interact for maybe 20 seconds before the screen freezes I can't actually do anything in that time.
  2. Linux boots and then throws an kernel exception dumping stack trace, sometimes I can ctrl-alt-del to reboot to the same, sometimes I can't. I can only ever do that once.
  3. The 3 lights come on and nothing else happens.
I have tried 2 different power supplies.

If this was a PC I would be trying different memory as this reeks of memory corruption but of course I can't try that.

It feels like the board is at fault - am I missing something?

I've raised a ticket with Pine64.