| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 29,971
» Latest member: SomeHorse
» Forum threads: 16,334
» Forum posts: 117,439
Full Statistics
|
| Latest Threads |
Freezes and kernel panics...
Forum: Linux on RockPro64
Last Post: prahal
7 hours ago
» Replies: 4
» Views: 1,207
|
Looking for engineer for ...
Forum: PinePhone Pro Hardware
Last Post: Andrey_voce
04-06-2026, 08:44 AM
» Replies: 0
» Views: 183
|
StarPro64 Irradium (based...
Forum: Getting Started
Last Post: mara
04-05-2026, 03:03 AM
» Replies: 19
» Views: 8,748
|
Finally got Kali working ...
Forum: General Discussion on Pinebook Pro
Last Post: qingss0
04-04-2026, 08:00 AM
» Replies: 0
» Views: 273
|
Charging problem
Forum: General Discussion on Pinebook Pro
Last Post: RicTor
04-04-2026, 07:30 AM
» Replies: 0
» Views: 121
|
Latest firmware for PineP...
Forum: PinePhone Software
Last Post: baptx
04-03-2026, 08:37 AM
» Replies: 106
» Views: 217,246
|
Updates have gotten me ex...
Forum: General Discussion on PineNote
Last Post: bills2002
04-02-2026, 05:16 PM
» Replies: 0
» Views: 231
|
Voidlinux working on eMMC
Forum: General Discussion on PineTab
Last Post: tllim
04-01-2026, 04:14 PM
» Replies: 1
» Views: 328
|
Pinecil V2 doesn’t power ...
Forum: General Discussion on Pinecil
Last Post: Juptin
03-28-2026, 02:37 AM
» Replies: 1
» Views: 2,104
|
dead Pinebook - help plea...
Forum: General Discussion on Pinebook Pro
Last Post: williamcorlin
03-26-2026, 04:22 PM
» Replies: 3
» Views: 964
|
|
|
| Fedora on aarch64 Architecture |
|
Posted by: as365n4 - 11-17-2019, 05:54 AM - Forum: Linux on Pine H64
- No Replies
|
 |
Fedora 31 has now support for PineH64 Board.
Download the image here --> https://alt.fedoraproject.org/alt/
Similar to Armbian you can have different flavours like Server, Minimal, Workstation, Cloud etc.
To get the image onto your H64 do the following:
sudo dnf install arm-image-installer uboot-images-armv8
sudo arm-image-installer --image=/home/YOURuser/Downloads/Fedora-Workstation-31-1.9.aarch64.raw.xz --target=pine_h64 --media=/dev/sd? (use lsblk to find media)
It takes about 2min15sec from applying power to fully booted Desktop Environment.
It's a full Gnome 3 Desktop like on x86 with Firefox, LibreOffice and other apps pre-installed.
WiFi and Audio do NOT work at the moment (Fedora-Workstation-31-1.9).
And Video playback speed varies from slideshow on FullHD to acceptable on SVGA resolution.
Also there is NO support for eMMc only SD-Card works.
Other supported boards are: pine64-lts, pine64_plus, pinebook and sopine_baseboard amongst a variety of other makes.
|
|
|
|
| Replace eMMC |
|
Posted by: stefan.schumacher - 11-17-2019, 05:04 AM - Forum: Pinebook Pro Hardware and Accessories
- Replies (10)
|
 |
Helllo,
I just ordered the standard model and would like to know if it is possible to replace the eMMC with bigger ones without having to solder it to the board. After all,
cheaper,bigger and faster eMMCs might become and I might want to upgrade to something more than 64 Gbit, which is perfectly enough for a desktop standard installation but maybe you want a few media files for the plane or for your holidays.
Yours
Stefan
|
|
|
|
| Packages from Official Repositories? |
|
Posted by: stefan.schumacher - 11-17-2019, 05:00 AM - Forum: Linux on Pinebook Pro
- Replies (1)
|
 |
Hello,
there is one thing I have not yet understood completely. I have seen that new images for the Pinebook Pro are constantly being built (ayufan's Ubuntu images).
What I do not yet understand: Can I update my Installation with normal packages from the official debian / armbian repositories once after installing the image?
I am mainly asking because a) I would like to be able to install security updates and of course b) I would like to install software from the huge repositories kept by debian. Can I upgrade the kernel or would I have to patch it first and then compile one myself? (I know how to do this also I haven't done this in a looong time. The debian kernels always include everything I need in server and desktop.
Yours sincerely
Stefan
|
|
|
|
| Citrix Receiver / ICAClient install for armhf |
|
Posted by: Arwen - 11-16-2019, 07:11 PM - Forum: Pinebook Pro Tutorials
- Replies (7)
|
 |
Occasionally I have a need to use Citrix Receiver / ICAClient for Linux. (I don't have MS-Windows or Macs at home.) My AMD Ryzen, (sorry I used profanity :-), under Gentoo Linux does work with Citrix ICAClient. Had to fuss with the install, as ICAClient wanted an older version of some library. But I was not downgrading my system for it. I simply put in a soft-link from the old name to the installed version. Worked perfectly after that.
Now it was time to see if Citrix ICAClient would work for my Pinebook Pro.
Turns out Citrix assumes that any "64" output from "uname -m" means it's x86_64. Silly, since the default OS image uses "aarch64" for ARM64. Here is the section of code from the installer script, "setupwfc";
Code: # We use uname -m to report processor type. If we
# see 64 we assume a 64 bit Intel processor, if we see
# 86 we assume a 32 bit Intel processor
if uname -m | grep 64 2>&1 >/dev/null ;then
PLATFORM=linuxx64
DISP_PLATFORM="Linux (x64)"
I tried a simple edit of that script, but the install script seems to call "uname" in a sub-script. So, I did the most expediant thing, temporarily replaced "uname" with a script that gives the correct output;
Code: root@Debian-Desktop:/bin# mv uname uname.orig
root@Debian-Desktop:/bin# echo '#!/bin/bash
#
if [ ${#} -eq 0 ]; then
echo "Linux"
elif [ ${#} -eq 1 ]; then
if [ "${1}X" = "-mX" ]; then
echo "armhf"
elif [ "${1}X" = "-sX" ]; then
echo "Linux"
elif [ "${1}X" = "-aX" ]; then
echo "Linux Debian-Desktop 4.4.196 #1 SMP Tue Oct 15 16:54:21 EDT 2019 armhf GNU/Linux"
fi
fi
exit 0' >uname
root@Debian-Desktop:/bin# chmod a+rx uname
Now the install worked perfect and I was able to test Citrix receiver / ICAClient, it works fine.
Don't forget to back out your "uname" change after installing Citrix receiver / ICAClient;
Code: root@Debian-Desktop:/bin# mv uname uname.citrix
root@Debian-Desktop:/bin# mv uname.orig uname
|
|
|
|
| Ethernet on Bionic-Mate? |
|
Posted by: zaius - 11-16-2019, 05:53 PM - Forum: Linux on Pinebook Pro
- Replies (7)
|
 |
I have a possibly stupid question
I can't seem to get the Bionic-Mate build (run off SD) to connect to the internet with an Ethernet to USB adapter. When I was testing internet speeds with Debian, I just plugged it in and it worked with either USB port. Now I can't seem to get the same adapter to work Bionic-Mate. I've tried a bunch of settings. WiFi still works though. What am I doing wrong?
|
|
|
|
| 3d model files? |
|
Posted by: odinson - 11-16-2019, 03:34 PM - Forum: Pinebook Pro Hardware and Accessories
- No Replies
|
 |
I'm sorry if I missed this, I did try to look first... I was wondering if there are 3-d model files for the body and/or the body parts? It would make attempting to design 3-d printed mods, cases, etc... a little faster. Specifically I'm attempting to design a skeleton to eliminate the flex in the hollow-ish tapered area of the laptop, down below the keyboard in the trackpad half of the base. This is not my specialty and having a model to start with would help a lot. Thanks.
|
|
|
|
| 3D model of phone or case |
|
Posted by: hnaguski - 11-16-2019, 03:13 PM - Forum: PinePhone Hardware
- Replies (2)
|
 |
Hi,
Is there a 3d model or a schematic with measurements of the back case of the PinePhone? I think this would make it way easier to utilize the extra expansion pins on the back of the phone if the community had access to some sort of model so we could design accessories for the phone.
|
|
|
|
| Pine Phone cases and accessories |
|
Posted by: bcnaz - 11-16-2019, 02:04 PM - Forum: PinePhone Accessories
- Replies (22)
|
 |
When will we be able to purchase cases and other accessories for our Pine Phones ?
I remember reading that the proceeds from the cases will go to the community....
The previously mentioned keyboards may be nice for some users. ?
Some screen protectors would also be very nice item to have.
* I realize it may be a while but a projected estimate would be nice.
Personally I would really like a pouch type case, that goes on the belt.
ADD :
Every 'SMART' phone I have owned so far, has wound up with a cracked or shattered screen....
It is cheaper to replace the phone than have the screen replaced..!
SO Perhaps a Screen Protector should be number one ?
Though my Iphone screen cracked even with the screen protector installed.
|
|
|
|
|