Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 29,466
» Latest member: Creig
» Forum threads: 16,192
» Forum posts: 116,855
Full Statistics
|
Latest Threads |
Pinephone Pro wont boot t...
Forum: General Discussion of PinePhone Pro
Last Post: KNERD
7 hours ago
» Replies: 1
» Views: 50
|
PinePhone Pro discontinue...
Forum: General Discussion of PinePhone Pro
Last Post: KNERD
7 hours ago
» Replies: 4
» Views: 129
|
Are there plannes to crea...
Forum: PinePhone Pro Hardware
Last Post: franzthiemann
Today, 04:43 AM
» Replies: 2
» Views: 795
|
prototyping to help someo...
Forum: General
Last Post: xerosenex
Today, 02:31 AM
» Replies: 0
» Views: 35
|
Password reset via u-boot...
Forum: PineNote Software
Last Post: lunnabae
Yesterday, 01:17 AM
» Replies: 6
» Views: 1,690
|
incorporate a multimeter ...
Forum: General
Last Post: lalisa12
Yesterday, 01:14 AM
» Replies: 2
» Views: 489
|
New PineNote: No WiFi aft...
Forum: PineNote Software
Last Post: krexplex
08-12-2025, 01:09 PM
» Replies: 5
» Views: 1,410
|
Full desktop Surfing and ...
Forum: General Discussion on Pinebook Pro
Last Post: Pattienner
08-10-2025, 10:35 PM
» Replies: 2
» Views: 467
|
Any recommended brands/mo...
Forum: Pinebook Pro Hardware and Accessories
Last Post: fnfgopro
08-10-2025, 08:38 PM
» Replies: 2
» Views: 851
|
Thoughts after a year wit...
Forum: General Discussion on Pinebook Pro
Last Post: tantamount
08-10-2025, 02:25 PM
» Replies: 3
» Views: 616
|
|
|
Problems At Shutdown? |
Posted by: robbiemacg - 08-22-2017, 10:02 AM - Forum: Linux on Pinebook
- Replies (10)
|
 |
I'm running the most current, stable kernel. Just pulled my Pinebook out of my briefcase to discover it didn't actually shutdown when I last ended a session (reworked a bit of code on the bus this am), and my battery is all but dead.
Anyone else experience something similar? Any thoughts on what logs I might look at to start to get to the bottom of things?
|
|
|
rant - userland is 32-bit |
Posted by: bitbank - 08-22-2017, 08:04 AM - Forum: Linux on Rock64
- Replies (3)
|
 |
Part of the reason I bought the Rock64 is to have a decent aarch64 system with more RAM and faster USB than some of my other ARM64 SBCs. Today while trying to build one of my projects, I discovered that the Linaro Linux distributed with the Rock64 has a 64-bit kernel, but 32-bit userland. This caused my build script to fail because uname returns only aarch64 as the system type. Besides this very disappointing news, so far, I've encountered the following issues with the board:
1) No SPI driver in current linux distribution
2) USB loses power and won't respond
3) Missing wifi drivers for my wifi dongles
4) Half of the GPIO header is unusable because it has conflicts or has been repurposed
What's the point of selling a 64-bit board that only runs 32-bit software? The Cortex-A53 is an old, slow ARM design and it's only benefit is that it supports the ARMv8 register model and instruction set. A new build of Linux can fix this 32/64-bit situation, but the other problems on my list will keep me from ever using it in projects. It looks like this board will join many others collecting dust in the desk drawer of shame.
/rant
|
|
|
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.
|
|
|
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]](http://i.imgur.com/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]](http://i.imgur.com/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]](http://i.imgur.com/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]](http://i.imgur.com/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]](http://i.imgur.com/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
|
|
|
|