<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[PINE64 - PinePhone Software]]></title>
		<link>https://forum.pine64.org/</link>
		<description><![CDATA[PINE64 - https://forum.pine64.org]]></description>
		<pubDate>Sat, 16 May 2026 14:33:53 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Difficulty with openSUSE Tumbleweed Install PinePhone Beta]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=20083</link>
			<pubDate>Mon, 17 Nov 2025 13:49:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=29698">danm1988</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=20083</guid>
			<description><![CDATA[Hey everyone,<br />
<br />
I am trying to install openSUSE on the PinePhone beta and cannot get the phone to boot the image that is provided on openSUSE as of 11-13-2025.<br />
<br />
The links to KDE and GNOME on the main article page <a href="https://en.opensuse.org/HCL:PinePhone" target="_blank" rel="noopener" class="mycode_url">https://en.opensuse.org/HCL:PinePhone</a> do not even work, and I found the only image fine in the directory which is less ideal since I wanted KDE.<br />
<br />
Does anyone have any experience with getting the install to work? Or are we just dealing with a broken image on the openSUSE site.<br />
<br />
My process has been to use Balena Etcher to flash this image: <br />
<br />
<a href="https://download.opensuse.org/repositories/devel:/ARM:/Factory:/Contrib:/PinePhone/images/openSUSE-Tumbleweed-ARM-PHOSH-pinephone.aarch64-2025.11.09-Build1.6.raw.xz" target="_blank" rel="noopener" class="mycode_url">https://download.opensuse.org/repositori...1.6.raw.xz</a><br />
<br />
Sometimes etcher itself crashes on verification. <br />
<br />
When I insert the microSD card to the phone, the screen remains blank and oscillates between a green and red light, which I guess means the image failed. <br />
<br />
I tried this method using JumpDrive with the same result. <br />
<br />
Does anyone know of a solution here? I appreciate it.<br />
<br />
DM]]></description>
			<content:encoded><![CDATA[Hey everyone,<br />
<br />
I am trying to install openSUSE on the PinePhone beta and cannot get the phone to boot the image that is provided on openSUSE as of 11-13-2025.<br />
<br />
The links to KDE and GNOME on the main article page <a href="https://en.opensuse.org/HCL:PinePhone" target="_blank" rel="noopener" class="mycode_url">https://en.opensuse.org/HCL:PinePhone</a> do not even work, and I found the only image fine in the directory which is less ideal since I wanted KDE.<br />
<br />
Does anyone have any experience with getting the install to work? Or are we just dealing with a broken image on the openSUSE site.<br />
<br />
My process has been to use Balena Etcher to flash this image: <br />
<br />
<a href="https://download.opensuse.org/repositories/devel:/ARM:/Factory:/Contrib:/PinePhone/images/openSUSE-Tumbleweed-ARM-PHOSH-pinephone.aarch64-2025.11.09-Build1.6.raw.xz" target="_blank" rel="noopener" class="mycode_url">https://download.opensuse.org/repositori...1.6.raw.xz</a><br />
<br />
Sometimes etcher itself crashes on verification. <br />
<br />
When I insert the microSD card to the phone, the screen remains blank and oscillates between a green and red light, which I guess means the image failed. <br />
<br />
I tried this method using JumpDrive with the same result. <br />
<br />
Does anyone know of a solution here? I appreciate it.<br />
<br />
DM]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[baremetal via Zig on PinePhone - JumpDrive help please]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19882</link>
			<pubDate>Tue, 01 Jul 2025 11:33:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26672">WhiteHexagon</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19882</guid>
			<description><![CDATA[background:  2 years ago, I was following along with <dvz_me_placeholder id="0" />  great series of articles to get LVGL running on PinePhone.  I was emulating the same journey but using Zig for all the hardware interfacing (and I got quite far).  But at the time I was stuck on an old version of Zig and lost motivation.  Now I finally have some hardware to run latest Zig, and I decided to port my project over to Zig 0.14 including it's new build system.<br />
<br />
I've struggled for a few days to recreate the environment I had running (I also switched from macos to to Linux and still learning!).  So I decided to go back to basics, and try to understand how NuttX interects with the JumpDrive image.<br />
<br />
This is what I tried:<br />
<br />
1. compiling some very simple Zig code, that should toggle the phone LEDs.<br />
2. build the above as an elf file for arm freestanding with a target of cortex_a53<br />
3. created a simple .ld linker file that ensure my entry point is at 0x40080000<br />
4. using objCopy extract hex via the -O binary<br />
5. gzip the resulting binary file into Image.gz<br />
<br />
I was expecting that whatever the JumpDrive util does, it somehow jumps to executing the code directly from Image.gz.  However now I suspect that this .gz might be a bit more complicated than straight arm machine code.  But I have no idea what? and I struggle to follow the NuttX build (maybe something to do with a util called binfmt? but also I saw mention of nxflat).<br />
<br />
Ultimately it would be nice to find a way to deploy to PinePhone as 'baremetal'.  But for now the JumpDrive 'hack' would be enough, allowing me to hop between SDCards to compare/debug different images.<br />
<br />
Does anyone have any idea how to wrap my baremetal code into something JumpDrive can recognize from the Image.gz file please.]]></description>
			<content:encoded><![CDATA[background:  2 years ago, I was following along with <dvz_me_placeholder id="0" />  great series of articles to get LVGL running on PinePhone.  I was emulating the same journey but using Zig for all the hardware interfacing (and I got quite far).  But at the time I was stuck on an old version of Zig and lost motivation.  Now I finally have some hardware to run latest Zig, and I decided to port my project over to Zig 0.14 including it's new build system.<br />
<br />
I've struggled for a few days to recreate the environment I had running (I also switched from macos to to Linux and still learning!).  So I decided to go back to basics, and try to understand how NuttX interects with the JumpDrive image.<br />
<br />
This is what I tried:<br />
<br />
1. compiling some very simple Zig code, that should toggle the phone LEDs.<br />
2. build the above as an elf file for arm freestanding with a target of cortex_a53<br />
3. created a simple .ld linker file that ensure my entry point is at 0x40080000<br />
4. using objCopy extract hex via the -O binary<br />
5. gzip the resulting binary file into Image.gz<br />
<br />
I was expecting that whatever the JumpDrive util does, it somehow jumps to executing the code directly from Image.gz.  However now I suspect that this .gz might be a bit more complicated than straight arm machine code.  But I have no idea what? and I struggle to follow the NuttX build (maybe something to do with a util called binfmt? but also I saw mention of nxflat).<br />
<br />
Ultimately it would be nice to find a way to deploy to PinePhone as 'baremetal'.  But for now the JumpDrive 'hack' would be enough, allowing me to hop between SDCards to compare/debug different images.<br />
<br />
Does anyone have any idea how to wrap my baremetal code into something JumpDrive can recognize from the Image.gz file please.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Best Battery Life]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19806</link>
			<pubDate>Mon, 21 Apr 2025 06:34:56 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=22571">luney</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19806</guid>
			<description><![CDATA[Hello folks, <br />
<br />
I am about to repair the broken screen on my Pinephone that has been sitting in a drawer for years. <br />
<br />
I want to attempt to daily drive. Given that I haven't tested and distro-hopped this device in years, I thought I would appeal to you all for info. <br />
<br />
What is currently the best distro and UI for battery life running phone calls, texts, and perhaps GPS. <br />
<br />
For background, I have no issue with using a command line. I am looking for function over bells and whistles. Calls, text, working GPS is a plus but not required. <br />
<br />
Also remind me, Wifi will drain more than cellular data? <br />
<br />
Thanks for your time.]]></description>
			<content:encoded><![CDATA[Hello folks, <br />
<br />
I am about to repair the broken screen on my Pinephone that has been sitting in a drawer for years. <br />
<br />
I want to attempt to daily drive. Given that I haven't tested and distro-hopped this device in years, I thought I would appeal to you all for info. <br />
<br />
What is currently the best distro and UI for battery life running phone calls, texts, and perhaps GPS. <br />
<br />
For background, I have no issue with using a command line. I am looking for function over bells and whistles. Calls, text, working GPS is a plus but not required. <br />
<br />
Also remind me, Wifi will drain more than cellular data? <br />
<br />
Thanks for your time.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Movuan distribution for PinePhone]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19771</link>
			<pubDate>Tue, 01 Apr 2025 20:05:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=25947">merom</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19771</guid>
			<description><![CDATA[You may not know yet, but the Mobian Clone, which is without SystemD, has been released. It uses Devuan Linux as the basis.<br />
Release v 0.0.0.2 comes with an attached image that can be burned to your bootable SD card straight for the PinePhone. <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>https://gitlab.com/l2385/movuan/movuan-recipes/-/releases</code></div></div><br />
<br />
If you would like to test/use it in a VM, on a laptop, or on other compatible phones, you will however have to build it yourselves. <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>https://gitlab.com/l2385/movuan/movuan-recipes</code></div></div>.<br />
.<br />
.<br />
On gitlab they have limited free storage space, hence providing a single image in a split zip archive. They also have free compute minutes monthly, that are almost enough to build one Movuan image monthly. Everything important is written on the project pages. <br />
Yes, you can try it.  <br />
<br />
<img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[You may not know yet, but the Mobian Clone, which is without SystemD, has been released. It uses Devuan Linux as the basis.<br />
Release v 0.0.0.2 comes with an attached image that can be burned to your bootable SD card straight for the PinePhone. <br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>https://gitlab.com/l2385/movuan/movuan-recipes/-/releases</code></div></div><br />
<br />
If you would like to test/use it in a VM, on a laptop, or on other compatible phones, you will however have to build it yourselves. <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>https://gitlab.com/l2385/movuan/movuan-recipes</code></div></div>.<br />
.<br />
.<br />
On gitlab they have limited free storage space, hence providing a single image in a split zip archive. They also have free compute minutes monthly, that are almost enough to build one Movuan image monthly. Everything important is written on the project pages. <br />
Yes, you can try it.  <br />
<br />
<img src="https://forum.pine64.org/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Touchscreen usability patches]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19619</link>
			<pubDate>Sat, 11 Jan 2025 08:35:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=28839">johnwa</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19619</guid>
			<description><![CDATA[Hi all,<br />
<br />
I got my PinePhone a couple of months ago, and since then I have come up with a few small patches to some of the applications, mainly to improve usability on the touchscreen. These include:<ul class="mycode_list"><li>Automatically add extensions to downloaded MMS attachments in Chatty<br />
</li>
<li>Track selection and touch scrolling in Audacious MP3 player<br />
</li>
<li>Quick switching between fullscreen and gallery view in Eye of GNOME image viewer<br />
</li>
<li>Fixed position tracking and added "track up" mode in Marble mapping app.<br />
</li>
</ul>
I have also documented some resolutions to a few other issues that I encountered. Further details are at <a href="http://loopgain.net/pinephone/" target="_blank" rel="noopener" class="mycode_url">http://loopgain.net/pinephone/</a><br />
<br />
I hope that these patches and information are of some use. I'm planning on trying to contribute these patches back to the respective projects, though I'm not sure how well they will be received for the apps that are mainly used on desktop systems. Is there anyone from the Mobian project who is able to assist with integrating things upstream?<br />
<br />
Regards,<br />
<br />
johnwa]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I got my PinePhone a couple of months ago, and since then I have come up with a few small patches to some of the applications, mainly to improve usability on the touchscreen. These include:<ul class="mycode_list"><li>Automatically add extensions to downloaded MMS attachments in Chatty<br />
</li>
<li>Track selection and touch scrolling in Audacious MP3 player<br />
</li>
<li>Quick switching between fullscreen and gallery view in Eye of GNOME image viewer<br />
</li>
<li>Fixed position tracking and added "track up" mode in Marble mapping app.<br />
</li>
</ul>
I have also documented some resolutions to a few other issues that I encountered. Further details are at <a href="http://loopgain.net/pinephone/" target="_blank" rel="noopener" class="mycode_url">http://loopgain.net/pinephone/</a><br />
<br />
I hope that these patches and information are of some use. I'm planning on trying to contribute these patches back to the respective projects, though I'm not sure how well they will be received for the apps that are mainly used on desktop systems. Is there anyone from the Mobian project who is able to assist with integrating things upstream?<br />
<br />
Regards,<br />
<br />
johnwa]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Pilotlight, a way to save power during long audio playback]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19608</link>
			<pubDate>Sat, 04 Jan 2025 19:51:22 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=19319">biketool</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19608</guid>
			<description><![CDATA[keeping the pilotlight lit, normally when listening to an audiobook or music playlist the Pinephone locks it's screen after a minute and suspends the OS after a few more minutes as set by the user.<br />
This suspend action makes it possible to carry a pinephone all day ready ro receive incoming telephone calls and still have battery if the phone is not used for more than 45min to an hour a day.<br />
Every time the system suspends the audio stream is killed, even after wakeup most of the time the audio playback app needs to be killed and restarted for it to output audio.<br />
I want a way to keep a tightly controlled and minimized audio app running while using minimal CPU waste power, and without the bloat of the system processes.<br />
I only want the pilotlight lit, not the whole furnace.<br />
<br />
I have several ideas that might be able to be implemented with only scripts, but I will need a LOT of help making this work if I run into bugs.<br />
The idea works like this:<br />
1- when an audio app is running we get the audio pause/skip controls on the lockscreen, there are already processes which load when audio is started<br />
2- when audio mode is detected a special suspend mode is activated or enabled<br />
   A- an exception is made to the suspend mode script, perhaps an alternate suspend mode<br />
       a- the process running the audio is moved to one awake cpu core and the lowest voltage and mhz possible is engaged, only enough to allow for the audio stream to continue<br />
       b- if possible audio is buffered into hardware audio acceleration chip and even the audio app CPU is suspended until 10-20 sec before the buffer runs out, <br />
       c- buffer refills, suspend special audio process, repeating<br />
    B- when system is taken out of suspend the audio app and special settings for single CPU are ended<br />
<br />
An alternative would be to add an audio buffer playback system to the programs running on the modem module, perhaps a virtual serial audio device fed over the data connection line.  The modem module has its own Android based no-GUI OS, memory, and CPU, it is always awake and waiting for incoming calls and texts, which results in it sending a de-suspend command to the Pinephone, as running its own OS processes.<br />
<br />
Currently unless there is USB power in the Pinephone pro can get at most around two hours of audio playback even though the the screen is dark and locked as all processes continue to run at full power.]]></description>
			<content:encoded><![CDATA[keeping the pilotlight lit, normally when listening to an audiobook or music playlist the Pinephone locks it's screen after a minute and suspends the OS after a few more minutes as set by the user.<br />
This suspend action makes it possible to carry a pinephone all day ready ro receive incoming telephone calls and still have battery if the phone is not used for more than 45min to an hour a day.<br />
Every time the system suspends the audio stream is killed, even after wakeup most of the time the audio playback app needs to be killed and restarted for it to output audio.<br />
I want a way to keep a tightly controlled and minimized audio app running while using minimal CPU waste power, and without the bloat of the system processes.<br />
I only want the pilotlight lit, not the whole furnace.<br />
<br />
I have several ideas that might be able to be implemented with only scripts, but I will need a LOT of help making this work if I run into bugs.<br />
The idea works like this:<br />
1- when an audio app is running we get the audio pause/skip controls on the lockscreen, there are already processes which load when audio is started<br />
2- when audio mode is detected a special suspend mode is activated or enabled<br />
   A- an exception is made to the suspend mode script, perhaps an alternate suspend mode<br />
       a- the process running the audio is moved to one awake cpu core and the lowest voltage and mhz possible is engaged, only enough to allow for the audio stream to continue<br />
       b- if possible audio is buffered into hardware audio acceleration chip and even the audio app CPU is suspended until 10-20 sec before the buffer runs out, <br />
       c- buffer refills, suspend special audio process, repeating<br />
    B- when system is taken out of suspend the audio app and special settings for single CPU are ended<br />
<br />
An alternative would be to add an audio buffer playback system to the programs running on the modem module, perhaps a virtual serial audio device fed over the data connection line.  The modem module has its own Android based no-GUI OS, memory, and CPU, it is always awake and waiting for incoming calls and texts, which results in it sending a de-suspend command to the Pinephone, as running its own OS processes.<br />
<br />
Currently unless there is USB power in the Pinephone pro can get at most around two hours of audio playback even though the the screen is dark and locked as all processes continue to run at full power.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How-To: Remote Control Your Phone from Desktop via VNC]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19455</link>
			<pubDate>Thu, 10 Oct 2024 08:26:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=19319">biketool</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19455</guid>
			<description><![CDATA[<span style="color: #e82a1f;" class="mycode_color">&lt;This is currently partly broken on my Mobian trixie Pinephone pro the VNC viewer shows a grey screen but input is usable&gt;</span><br />
Do you wish there was an easy hands-free way to interact with your PP's touch GUI  while sitting in front of your desktop system?<br />
Would you like to compose, read, and send SMSs and IMs using your full size keyboard? Interact with your mobile apps using your desktop's mouse, and screen?<br />
Is there a way to cut and paste between your phone and Desktop?<br />
Maybe you would like to initiate and end hands-free or speakerphone calls without touching your phone?<br />
<br />
These and more are all possible using VNC to remotely interact with the GUI of your Pinephone.<br />
<br />
Let's start with your Pinephone; mine is running Mobian but the instructions should work for other distros; use your system's package installer. (this is for systems running Weyland for video, x11(and mir/surfaceflinger) uses a different VNC server)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt install wayvnc</code></div></div>once wayvnc is installed the way I run it is with a launch script I keep in my home directory, I named my script V (the 0.0.0.0 allows incoming connections from outside localhost)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#! /bin/bash<br />
wayvnc 0.0.0.0</code></div></div>make our script V executable<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>chmod +x  V</code></div></div>launch manually on the pinephone's shell console like this<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./V</code></div></div>The VNC server on your phone is now waiting for a client to connect, as configured is not secured and is unencrypted.<br />
<br />
This setup when run on your Weyland video server Pinephone will let your login when the VNC server is running on your PP without any security or password config on either side.  The VNC server script above is launched and killed manually so it is not running all of the time in this config, you save precious battery when mobile.  If you wanted you could make a desktop entry to give you a GUI launcher for the sell script, just kill that shell window to kill the server.<br />
<br />
Now install the VNC viewer GUI  on your desktop Linux machine(other OSs also have VNC client software)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt instal tigervnc-viewer</code></div></div>Now in this insecure home LAN setup just run ./V on your Pinephone, then set the phone's LAN IP address in the tigervnc-viewer GUI running on your desktop system and click connect; a window with your PP's interactive GUI will appear on your desktop machine.<br />
<br />
In options I recommend reviewing the cut/paste options in tigervnc-viewer Input tab,  clicking the 'show dot when no cursor' in the also in Input tab so you have a way to see your mouse in some server configs, as well as ensuring that in the Security tab the encryption and authentication options including none as in my example are to your preference.<br />
<br />
This is all you need to remote control your phone via desktop; it is a near perfect way to interact with your Weyland Pinephone.  This setup  also works if you are using the PP as your wifi(or USB cable or Bluetooth) tether hotspot just be sure to update the PP's IP address.  This quick tryout setup is only viable in a situation where the phone and laptop are on a private WLAN with no possibility of other users, any other situation where the VNC server is running gives all users who can scan the network for open VNC port free GUI access to your PP with no barriers.  It is easy to set a user name and password as well as encryption for the connection, a secure setup requires editing a .conf file on your PP  with username and password as well as generating an RSA key.  see <a href="https://github.com/any1/wayvnc" target="_blank" rel="noopener" class="mycode_url">https://github.com/any1/wayvnc</a><br />
<br />
If you have trouble with cut/paste showing boxes rather than text it is a font matching problem and I have solved this by using the on-phone web browser for some non-English languages rather than my desktop's; there are better ways to solve the problem though.<br />
VIew the wayvnc git for secure setup and running instructions <a href="https://github.com/any1/wayvnc" target="_blank" rel="noopener" class="mycode_url">https://github.com/any1/wayvnc</a><br />
<br />
I find that if I am doing heavy interaction with my PP while in my office VNC, an SSH session, as well as Filezilla to move files around makes everything so easy I rarely need to touch my charging PP except to wake it up if it goes into standby mode and disconnects from the WLAN.]]></description>
			<content:encoded><![CDATA[<span style="color: #e82a1f;" class="mycode_color">&lt;This is currently partly broken on my Mobian trixie Pinephone pro the VNC viewer shows a grey screen but input is usable&gt;</span><br />
Do you wish there was an easy hands-free way to interact with your PP's touch GUI  while sitting in front of your desktop system?<br />
Would you like to compose, read, and send SMSs and IMs using your full size keyboard? Interact with your mobile apps using your desktop's mouse, and screen?<br />
Is there a way to cut and paste between your phone and Desktop?<br />
Maybe you would like to initiate and end hands-free or speakerphone calls without touching your phone?<br />
<br />
These and more are all possible using VNC to remotely interact with the GUI of your Pinephone.<br />
<br />
Let's start with your Pinephone; mine is running Mobian but the instructions should work for other distros; use your system's package installer. (this is for systems running Weyland for video, x11(and mir/surfaceflinger) uses a different VNC server)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt install wayvnc</code></div></div>once wayvnc is installed the way I run it is with a launch script I keep in my home directory, I named my script V (the 0.0.0.0 allows incoming connections from outside localhost)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#! /bin/bash<br />
wayvnc 0.0.0.0</code></div></div>make our script V executable<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>chmod +x  V</code></div></div>launch manually on the pinephone's shell console like this<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./V</code></div></div>The VNC server on your phone is now waiting for a client to connect, as configured is not secured and is unencrypted.<br />
<br />
This setup when run on your Weyland video server Pinephone will let your login when the VNC server is running on your PP without any security or password config on either side.  The VNC server script above is launched and killed manually so it is not running all of the time in this config, you save precious battery when mobile.  If you wanted you could make a desktop entry to give you a GUI launcher for the sell script, just kill that shell window to kill the server.<br />
<br />
Now install the VNC viewer GUI  on your desktop Linux machine(other OSs also have VNC client software)<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt instal tigervnc-viewer</code></div></div>Now in this insecure home LAN setup just run ./V on your Pinephone, then set the phone's LAN IP address in the tigervnc-viewer GUI running on your desktop system and click connect; a window with your PP's interactive GUI will appear on your desktop machine.<br />
<br />
In options I recommend reviewing the cut/paste options in tigervnc-viewer Input tab,  clicking the 'show dot when no cursor' in the also in Input tab so you have a way to see your mouse in some server configs, as well as ensuring that in the Security tab the encryption and authentication options including none as in my example are to your preference.<br />
<br />
This is all you need to remote control your phone via desktop; it is a near perfect way to interact with your Weyland Pinephone.  This setup  also works if you are using the PP as your wifi(or USB cable or Bluetooth) tether hotspot just be sure to update the PP's IP address.  This quick tryout setup is only viable in a situation where the phone and laptop are on a private WLAN with no possibility of other users, any other situation where the VNC server is running gives all users who can scan the network for open VNC port free GUI access to your PP with no barriers.  It is easy to set a user name and password as well as encryption for the connection, a secure setup requires editing a .conf file on your PP  with username and password as well as generating an RSA key.  see <a href="https://github.com/any1/wayvnc" target="_blank" rel="noopener" class="mycode_url">https://github.com/any1/wayvnc</a><br />
<br />
If you have trouble with cut/paste showing boxes rather than text it is a font matching problem and I have solved this by using the on-phone web browser for some non-English languages rather than my desktop's; there are better ways to solve the problem though.<br />
VIew the wayvnc git for secure setup and running instructions <a href="https://github.com/any1/wayvnc" target="_blank" rel="noopener" class="mycode_url">https://github.com/any1/wayvnc</a><br />
<br />
I find that if I am doing heavy interaction with my PP while in my office VNC, an SSH session, as well as Filezilla to move files around makes everything so easy I rarely need to touch my charging PP except to wake it up if it goes into standby mode and disconnects from the WLAN.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Office applications for the Pinephone]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19406</link>
			<pubDate>Sun, 01 Sep 2024 07:49:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=18024">Peter Gamma</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19406</guid>
			<description><![CDATA[Jackfish is one of the view Office experts for the Pinephone. He installed Word 97 in a XBOX/Wine containter:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=18489&amp;highlight=word97" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?...ght=word97</a><br />
<br />
I Installed LibreOffice on the Pinephone, but I do not use it, altough I am still interested in it:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=16614" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=16614</a><br />
<br />
Then we have alaraajavamma who uses as far as I know Abiword and Gnumeric on the Pinephone:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=16614&amp;page=3" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?...614&amp;page=3</a><br />
<br />
Which means that I know only of three people who are interested in Office on the Pinephone. This is a pity, since for me personally Office is one of the applications which make the Pinephone interesting. The community for this application consists of 3 people, but every member is precious. My preferred option for Office on the Pinepehone would be this one:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=19342" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=19342</a><br />
<br />
But the Pinehone seems to be a typical Linux device, you can do anything with it, but you have to do it yourself.]]></description>
			<content:encoded><![CDATA[Jackfish is one of the view Office experts for the Pinephone. He installed Word 97 in a XBOX/Wine containter:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=18489&amp;highlight=word97" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?...ght=word97</a><br />
<br />
I Installed LibreOffice on the Pinephone, but I do not use it, altough I am still interested in it:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=16614" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=16614</a><br />
<br />
Then we have alaraajavamma who uses as far as I know Abiword and Gnumeric on the Pinephone:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=16614&amp;page=3" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?...614&amp;page=3</a><br />
<br />
Which means that I know only of three people who are interested in Office on the Pinephone. This is a pity, since for me personally Office is one of the applications which make the Pinephone interesting. The community for this application consists of 3 people, but every member is precious. My preferred option for Office on the Pinepehone would be this one:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=19342" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=19342</a><br />
<br />
But the Pinehone seems to be a typical Linux device, you can do anything with it, but you have to do it yourself.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[8/24 status of JumpDrive]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19401</link>
			<pubDate>Wed, 21 Aug 2024 18:51:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26348">shengchieh</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19401</guid>
			<description><![CDATA[Hi Pinephone Geeks<br />
<br />
I noticed the latest version of JumpDrive is 0.8 released May 31, 2021.<br />
<br />
<a href="https://github.com/dreemurrs-embedded/Jumpdrive/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/dreemurrs-embedded/Ju...e/releases</a><br />
<br />
Is this software eventually discontinued?  Is there a successor?<br />
<br />
Bottom Line:<br />
<br />
Is this still the only easy GUI way to install live Manjaro/Phosh onto pinephone's hard drive?<br />
<br />
-----<br />
<br />
Just asking before I do some works with JumpDrive.<br />
<br />
Thank in advanced for your input.<br />
<br />
Sheng-Chieh]]></description>
			<content:encoded><![CDATA[Hi Pinephone Geeks<br />
<br />
I noticed the latest version of JumpDrive is 0.8 released May 31, 2021.<br />
<br />
<a href="https://github.com/dreemurrs-embedded/Jumpdrive/releases" target="_blank" rel="noopener" class="mycode_url">https://github.com/dreemurrs-embedded/Ju...e/releases</a><br />
<br />
Is this software eventually discontinued?  Is there a successor?<br />
<br />
Bottom Line:<br />
<br />
Is this still the only easy GUI way to install live Manjaro/Phosh onto pinephone's hard drive?<br />
<br />
-----<br />
<br />
Just asking before I do some works with JumpDrive.<br />
<br />
Thank in advanced for your input.<br />
<br />
Sheng-Chieh]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Why does Pine64 sabotage office on the Pinephone?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19320</link>
			<pubDate>Sun, 30 Jun 2024 07:03:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=18024">Peter Gamma</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19320</guid>
			<description><![CDATA[- Does this table not show how great office applications would be on the Pinephone?<br />
<br />
<a href="https://petergamma.org/selected-office-applications-for-the-pinehone-android-phones-raspberry-pi-zero-2-w/" target="_blank" rel="noopener" class="mycode_url">https://petergamma.org/selected-office-a...-zero-2-w/</a><br />
<br />
- There is also a lot work behind this table of Peter Gamma from <a href="http://www.petergamma.org" target="_blank" rel="noopener" class="mycode_url">www.petergamma.org</a>.<br />
<br />
- But is pulling the Pinephone keyboard from the market not an act of sabotage against office applications on the Pinephone?]]></description>
			<content:encoded><![CDATA[- Does this table not show how great office applications would be on the Pinephone?<br />
<br />
<a href="https://petergamma.org/selected-office-applications-for-the-pinehone-android-phones-raspberry-pi-zero-2-w/" target="_blank" rel="noopener" class="mycode_url">https://petergamma.org/selected-office-a...-zero-2-w/</a><br />
<br />
- There is also a lot work behind this table of Peter Gamma from <a href="http://www.petergamma.org" target="_blank" rel="noopener" class="mycode_url">www.petergamma.org</a>.<br />
<br />
- But is pulling the Pinephone keyboard from the market not an act of sabotage against office applications on the Pinephone?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Samba share on the Pinephone?]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19298</link>
			<pubDate>Mon, 17 Jun 2024 04:26:37 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=18024">Peter Gamma</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19298</guid>
			<description><![CDATA[As far as I know the shared folder option is only integrated in the later versions of Ubuntu to share one folder from one Ubuntu PC to another:<br />
<br />
<a href="https://youtu.be/X-PSSd-U610" target="_blank" rel="noopener" class="mycode_url">https://youtu.be/X-PSSd-U610</a><br />
<br />
Or from a Ubuntu PC to a Windows 11 PC:<br />
<br />
<a href="https://youtu.be/KV5fhoawNIo" target="_blank" rel="noopener" class="mycode_url">https://youtu.be/KV5fhoawNIo</a><br />
<br />
But there is also the solution to share files with Samba.<br />
<br />
I found hree a Guide - «Setting up a SMB(Windows) file server» on Rock 64 in the Pine64 forum:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=4983" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=4983</a><br />
<br />
Does this work also on the Pinephone?]]></description>
			<content:encoded><![CDATA[As far as I know the shared folder option is only integrated in the later versions of Ubuntu to share one folder from one Ubuntu PC to another:<br />
<br />
<a href="https://youtu.be/X-PSSd-U610" target="_blank" rel="noopener" class="mycode_url">https://youtu.be/X-PSSd-U610</a><br />
<br />
Or from a Ubuntu PC to a Windows 11 PC:<br />
<br />
<a href="https://youtu.be/KV5fhoawNIo" target="_blank" rel="noopener" class="mycode_url">https://youtu.be/KV5fhoawNIo</a><br />
<br />
But there is also the solution to share files with Samba.<br />
<br />
I found hree a Guide - «Setting up a SMB(Windows) file server» on Rock 64 in the Pine64 forum:<br />
<br />
<a href="https://forum.pine64.org/showthread.php?tid=4983" target="_blank" rel="noopener" class="mycode_url">https://forum.pine64.org/showthread.php?tid=4983</a><br />
<br />
Does this work also on the Pinephone?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Simple privacy office solution for the Pinepone]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19289</link>
			<pubDate>Thu, 13 Jun 2024 23:45:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=18024">Peter Gamma</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19289</guid>
			<description><![CDATA[I have summarized the simplest privacy office solution for the Pinephone I know. I did not manage to get every detail to work yet, but everything should work in principle. Since all information is available from the Pine64 forum. I invite everybody to take over this instruction, update it and add more features:<br />
<br />
<a href="https://petergamma.org/a-simple-privacy-office-solution-for-the-pinephone-abiword-gnumeric-sharing-data-to-your-pc-over-the-external-sd-card/" target="_blank" rel="noopener" class="mycode_url">https://petergamma.org/a-simple-privacy-...l-sd-card/</a>]]></description>
			<content:encoded><![CDATA[I have summarized the simplest privacy office solution for the Pinephone I know. I did not manage to get every detail to work yet, but everything should work in principle. Since all information is available from the Pine64 forum. I invite everybody to take over this instruction, update it and add more features:<br />
<br />
<a href="https://petergamma.org/a-simple-privacy-office-solution-for-the-pinephone-abiword-gnumeric-sharing-data-to-your-pc-over-the-external-sd-card/" target="_blank" rel="noopener" class="mycode_url">https://petergamma.org/a-simple-privacy-...l-sd-card/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Possible Free Backup Carrier for PinePhone]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19287</link>
			<pubDate>Thu, 13 Jun 2024 21:45:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=25889">PineFone</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19287</guid>
			<description><![CDATA[A long running concern I've had about the PP is that at some point phone carriers can drop service at any time as has happened previously.<br />
<br />
Is the following a solution for not just messaging, but audio calls to others who've loaded the same software?<br />
<br />
--------------------------<br />
<br />
There is a non-TCP internet project called Reticulum that has some similarities to the low signal messenger Meshtastic, but Reticulum is much more versatile.<br />
<br />
One of the newest features includes allowing for VOIP phone calls through <span style="font-weight: bold;" class="mycode_b">Reticulum Meshchat</span>:<br />
<br />
<a href="https://github.com/liamcottle/reticulum-webchat" target="_blank" rel="noopener" class="mycode_url">https://github.com/liamcottle/reticulum-webchat</a><br />
<br />
Meshchat can make use of standard internet, wifi, and also the LORA Radio Nodes commonly used for Meshtastic.<br />
<br />
PinePhone has a back plate accessory that comes with a built in LORA Radio Node:<br />
<br />
<a href="https://pine64.com/product/pinephone-pinephone-pro-pindio-lora-add-on-case/" target="_blank" rel="noopener" class="mycode_url">https://pine64.com/product/pinephone-pin...d-on-case/</a><br />
<br />
Can this provide another use case for the back plate accessory?<br />
<br />
It theoretically solves for the cumbersome LilyGo T-Beam Radio Node that needs to be connected via USB chord to droid phones for similar mesh networks.<br />
<br />
How difficult is it to code Reticulum-Meshchat for PinePhone <span style="font-style: italic;" class="mycode_i">(preferably Arch Phosh for personal testing)</span>?<br />
<br />
Note: I don't know Python and lack the free time to learn to attempt this on my own.]]></description>
			<content:encoded><![CDATA[A long running concern I've had about the PP is that at some point phone carriers can drop service at any time as has happened previously.<br />
<br />
Is the following a solution for not just messaging, but audio calls to others who've loaded the same software?<br />
<br />
--------------------------<br />
<br />
There is a non-TCP internet project called Reticulum that has some similarities to the low signal messenger Meshtastic, but Reticulum is much more versatile.<br />
<br />
One of the newest features includes allowing for VOIP phone calls through <span style="font-weight: bold;" class="mycode_b">Reticulum Meshchat</span>:<br />
<br />
<a href="https://github.com/liamcottle/reticulum-webchat" target="_blank" rel="noopener" class="mycode_url">https://github.com/liamcottle/reticulum-webchat</a><br />
<br />
Meshchat can make use of standard internet, wifi, and also the LORA Radio Nodes commonly used for Meshtastic.<br />
<br />
PinePhone has a back plate accessory that comes with a built in LORA Radio Node:<br />
<br />
<a href="https://pine64.com/product/pinephone-pinephone-pro-pindio-lora-add-on-case/" target="_blank" rel="noopener" class="mycode_url">https://pine64.com/product/pinephone-pin...d-on-case/</a><br />
<br />
Can this provide another use case for the back plate accessory?<br />
<br />
It theoretically solves for the cumbersome LilyGo T-Beam Radio Node that needs to be connected via USB chord to droid phones for similar mesh networks.<br />
<br />
How difficult is it to code Reticulum-Meshchat for PinePhone <span style="font-style: italic;" class="mycode_i">(preferably Arch Phosh for personal testing)</span>?<br />
<br />
Note: I don't know Python and lack the free time to learn to attempt this on my own.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GloDroid (Android-14)]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19181</link>
			<pubDate>Wed, 17 Apr 2024 00:02:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=26933">GaryM</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19181</guid>
			<description><![CDATA[I've been running GloDroid, Android 14 2023w46, on the Pinetime beta for awhile now. Here are some of my discoveries in the hopes that they will help others. I hope we see more from the GloDroid team as this has been a fun build to play with. <br />
<br />
Touch response is great/better than most Pinetime distrobutions I've played with.<br />
Battery performance is really good, standby power consumption can get you 3–4 days before charging, which is impressive!<br />
Headphones work!<br />
The phone speaker works too!<br />
F-droid takes a while to update the repositories, so be patient the mirrors can be busy.<br />
The messages app can view messages but not create them. I've been using SMSdroid since then, with good success.<br />
I love the sound effect when you hook up a charging source. The good old days of having a old Nokia are back. ;-)<br />
Tapping 7 times on the build number in the settings-&gt;about gives you the developer options. Good for debugging.<br />
I downloaded GadgetBridge from F-droid and was able to pair both of my Pinetime watches. Awesome!<br />
<br />
Phone service is a little sketchy, 50/50 chance the phone will boot and recognize the SIM. When I get no service, a workaround I found is to plug the phone into a charging source and open the Messenger app. The phone will reboot on its own, and then the phone SIM is recognized, this may take a couple of reboots to take effect.<br />
<br />
WiFi will not connect to my new T-Mobile router. Though if I bring up a hot-spot on my other phone, it will connect with no issues. Funny, because my very old iPod has the same issue.<br />
<br />
I do get some random reboots every once in awhile, that's where I'll try to debug the cause so I'll keep playing and making new discoveries and sharing.<br />
<br />
Have fun out there!<br />
<br />
Gary]]></description>
			<content:encoded><![CDATA[I've been running GloDroid, Android 14 2023w46, on the Pinetime beta for awhile now. Here are some of my discoveries in the hopes that they will help others. I hope we see more from the GloDroid team as this has been a fun build to play with. <br />
<br />
Touch response is great/better than most Pinetime distrobutions I've played with.<br />
Battery performance is really good, standby power consumption can get you 3–4 days before charging, which is impressive!<br />
Headphones work!<br />
The phone speaker works too!<br />
F-droid takes a while to update the repositories, so be patient the mirrors can be busy.<br />
The messages app can view messages but not create them. I've been using SMSdroid since then, with good success.<br />
I love the sound effect when you hook up a charging source. The good old days of having a old Nokia are back. ;-)<br />
Tapping 7 times on the build number in the settings-&gt;about gives you the developer options. Good for debugging.<br />
I downloaded GadgetBridge from F-droid and was able to pair both of my Pinetime watches. Awesome!<br />
<br />
Phone service is a little sketchy, 50/50 chance the phone will boot and recognize the SIM. When I get no service, a workaround I found is to plug the phone into a charging source and open the Messenger app. The phone will reboot on its own, and then the phone SIM is recognized, this may take a couple of reboots to take effect.<br />
<br />
WiFi will not connect to my new T-Mobile router. Though if I bring up a hot-spot on my other phone, it will connect with no issues. Funny, because my very old iPod has the same issue.<br />
<br />
I do get some random reboots every once in awhile, that's where I'll try to debug the cause so I'll keep playing and making new discoveries and sharing.<br />
<br />
Have fun out there!<br />
<br />
Gary]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PINEPHONE not booting]]></title>
			<link>https://forum.pine64.org/showthread.php?tid=19094</link>
			<pubDate>Thu, 22 Feb 2024 17:30:23 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.pine64.org/member.php?action=profile&uid=27926">Touchwood</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.pine64.org/showthread.php?tid=19094</guid>
			<description><![CDATA[Hello all,<br />
<br />
I am not sure if I should introduce myself, if not: just ignore:<br />
<br />
My name is Albert, I am from Denmark. I am an ethical hacker. The name Touchwood comes from the frog, the wizard Catweazle always has with him.<br />
<br />
To the case:<br />
I just received my Pinephone - Beta.<br />
But it won't boot up. I put a USB charger stick into the USB-C port. The led at the top turned red, then green, while the phone is vibrating. I can see the display is lit, but nothing happens. Then the LED shuts, and the process continues several times, before it stops doing anything.<br />
<br />
What could cause this problem?]]></description>
			<content:encoded><![CDATA[Hello all,<br />
<br />
I am not sure if I should introduce myself, if not: just ignore:<br />
<br />
My name is Albert, I am from Denmark. I am an ethical hacker. The name Touchwood comes from the frog, the wizard Catweazle always has with him.<br />
<br />
To the case:<br />
I just received my Pinephone - Beta.<br />
But it won't boot up. I put a USB charger stick into the USB-C port. The led at the top turned red, then green, while the phone is vibrating. I can see the display is lit, but nothing happens. Then the LED shuts, and the process continues several times, before it stops doing anything.<br />
<br />
What could cause this problem?]]></content:encoded>
		</item>
	</channel>
</rss>