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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,175
» Latest member: TouchuvGrey
» Forum threads: 16,375
» Forum posts: 117,581

Full Statistics

Latest Threads
SlateOS for PineTime
Forum: Development Discussion on PineTime
Last Post: gzuh000
08-12-2026, 06:24 PM
» Replies: 1
» Views: 103
Beta test Signal Desktop ...
Forum: News
Last Post: as365n4
08-11-2026, 08:57 AM
» Replies: 0
» Views: 94
SlateOS
Forum: General Discussion on PineTime
Last Post: highjumpman
08-10-2026, 07:17 AM
» Replies: 0
» Views: 129
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
08-09-2026, 03:30 AM
» Replies: 23
» Views: 12,943
Where should I post a Pin...
Forum: Getting Started
Last Post: tllim
08-08-2026, 06:56 PM
» Replies: 3
» Views: 407
Hacker Phone Manifesto
Forum: General
Last Post: matteorossi053
08-07-2026, 05:19 AM
» Replies: 6
» Views: 756
wasp-os status
Forum: General Discussion on PineTime
Last Post: cleansugar
08-07-2026, 05:15 AM
» Replies: 6
» Views: 6,586
Selling Pinebook Pro, Pin...
Forum: General
Last Post: arw
08-06-2026, 12:10 PM
» Replies: 2
» Views: 345
Screen size issues after ...
Forum: PineNote Software
Last Post: j_s
08-05-2026, 02:20 PM
» Replies: 1
» Views: 689
Pinephone + Keyboard for ...
Forum: PinePhone Hardware
Last Post: greebleshaver
08-04-2026, 06:27 PM
» Replies: 17
» Views: 12,850

 
  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.


  Serial Console: No input
Posted by: KNERD - 08-19-2017, 09:38 PM - Forum: General Discussion on PINE A64(+) - Replies (3)

Hello.

I am having issue with one distro so it was suggesting I use the serial console to access to see if the distro was booting correctly.

While I see the distro properly booting, but when I try to log in I am not getting any response when I try to type in.

I am using a Prolific PL2303TA based cable with the following pins

Black cable-----GND
Green cable-----TXD
White cable-----RXD
Red cable -------VCC

I have Green connected to pin 8, White connected to pin 7, and Black connected to pin 6

Any ideas on why there is no input?

Thanks!


  Emmc error
Posted by: muzam2 - 08-19-2017, 11:02 AM - Forum: General Discussion on ROCK64 - No Replies

Hi, Im sorry to ask a basic question but the androidtool keeps saying download boot fail and idb preparation fail when i try to flash any image. How can i fix this? Thanks in advance


  Windows 10 and .Net Core running for a day
Posted by: hugob - 08-19-2017, 08:53 AM - Forum: Windows 10 IoT - Replies (2)

Hi,

I have Windows 10 IOT running on my Pine64 2Gb. Everything looks OK. I can manage it via SSH and also via the device portal (port 8080).
I have keyboard, mouse, internet, and Bluetooth.
I even have a small .Net Core "Hello World" app running on it (!).
But the problem is after about a day, I see an animated gearbox and the system is dead. Has nothing to do with the .Net Core app. It looks like a memory leak in the system. Anybody has the same problem and/or knows a solution?

Hugo


I know it is bad to reply to your own message. But in case someone is interested. These are the steps to get this working:

Step-1
Get Win10-IOT running on Pine64.
  1. Download the latest image (http://wiki.pine64.org/index.php/Pine_A6...T_Releases) and burn it on an SD-Card. This sounds easy but it is not. You have to convert a ffu file to a disk image. The python script I tried did no work. I succeeded with the IOT Dashboard on a Win10 laptop. In my case it ended after 99% with an error (could not write blabla..) and a Windows popup that I have to format this disk. Do not do that. Just pull the SD-Card out.
  2. Plug the SD-Card into your Pine64. Make sure it is connected to the local network and you have a DHCP server running. Apply power and wait for 5 minutes. You can see by the LED near the UTP connection that it is doing something.
  3. I had a HDMI monitor attached and a Logitech wireless keyboard/mouse plugged in in the lower USB. A language select menu was displayed on the screen, but the keyboard was not recognized. After half a minute the default language is selected and an overview is displayed. For me it displayed two IP addresses but no connected devices.
  4. Now you can connect to your Pine64 via SSH with the regular IP address (not the kernel debug one). Username/password is [email=Administrator/p@ssw0rd]Administrator/p@ssw0rd[/email] You can also inspect your system via the portal http://<YourPine64IP>:8080 with the same username/password.
  5. I connected a USB switch to the lower USB and attached the keyboard and a usb memory stick to the switch. I tried several keyboards but they did not work. I attached an old cheap Sweex BlueTooth adapter to the switch and to my surprise I could see in the portal that it was working. And now also the Logitech keyboard was working and the USB stick was recognized as D: drive. And they were all diplayed in the overview under connected devices. I doubt whether this has something to do with plugging in the BlueTooth adapter.
  6. You can mount your Pine64 on a PC with \\<YourPine64IP>\C$ Reading is fast, but writing is very slow (or does not work at all). This also hits you when you try to deploy and debug your App with VisualStudio.
  7. In general SSH is working best. E.g. if you enter D: you are swapped to the D: drive. In the commandline of the Pine64 itself this does not work. Also the disk size is not reported correctly.
  8. Do not forget to turn off the Kernel debugging as mentioned on the Pine64 site.

Step 2. Create a DotNetCore 2.0 app.


  1. Install the DotNetCore 2.0 SDK on your PC.
  2. Follow the instructions from https://www.hackster.io/Ra5tko/running-n...arm-0bb717. Instead of the pi calculation I did a simple hello world.
  3. Use win-arm in <RuntimeIdentifiers> and publish for this identifier. Do not use win-arm64. I spend a lot of time on this. It looks like this Pine64 IOT build is 32 bit. (Which is not that bad, because now you can use Raspberry PI examples). Run the .exe from the commandline/SSH. I used a self-contained package instead of copying this preview release to Sytem32 on the Pine64.
  4. I transferred files to my Pine64 with a USB stick, because writing via the network is too slow.


  New pinebook owner, media playback how? (was: larger eMMC, what and how to install?)
Posted by: dahni - 08-19-2017, 05:00 AM - Forum: Linux on Pinebook - Replies (14)

Hello everybody,
my pinebook finally arrived.
I was surpirsed to see that it booted straight into Ubuntu(?) Mate, but I had ordered the 64GB eMMC, and have installed it already, so I will need to re-install I think.
I am right now in the process of flashing Xenial Mate for eMMC to a microSD card I borrowed from my phone.
I hope I'm understanding this correctly:
- pinebook cannot boot from USB
- i need to create an installer on a microSD to install the OS to the internal eMMC
???
I hope this will succeed.

I have been using Linux for a long time now, but have zero experience with SBCs!
What options do I have to install a GNU/Linux based (not Android) operating system to my pinebook, with maximum configurability the way I'm used to building up my own minimal desktop from a barebones install?
Why are the images divided in sdcard and eMMC images?
Can I install all pine64 operating systems, or does it have to be specifically for the pinebook?

Can't I install a "normal" ARM Linux to the eMMC, just like to a hard drive?
How is the update process? A quick glance at the forums here gives me the impression that it is different from a normal Linux distro's package managament?

PS:
the Ubuntu(?) Mate the pinebook came preinstalled with works well enough, but I noticed straightaway that media playback is abysmal: (s)mplayer complains that "This device is too slow!" - and playback is indeed very choppy (a h264 encoded 720p full length movie), the video is some sort of hardware overlay on top of all other windows.
Is this an older version of the operating system, will the version provided by the pine64 installer (xenial mate 0.6.2-77 for eMMC) bring some improvement?

Thanks for reading this far.

Cheers,

d.