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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,677
» Latest member: Charlotten
» Forum threads: 16,248
» Forum posts: 117,156

Full Statistics

Latest Threads
compass pdf link expired:...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
Yesterday, 12:39 PM
» Replies: 4
» Views: 230
No touch KB after update(...
Forum: Mobian on PinePhone
Last Post: biketool
Yesterday, 02:25 AM
» Replies: 2
» Views: 129
Running Pinebook (non-Pro...
Forum: Pinebook Hardware and Accessories
Last Post: guidol
11-09-2025, 04:19 AM
» Replies: 0
» Views: 77
Pinebook Pro for sale
Forum: General Discussion on Pinebook Pro
Last Post: rfm83
11-08-2025, 09:22 AM
» Replies: 0
» Views: 129
What is wrong with the Mo...
Forum: General Discussion on PinePhone
Last Post: Mahgue
11-08-2025, 05:13 AM
» Replies: 0
» Views: 93
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
11-07-2025, 01:12 PM
» Replies: 12
» Views: 5,951
Wake up Call
Forum: General Discussion on PinePhone
Last Post: biketool
11-06-2025, 06:18 AM
» Replies: 6
» Views: 501
Reinstallation Arch Linux...
Forum: General Discussion on PineTab
Last Post: victor_yeh
11-05-2025, 11:17 PM
» Replies: 0
» Views: 128
I think you can try compi...
Forum: General Discussion on Pinebook Pro
Last Post: wangyukunshan
11-05-2025, 02:25 AM
» Replies: 0
» Views: 158
Second screen mirroring
Forum: General
Last Post: OpalTromp
11-04-2025, 09:53 PM
» Replies: 2
» Views: 1,803

 
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.


  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