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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 29,999
» Latest member: shuaibAhmedlashari
» 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: 146
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
04-19-2026, 12:56 PM
» Replies: 13
» Views: 14,954
Pine Time dead
Forum: General Discussion on PineTime
Last Post: chris.burmajster
04-18-2026, 10:08 AM
» Replies: 0
» Views: 194
Booting Issues
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:17 PM
» Replies: 24
» Views: 19,492
App launcher shows tiny i...
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:12 PM
» Replies: 1
» Views: 1,123
my pinecil v2 is not work...
Forum: General Discussion on Pinecil
Last Post: jagrav
04-17-2026, 06:28 AM
» Replies: 0
» Views: 126
Freezes and kernel panics...
Forum: Linux on RockPro64
Last Post: prahal
04-15-2026, 06:48 PM
» Replies: 4
» Views: 1,456
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 315
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 9,286
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 443

 
Question 4K @ 60Hz (2160p60) distro support?
Posted by: spawnflagger - 02-19-2018, 01:47 PM - Forum: Linux on Rock64 - Replies (11)

Hello,
  The "Software Images" wiki page has a table that mentions 30Hz refresh for 3840x2160 resolution, but after searching, it's still not clear whether or not there's a Linux distro that supports this full resolution @60Hz.  Can someone confirm that this is working?
(I know the HW spec says HDMI 2.0, so it's just a question of drivers and software).

Also, if it supports 2160p60, does it work at RGB444 chroma subsampling?  (not just YUV420 or YUV422)

Not worried about HDR10- I just want to have a lot of xterm windows open at once (so that rules out Android), and small text looks pretty bad at YUV420.
(I know 30Hz is OK for text too, but since my monitor supports 60Hz, I'd prefer it)

Thanks in advance!


Sad Any OS for 2K Monitor?
Posted by: sercancayir - 02-19-2018, 11:22 AM - Forum: General Discussion on PINE A64(+) - Replies (3)

Hello dear Pine64 Users,

First of all i want to say that i am new here and also with Pine64+ (1gb) version.

I have a 2K resolution 165 Hertz monitor from Omen (gaming brand of HP). When i plug my Pine with HDMI i can't get any signal on my display. I tried the monitor with other devices such as Macbook Pro via HDMI and it's totally fine.

Which operation system can supply 2560x1440p resolution? I mean i don't need that high resolution but Full HD is not working with my display. 

How can i use my Pine? Any support will be fancastic. Thank you!


  [Repaired] [Progressed] [Successful] How to play Minecraft with ROCK 64
Posted by: pine3228 - 02-19-2018, 04:35 AM - Forum: General Discussion on ROCK64 - Replies (9)

Google Translate : 
I was suffering at ROCK 64 whether I can not do Minecraft.
The reason why Minecraft can not easily play on the single board computer with ARM installed,
LWJGL that is downloaded automatically by the launcher is not compatible with ARM.
Therefore, I compile LWJGL with ROCK 64.

* Here, FPS is very low because I do not use GPU to process graphics.
I am using "https://github.com/yuq/linux-lima", "https://github.com/yuq/mesa-lima"
Although I am challenging to compile, because of lack of knowledge, I have not been able to compile and install a forward kernel.
Please tell me how to compile the kernel with ROCK 64!
* The sound does not come out from the headphone jack for some reason!
Please tell me about this matter too!
* If you have any advice, please reply!

Installation:
sudo apt-get update
sudo apt-get install gradle openjdk-8-jdk libx11-dev xorg-dev
reboot
sudo ln -s /usr/lib/jvm/java-8-openjdk-arm64/lib/aarch64/libjawt.so /usr/lib/libjawt.so
git clone https://github.com/LWJGL/lwjgl
cd lwjgl
ant generate-all
ant compile_native
mkdir -p ~/.minecraft/natives
cp ~/lwjgl/libs/linux/liblwjgl.so ~/.minecraft/natives/
cp ~/lwjgl/libs/linux/libopenal.so ~/.minecraft/natives/
cd ~/
wget https://s3.amazonaws.com/Minecraft.Downl...ecraft.jar
At startup:
export _JAVA_OPTIONS='-Djava.library.path=/home/rock64/.minecraft/natives/'
java -jar Minecraft.jar
have fun!


原文 : 
私は、ROCK64で、Minecraftができないかずっと悩んでいました。
ARM搭載のシングルボードコンピュータで、Minecraftが安易にプレイできない理由は、
ランチャーで自動的にダウンロードされるLWJGLがARMに対応していないことです。
そこで、LWJGLをROCK64でコンパイルしてしまいます。

*ここでは、グラフィックの処理にGPUを使っていないため、FPSがとても低いです。
私は、「https://github.com/yuq/linux-lima」、「https://github.com/yuq/mesa-lima」
のコンパイルに挑戦していますが、知識不足で、前方のカーネルのコンパイルとインストールができていません。
ぜひ、ROCK64でのカーネルのコンパイルの方法を教えてください!
*ヘッドホンジャックから音が何故か出ません!
この件についても教えてください!
*何かアドバイスがあったら、ぜひ返信をください!

インストール : 
sudo apt-get update
sudo apt-get install gradle openjdk-8-jdk libx11-dev xorg-dev
reboot
sudo ln -s /usr/lib/jvm/java-8-openjdk-arm64/lib/aarch64/libjawt.so /usr/lib/libjawt.so
git clone https://github.com/LWJGL/lwjgl
cd lwjgl
ant generate-all
ant compile_native
mkdir -p ~/.minecraft/natives
cp ~/lwjgl/libs/linux/liblwjgl.so ~/.minecraft/natives/
cp ~/lwjgl/libs/linux/libopenal.so ~/.minecraft/natives/
cd ~/
wget https://s3.amazonaws.com/Minecraft.Downl...ecraft.jar
起動時: 
export _JAVA_OPTIONS='-Djava.library.path=/home/rock64/.minecraft/natives/'
java -jar Minecraft.jar
楽しんでください!


  LCD Upgrade
Posted by: Lyga - 02-18-2018, 06:26 PM - Forum: Pinebook Hardware and Accessories - Replies (14)

Hello All,
I'm considering upgrading LCD panel on my pinebook to something better.
If I got spec sheet right - the panel used on pinebook is BOE HB140WX1-501, which using 30 pins eDP 1-line interface and require 3.3V. Panel specs
I'm thinking about trying AUO B140HAN01.3, which is 30 pins eDP 2-lines, same 3.3V. Panel specs
Does anyone tried something similar before (not necessary with same panel model)? Is there anything else I need to take into account before purchasing it?


  OMV - transmission watch fix
Posted by: S3phi40T - 02-18-2018, 05:18 PM - Forum: Rock64 Tutorials - No Replies

How to fix "watch" in OMV - transmission plugin:

Watch option checks for *.torrent files in folder and starts downloading them straight away.
OMV by default doesn't let users use Internal memory.
Yes, even home folders (if enabled) are stored on external drive (as a workaround they can be symlinked).



For some reason if "watch" folder is pointed to external drive and file added by SMB share, it checks the "watch" folder only once when daemon start.

Here is quick fix:

In OMV Samba config add to additional options for symbolic links supoprt:

Code:
follow symlinks = yes
unix extensions = no
wide links = yes
allow insecure wide links = yes


create symlink (either manually or via "openmediavault-symlinks" extension) 

make sure appropriate rights are given to linked folder (chmod 777)

Point Watch directory to symlinked folder (as OMV doesn't support internal storage).

Restart Rock64

Now Watch should work properly. It does for me at least Smile


  Which board to use?
Posted by: Dayve - 02-18-2018, 06:31 AM - Forum: Getting Started - No Replies

I have one of the old first gen Pine64 boards running debian 9 and my home automation software on it. Just love it but I'm looking to upgrade o something faster. Which board would be the best? I dont mind spending more for something that will be reliable and fast.
if anyone has some ideas or questions please respond. Smile


  Unsupported USB Drive NTFS exFAT
Posted by: metallica22 - 02-17-2018, 07:37 PM - Forum: Android on Pine A64(+) - Replies (2)

Hi,
When I plug my 64gb USB stick into Pine 64 android 7.1, it says Unsupported USB Drive. If have tried both NTFS and exFAT. The Pine formats as FAT32, which works, however I can transfer large files, so is usless.
Please help.


  eMMC on clusterboard in node 0
Posted by: aww - 02-17-2018, 05:33 PM - Forum: Clusterboard - Replies (3)

Doesn't seem to work, I haven't exhaustively confirmed on all BSP based kernels but Ayufan's xenial image based of the BSP kernel doesn't seem to detect it. 

Mainline Arch seems to see it, but then hangs at boot. 

The same eMMC card works fine on the baseboard.

Edit: So the hang a boot was a misdirection

This is what I see in the logs about what I think is the eMMC:

[ 4.591099] mmc2: unrecognised CSD structure version 0
[ 4.596307] mmc2: error -22 whilst initialising MMC card


  There is a usable distro for Pine A64?
Posted by: polv89 - 02-17-2018, 01:16 PM - Forum: General Discussion on PINE A64(+) - Replies (6)

Hi guys, i'm here to askinf if you know a usable distro (what about android now?) for Pine A64, to run smoothly vlc, streaming, ecc
Thanks a lot


  Shutdown server and corrupt data : how to login ?
Posted by: Florent - 02-17-2018, 01:11 PM - Forum: Linux on Rock64 - Replies (2)

Hello !

I have some problems with corrupt data on my Ayufan's Stretch server.
Last night, the external USB 3 HDD suddenly began to vibrate on the desk in the living room. So strongly that it woke us up... I never heard that !

So in the confusion, i just shut down the server holding the power button. And now, impossible to boot the server. 
I have some errors before the prompt login : 

mmcblk1p6 : Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Give root password for maintenace or press Control D to continue.

I guess there is no password for root login. And Control+D just returns "sulogin cannot read /dev/tty1: Operation not permitted".

And there is no longer ssh connexion.

How can I login as rock64 user and/or run fsck ?