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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,002
» Latest member: Dezznuts y767!hdjx
» Forum threads: 16,337
» Forum posts: 117,447

Full Statistics

Latest Threads
Mobian image for the Pine...
Forum: Mobian on PinePhone
Last Post: Korfou
04-27-2026, 09:57 AM
» Replies: 2
» Views: 172
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
04-19-2026, 12:56 PM
» Replies: 13
» Views: 14,983
Pine Time dead
Forum: General Discussion on PineTime
Last Post: chris.burmajster
04-18-2026, 10:08 AM
» Replies: 0
» Views: 205
Booting Issues
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:17 PM
» Replies: 24
» Views: 19,572
App launcher shows tiny i...
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:12 PM
» Replies: 1
» Views: 1,133
my pinecil v2 is not work...
Forum: General Discussion on Pinecil
Last Post: jagrav
04-17-2026, 06:28 AM
» Replies: 0
» Views: 138
Freezes and kernel panics...
Forum: Linux on RockPro64
Last Post: prahal
04-15-2026, 06:48 PM
» Replies: 4
» Views: 1,474
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 323
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 9,321
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 456

 
  Arcade Cabinet
Posted by: SirLenuxx - 11-19-2017, 04:02 PM - Forum: Game Station Emulation - Replies (2)

Hello everyone recently i got the idea of using again my pine 64 but this time to make a Arcade Cabinet , i was asking myself how should i deal with the buttons and with the OS i was planning of workinf with Linux Ubuntu and retroarch thanks of helping me for my future project .


  PuTTY Disconnected : no supported authentification methods available (server sent : p
Posted by: tomtomtom - 11-19-2017, 03:03 PM - Forum: Linux on Rock64 - Replies (3)

Hello;
I use PuTTy to connect to the OMV ROCK 64.


I just want to connect simply with login and password.
I try to add a SSH public key, but no success.
So i delete PuTTY, clean config and reinstall.
I try to connect simply with login and password.
But when i put the login, this message appears.

'PuTTY Disconnected : no supported authentification methods available (server sent : publickey)'

Putty stop at :

Code:
login as: root

Do you know if i could connect log/pass again or it is a server issue, and the only solution is to fomat / reinstal OMV on the ROCK 64 or may i try to connect directly (with keyboard and screen) the Rock64 ?

------------
Rock 64 - 1 Go Ram - SD Card System on + OMV (Debian) 3.0.88 Erasmus - Linux 44.77 - 118 + Official POWER SUPPLY 3A/5V + Official ACRYLIC OPEN ENCLOSURE.
[Image: 18qm.jpg]


Bug Fan speed controlled by CPU temp script
Posted by: mikedhoore - 11-18-2017, 03:37 PM - Forum: Rock64 Hardware and Accessories - Replies (2)

Hi,

I wrote a script to control my fan.
The fan speed is controlled by the temp of the CPU.
I'm pretty new to bash so I'm hoping for some feedback and off course is everybody free to use the script how they like. Big Grin

Code:
#!/bin/bash
#MikeD
#Automatic fan on cpu temp

CHECK_TIME=10 #IN SEC

function pwm(){
LOOP=0
while [ $LOOP -lt $(($CHECK_TIME*75)) ]; do
       echo 1 > /sys/class/gpio/gpio82/value
       sleep $1
       echo 0 > /sys/class/gpio/gpio82/value
       sleep $2
       LOOP=$(($LOOP+1))
done
}

function fanOff()
{
echo 0 > /sys/class/gpio/gpio82/value
sleep $CHECK_TIME
}

function fanTweFiv()
{
pwm .0025 .0075
}

function fanFifty()
{
pwm .0050 .0050
}

function fanSevFiv()
{
pwm .0075 .0025
}

function fanFull()
{
echo 1 > /sys/class/gpio/gpio82/value
sleep $CHECK_TIME
}

while [ 1 ]; do
       TEMP=$(cat /sys/class/thermal/thermal_zone0/temp)

       if [ $TEMP -le 20000 ]
       then
               fanOff
       fi
       if [ $TEMP -gt 20000  -a  $TEMP -le 35000 ]
       then
               fanTweFiv
       fi

       if [ $TEMP -gt 35000 -a $TEMP -le 50000 ]
       then
               fanFifty
       fi

       if [ $TEMP -gt 50000 -a $TEMP -le 65000 ]
       then
               fanSevFiv
       fi

       if [ $TEMP -gt 65000 ]
       then
               fanFull
       fi

done

Thx in advance Smile


  root running from usb connected ssd locks up system
Posted by: marcelser - 11-17-2017, 04:50 PM - Forum: Debian - No Replies

Hi,

I connected a msata SSD (Samsung EVO 850) mounted in a case with USB3 to lower USB Type A plug. Then I copied root & swap onto it and replaced initrd and modified uDev.txt to set root filesystem on SSD

The whole process is described in this threaqd https://forum.pine64.org/showthread.php?tid=1114

In theory works fine. But after some time my pine just freezes out of nowhere. Sometimes it runs for minutes some times hours but sooner or later it locks up which is just a situation which I cannot accept as it's designed to run openHAB.

Does anybody have any input what might cause this before I throw the pine a64 into trash and switch back to rasperry pi3 which can boot directly from USB connected msata. I already have built 2 of these configurations and they just run and run and run.

Would be great to get any help, because the pine is much more powerful especially because I have the 2 GB version then the pi3 but it gave me so much headache so far that I'm really close to sell it and never try it again. Pine A64 support from creators also just sucks.


  Ayufun Pre-Release Repo Error
Posted by: jl_678 - 11-17-2017, 02:33 PM - Forum: Linux on Rock64 - No Replies

Update: I spoke with @ayufan on IRC, and let him know.  He is going to address the situation.

Hi,

I have been using the Ayufun pre-release kernel with great results.  Recently, I am seeing an error when I perform an apt-get update.  Here is what appears:

Code:
Ign:11 http://deb.ayufan.eu/orgs/ayufan-rock64/pre-releases  InRelease         
Err:12 http://deb.ayufan.eu/orgs/ayufan-rock64/pre-releases  Release
  502  Bad Gateway
Reading package lists... Done
E: The repository 'http://deb.ayufan.eu/orgs/ayufan-rock64/pre-releases  Release' does no longer have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Is anyone else seeing this?


  Firefox 57
Posted by: Luke - 11-16-2017, 05:05 PM - Forum: General Discussion on Pinebook - No Replies

Just a heads up; Firefox 57 is out and its really fast on the Pinebook - massive performance increase over 56 even on sites riddled with horrible ads. 

Using the tweaks I posted some time back it makes for really usable browsing.


  Pinebook LCD pixel errors?
Posted by: kuszinger - 11-16-2017, 12:13 PM - Forum: Pinebook Hardware and Accessories - Replies (3)

I'm using my Pinebook on a daily base. Actually, this is my No#1 portable, taking it everywhere with me.
I use it extensively for web browsing, email, remote controlling Linux and Windows desktops (FreeRDP, X2Go).

So, it is in real production use.

I'm not sure if it arrived like this or changed over time but I realized that it has a kind of pixel errors now.
These are larges ares, I mean more pixel than one. They are lighter then their surroundings and are best visible
when the screen is white.

I made a photo of it (slightly enhanced in GIMP).

What could it be? Will it be worse?

[Image: IMG_20171116_184529_enhanced.jpg]

thanks
Robert


  Rock64 crash - spinlock lockup suspected on CPU (possibly thermal reason)
Posted by: JoeH - 11-16-2017, 09:08 AM - Forum: Linux on Rock64 - Replies (2)

Hi, I often get an error spinlock lockup suspected on CPU#X where x is cpu core number from 0 to 3, one after another. When that occurs in terminal everything freezes and the only way is to reboot the device using force poweroff. It's popping up only under stress (at least 30-50% of all cores) in Chrome for instance. I'm using a 13x13x10 mm radiator with average quality thermal paste. Temperature is about 50-65 Celsius degrees. I'm using latest Ubuntu Artful build. Is it possible that it's caused by thermal issue? Hardware Issue? Or maybe it's because unstable distro?


Please go easy on me, I'm rather beginner.


  I'll like to place an order...from CHINA
Posted by: uncle_bear - 11-16-2017, 01:06 AM - Forum: Shipment Related Discussion - Replies (8)

Please help make that happen.


  I'll like to place an order...from CHINA
Posted by: uncle_bear - 11-16-2017, 12:57 AM - Forum: General Discussion on ROCK64 - No Replies

So I have pi this and pi that, I bought them from uncle Ma, I'll like to try rock64 2G. Please help make that happen, maybe put one on uncle Ma's "SALTFISH"?  Angel please?