| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Pinetab2 camera drivers
Forum: PineTab Software
Last Post: biketool
2 hours ago
» Replies: 10
» Views: 6,766
|
what is the point?
Forum: General Discussion on PinePhone
Last Post: biketool
3 hours ago
» Replies: 4
» Views: 103
|
Old Danctnix server in Pa...
Forum: PineTab Software
Last Post: realchunkyflea
Yesterday, 05:01 PM
» Replies: 3
» Views: 255
|
PinePhone sensors - Gyros...
Forum: General Discussion on PinePhone
Last Post: WhiteHexagon
Yesterday, 04:23 PM
» Replies: 2
» Views: 59
|
irradium (based on crux l...
Forum: Linux on Rock64
Last Post: mara
Yesterday, 10:30 AM
» Replies: 10
» Views: 15,923
|
irradium (based on crux l...
Forum: Linux on RockPro64
Last Post: mara
11-26-2025, 02:45 PM
» Replies: 10
» Views: 16,845
|
PinePhone, PinePhone Pro,...
Forum: PinePhone Hardware
Last Post: j_s
11-26-2025, 11:33 AM
» Replies: 4
» Views: 227
|
Quill OS for the PineNote
Forum: PineNote Software
Last Post: JhonSmith
11-26-2025, 01:42 AM
» Replies: 1
» Views: 137
|
auto-owning the SD card i...
Forum: PineTab Software
Last Post: biketool
11-25-2025, 04:16 AM
» Replies: 1
» Views: 407
|
Volumio (PINE A64-LTS / S...
Forum: Linux on PINE A64-LTS / SOPINE
Last Post: kapqa
11-23-2025, 02:02 AM
» Replies: 8
» Views: 15,569
|
|
|
| [SOLD] I sell NEW pinebook pro from Italy. |
|
Posted by: ocirne - 09-30-2020, 03:38 PM - Forum: General Discussion on Pinebook Pro
- Replies (6)
|
 |
Hi,
I sell a NEW Pinebook pro!
Here the history:
I bought a PineBook Pro during lockdown. I thought I had time to improve my Linux knowledge and install Debian. Luckily the Lockdown is over in Italy, I found another job, Debian for Pinebook Pro is too hard to install for me as a beginner. Result: I only turned on PineBook once when it arrived at my house, around May 20, 2020. I turned it on the second time a little while ago to take pictures. The date on the display is wrong, today is 30 September 2020. I don't even remember my user's passwoord anymore!
The machine is new, perfect. Original boxes.
Material included:
- Pinebook Pro with Manjaro, ISO UK Keyboard
- USB-Ethernet Dongle
- PBPro-NVMe Interface adapter
- Inter SSD 660p 512GB Product code SSDPEKNW512G8X1 (Sealed, never open)
At today's date the euro-dollar exchange rate is 1.1724. My Pinebook paid 216.97 dollars in euro costs 185.0664. Intel ssd today on Amazon at 64.55 Euro. Total in Euro 249.55.
I paid the import taxes in Italy equal to Euro 68.29. I do not ask for this money.
The selling price of the complete product as described is 250,00 Euro, plus shipping costs. Payment only by bank transfer in advance. I ship everywhere. Packaging made with the utmost care to avoid damages from transport.
I send detailed photos on request.
Thank!
|
|
|
|
| Dimensions of pinetab shipping box help? |
|
Posted by: geeksville - 09-30-2020, 02:28 PM - Forum: General Discussion on PineTab
- Replies (2)
|
 |
Hi,
Alas - I'm leaving the country soon and my pinetab is apparently going to arrive at my old address a few days after I leave. I need to leave a prepaid shipping box (with some other items) with a friend. Would one of ya'll mind measuring the dimensions and of the box your pinetab arrived in? I'd be super appreciative of this info.
|
|
|
|
| Tinkering with docker-chromium-armhf to use any armhf program e.g. vncviewer |
|
Posted by: wrzomar - 09-30-2020, 02:07 PM - Forum: Pinebook Pro Tutorials
- No Replies
|
 |
I was struggling to connect to my Raspberry Pi VNC server, it's impossible without RealVNC Viewer, even with turned off encryption. There is vncviewer for Raspbian, but it's for armhf architecture (and for Debian) and is proprietary. The chromium-docker uses Chromium for armhf architecture in docker and it works perfectly on Manjaro, so I've decided to tinker with it.
First you need to download code from @hthiemann docker-chromium-armhf using your favourite method.
https://github.com/HenningThiemann/docke...mium-armhf
Then you will need to modify Dockerfile and dependencies folder to your needs. I would recommend to change ubuntu image to debian by changing FROM line:
Code: FROM docker.io/arm32v7/debian:latest
You can change the MAINTAINER line too. Then add desired packages, in case of vncviewer you will need:
Code: openssh-client xterm qemu binfmt-support qemu-user-static
SSH client is optional, e.g. if you have to ssh to RPi from docker to check connectivity.
Then you will need to download vncviewer deb for Raspberry Pi from RealVNC site, place it in dependencies folder and change ADD and RUN lines which installed Chromium so they'll install vncviewer deb file, instead.
Lastly you will need to change 'mediaguy' to something else, e.g. 'andy' and CMD line to start "/usr/bin/xterm".
Save Dockerfile, then run command to build docker container (just follow README instructions from docker-chromium-armhf but create different volume for home and use different tag).
Last thing, you need to change 'chromium-armhf', copy this file to 'xterm-armhf', change volume name to the volume you have just created and change the line with DOCKER_IMAGE_ID (put your tag followed by ':latest' instead of 'hthiemann/chromium-armhf:latest').
Start xterm-armhf script, go to your home dir and start:
Code: qemu-arm-static /usr/bin/vncviewer <enter ip>
I had to use qemu-user-static because vncviewer always crushes with illegal instruction. It runs with qemu, but it's not connecting (it probably tries to open new vncviewer and fails), so I had to connect immediately.
It's killing fly with a sledgehammer but works.
Have fun.
PS. If you need to access your VNC server through a SSH tunnel, you will need to adjust the -L option parameter:
Code: -L 172.17.0.1:5901:localhost:5900
where 172.17.0.1 is docker0 interface address. If you've enabled firewall, then allow TCP connections from 172.17.0.0/16 addresses to port 5901, then you can connect - run in xterm window:
Code: qemu-arm-static /usr/bin/vncviewer 172.17.0.1:5901
In case of using socks5 proxy, configure proxy server to listen on 172.17.0.1 address (its docker0 address in my case, but I don't know if all docker use the same address), then allow TCP connections from above subnet to the proxy posrt, e.g. 9050. Then use ProxyServer parameter:
Code: qemu-arm-static /usr/bin/vncviewer -ProxyServer socks://172.17.0.1:9050 <here put VNC server address>
I don't want to tell which socks proxy I've in mind and what kind of address is in above command, but you can guess.
|
|
|
|
| Unsatisfactory GPS reception on PinePhone? |
|
Posted by: LinAdmin2 - 09-30-2020, 11:07 AM - Forum: PinePhone Hardware
- Replies (53)
|
 |
When looking at the results of GPS reception by typing in the console
Code: mmcli -m 0 --location-enable-gps-nmea # Once only
mmcli -m 0 --location-get # Many times
I get a maximum of 3 satellites even when absolutely no obstacle present and no clouds at the sky.
This command does not report any fix even after 30 minutes trial.
Is this the adequate method and what are your experiences?
|
|
|
|
| Help a noob |
|
Posted by: Maverick106 - 09-29-2020, 09:15 PM - Forum: Getting Started
- Replies (1)
|
 |
I purchased a rock64 1gig board that includes an lcd module. I want to flash kodi onto an sd card. I still want the lcd to read "kodi box"
Is there a way that I can make this possible?
Thanks in advance
|
|
|
|
| Orange light no boot blues :) |
|
Posted by: feoh - 09-29-2020, 08:38 PM - Forum: General Discussion on Pinebook Pro
- Replies (6)
|
 |
Hi all.
I'd been running the stock Manjaro 20.08 distro, and somehow in playing around with trying to get sleep to work (Since realized it probably is the magnet positioning) I can no longer boot my Pinebook Pro off of emmc.
In fact, I can't boot it *at all* if the emmc is enabled, even if have a distro that works great if emmc is disabled in the SD slot, like Manjaro 20.08 or mrfixit 2001 debian stretch.
I have a new bigger emmc chip and the emmc to usb adapter coming from HK, but:
A) How could I have gotten myself into such a state? It seems incongruous that you could 'brick' a laptop in this way through software.
B) Is there anything I can do short of replacing the emmc chip?
Thanks in advance. I love the platform and am committed to diving as deep as I need to in order to get going 
-Chris
|
|
|
|
| Developing for the pinephone? |
|
Posted by: randomhacker - 09-29-2020, 04:35 PM - Forum: General Discussion on PinePhone
- Replies (2)
|
 |
Hi,
I'm interested to develop software for pinephone. I dont know much about the phone.
Sorry if this is the wrong forum, but is there a thread/forum/wiki for developing, not the OS itself, but apps.
I read that pinephone can run Qt5 is this true? Is this the Ubuntu version?
Is it possible, for example, to compile on a desktop pine edition (or otherwise), then copy onto the phone. Ideally, a Qt5 binary.
Thanks for any help to get me started!
|
|
|
|
| RockPro64 Up and running with 10Gb NIC |
|
Posted by: rapier1 - 09-29-2020, 01:36 PM - Forum: General Discussion on ROCKPRO64
- Replies (3)
|
 |
I got the RockPro64 yesterday and finally got it up and running with Debian Bullseye. I just thought I'd let people know that it works reasonably well with an HP 560 SFP+ 10Gb NIC using the ixgbe driver. It's limited to 8Gb due to the PCIe bus being 4x but 8Gb is good enough for my needs.
Just thought I'd confirm that this NIC does indeed work with the RockPro64.
Mod edit: Amended title to reflect that it's in relation to a 10GB NIC
|
|
|
|
| Sim cards and carriers, discussion |
|
Posted by: bcnaz - 09-29-2020, 09:09 AM - Forum: General Discussion on PinePhone
- Replies (128)
|
 |
I have been trying to determine what sim cards and carriers will work on the current Pine phone OS releases,
I have tried multiple sim card 'kits' from TracFone and Net 10, they come with AT&T, T-Mobile, and Verizon carrier sim cards.
Verizon sim cards always show "NO SIM CARD" from both TracFone and Net 10 'sim card kits' ?
The T-Mobile sim cards take a while "searching" when looking in the settings > 'Modem' but they do eventually show a carrier, signal and network type.
I did activate an account with 'Simple Mobile' (T-Mobile NVMO) that works, but T-Mobile is weak in many of the areas I am in.
I picked Simple Mobile over TracFone as they offer more service for the same price, for T-Mobile carrier service.
The TracFone, Net 10/AT&T sim cards do show a sim card but they do not (for me) show a carrier, signal or network type, even waiting over an hour.
But, I do have a PMOS Pine phone on an activated TracFone/AT&T account that is working 'ok'.
-------
> I also tested an un-activated AT&T sim card that was direct, not through an NVMO and it shows a strong signal, carrier, and network type pretty quickly.
My 'daily driver' Brave Heart phone is running 'very well' on an official "AT&T Prepaid account"...
-------
Note: I am semi-rural, so my results may not be typical.
I hope to hear some others mention their experiences with getting Verizon to work..? NVMO's ? ?
( I personally dislike Verizon, but there are some places, that is the only carrier )
( When Verizon came to Tucson, Arizona, (1980's) they bought all the existing communication services, and shut them down )
-------
While the hardware and software are important to any smart phone, actually connecting to a carrier is also kind of vital....
* Deals can be had with carriers, but they do prioritize, The top of the list are the full price consumers on post pay,
then their direct PrePay customers, at the bottom of the list, is the discount NVMO customers
"Check-out Pure Talk NVMO" for some great deals !
|
|
|
|
|