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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 30,010
» Latest member: PerfectJam
» Forum threads: 16,338
» Forum posts: 117,451

Full Statistics

Latest Threads
The "Should I buy a Quart...
Forum: General Discussion on Quartz64
Last Post: kapqa
05-05-2026, 07:57 AM
» Replies: 5
» Views: 20,322
Volumio (PINE A64-LTS / S...
Forum: Linux on PINE A64-LTS / SOPINE
Last Post: shinzuka
05-04-2026, 09:02 AM
» Replies: 9
» Views: 16,843
Star64 Irradium (based on...
Forum: Getting Started
Last Post: mara
05-03-2026, 07:07 AM
» Replies: 14
» Views: 15,245
Volumio 3 Pine A64+ unoff...
Forum: Linux on Pine A64(+)
Last Post: shinzuka
05-02-2026, 10:49 AM
» Replies: 0
» Views: 75
Mobian image for the Pine...
Forum: Mobian on PinePhone
Last Post: Korfou
04-27-2026, 09:57 AM
» Replies: 2
» Views: 334
Pine Time dead
Forum: General Discussion on PineTime
Last Post: chris.burmajster
04-18-2026, 10:08 AM
» Replies: 0
» Views: 251
Booting Issues
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:17 PM
» Replies: 24
» Views: 19,825
App launcher shows tiny i...
Forum: PineNote Software
Last Post: vlagged
04-17-2026, 04:12 PM
» Replies: 1
» Views: 1,153
my pinecil v2 is not work...
Forum: General Discussion on Pinecil
Last Post: jagrav
04-17-2026, 06:28 AM
» Replies: 0
» Views: 184
Freezes and kernel panics...
Forum: Linux on RockPro64
Last Post: prahal
04-15-2026, 06:48 PM
» Replies: 4
» Views: 1,556

 
  Screen/Screen Protector Whitening Issue
Posted by: adjf873_n-s - 06-27-2021, 11:10 PM - Forum: PinePhone Accessories - Replies (6)

Hello Everyone

This isn't a big issue as yet, but I thought I'd just mention it as it seems to be getting worse. I bought a Pinephone about a year ago and it came with a screen protector. I haven't had any problems with it until recently - It seems that the adhesive holding the screen protector to the screen is starting to streak. At least, I think it's the screen protector adhesive. All the whitening is occurring on the display edges, rather than the edges of the protector, as can barely be seen in my grainy photo attached. As such, I'm not sure if this might be an issue with the screen itself, but the whitening is not visible when there is a display image at these whitening sites.

I suspect that it may be something to do with prolonged heat generation from the modem/processor as the position of this whitening and the observation of it's periods of greatest growth coinciding with prolonged heat (usually from video playback). I would be curious; has anyone else encountered this issue? If so, were you able to find the cause? Also, were there any steps you took to arrest the growth of these white patches and/or ameliorate what was seen?



Attached Files Thumbnail(s)
   

  Pinephone for Sale in Australia
Posted by: Strobe - 06-27-2021, 10:07 PM - Forum: General Discussion on PinePhone - Replies (6)

Hello Everyone,

I've got two Pinephones from the Manjaro Community Edition release.. One is unused but opened, the other I've kept the OS updated but never used it extensively.

I'm selling both of them. I'd like AUD$250 per phone shipping in Australia included. If you want shipping outside Australia let me know and I'll work out a price for you.

Both phones operate, are undamaged and include the original box.


  How To: Custom Scaling between 100% - 200% but for Manjaro Phosh
Posted by: AwHereWeGoAgain - 06-27-2021, 08:10 PM - Forum: Manjaro on PinePhone - Replies (1)

Hey again.  I recently posted a howto in the Mobian side of the forum.  I wanted to post the same howto on the Manjaro side with the changes that were made to make it work on this side.  (Please note that these ideas originated from others working with the Librem 5.  I only adapted it to work with Manjaro. Please give credit to those who it is due in the link at the end.  Also note that I am in no way an expert and am much more comfortable with Debian based systems.  I am fairly new to Arch so if you know a more efficient way to complete the same task feel free to post below Smile .)

In the end what I was attempting worked so with that out of the way lets begin!

Step one. 
Install git.

Code:
sudo pacman -Syyu
sudo pacman -git

Step two.  
Install all of the Manjaro equivalents to the original Debian commands.  (This could take a while....it downloads around 300-400 meg?)
Code:
sudo pacman -Sy base-devel

Press enter when it asks what you want to install.....I just installed everything.

Then
Code:
sudo pacman -S ninja
sudo pacman -S meson
sudo pacman -S cmake
sudo pacman -S wayland
sudo pacman -S pkgconf
We should now have all the things necessary to install wlr-randr

Step 3
Lets build it. Smile 

Code:
git clone https://github.com/emersion/wlr-randr
cd wlr-randr
meson build
ninja -C build
sudo cp build/wlr-randr /usr/local/bin

Step 4
Lets run it.
You can now enter a number between 1 and 2 for your scale

Code:
wlr-randr --output DSI-1 --scale 1.5

I mentioned this in the Mobian side but I find that "wlr-randr --output DSI-1 --scale 1.35" works best for me as anything smaller uses the smaller keypad that is very difficult to type on.  

Hope people find this helpful!

Now....if I could just get it to keep the current scale when I reboot that would be nice.  Rolleyes

--------------------------------------------------------------------------------------------------------
Links to original data. 
https://puri.sm/posts/easy-librem-5-app-...he-screen/


  How To: Set up custom scaling for those who want sizes between 100%-200%
Posted by: AwHereWeGoAgain - 06-27-2021, 06:48 PM - Forum: Mobian on PinePhone - Replies (2)

Hello, I have been attempting to figure out how to setup custom scaling in the pine phone as the default 200% is WAY to big for all apps to work well and 100% gets apps working well but makes the keyboard so small it becomes difficult to type.  

I have read several articles concerning the Librem 5 and have come up with the following fix.  
(Please note that I am using other peoples work so please credit them where they are due.  I will post links to the sites I got everything from.)  

Step one.

We will be using an application called "wlr-randr" and we will be installing it from Github. 

To begin, we must first install "Git"

Code:
sudo apt update
sudo apt install git
 
After this is done we can begin installing "wlr-randr"

I added sudo after "meson build" and "ninja -c build" as you do need elevated privileges to run these.   
Code:
sudo apt install build-essential ninja-build meson cmake libwayland-dev pkg-config
git clone https://github.com/emersion/wlr-randr
cd wlr-randr
sudo meson build
sudo ninja -C build
sudo cp build/wlr-randr /usr/local/bin

Now the part we have been waiting for Wink

This will scale your screen to a size in between 100 and 200 percent.  
Code:
wlr-randr --output DSI-1 --scale 1.5

Personally I ended up sticking with "wlr-randr --output DSI-1 --scale 1.35" as anything smaller uses the smaller keyboard that is used in 100% scaling.  This way I get the best of both worlds.

Hope this helps folks out.  
Sometime soon, I hope to give this a shot on Manjaro Phosh and see how it goes.  Currently, I have only got it working on Mobian.

It appears you can also make a GUI for this using YAD.  The link below has the details on that.
https://puri.sm/posts/easy-librem-5-app-development-scale-the-screen/
https://www.digitalocean.com/community/t...d-with-git


  How To: set up custom lock screen and app-grid for Phosh based systems
Posted by: AwHereWeGoAgain - 06-27-2021, 04:29 PM - Forum: Manjaro on PinePhone - No Replies

So I just wanted to make this information more readily available to those who are new or want a custom lock screen for their pine phone.  I love the Phosh based OS's but I wanted a little more glam like PlasMo had.

I just want everyone to know that I didn't come up with any of this information.  It was all posted originally by Lowkeylone on Reddit.

https://www.reddit.com/r/pinephone/comme...to_phoshs/

Basically you need to create a new file. It will be located in this folder ----> ~/.config/gtk-3.0   and it will be called "gtk.css"   
(I did this on my laptop with the SD card inserted so I could use mouse and keyboard to save me a little hassle.)

Copy and paste this data into your new file:

Code:
/*
* Set a background for the lockscreen.
*/
phosh-lockscreen, .phosh-lockshield {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('file:///home/lowkey/Pictures/background.jpg');
  background-size: cover;
  background-position: center;
}

/*
* Set a background for the app grid.
*/
phosh-app-grid {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('file:///home/lowkey/Pictures/background.jpg');
  background-size: cover;
  background-position: center;
}

Make sure you change the file paths to match the image file you want to use.

For best results it was suggested that the file be resized to 720X1440.  I simply used gimp to crop/resize the image.  

It went well for me.  I just had to make it my wallpaper as well for it to seem seamless while loading apps and stuff.

This should work on other OS's that run Phosh as well. 

 Good luck!


  Crash when Updating Manjaro-Plasma. Hanging on "checking available disk space"
Posted by: UN_Owen - 06-27-2021, 01:38 PM - Forum: Manjaro on PinePhone - No Replies

Good evening. I acquired a Pinephone – Beta Edition with Convergence Package back in March and initially found the operating system to crash continually. I came back a couple of months later to it and tried to update the Manjaro to see if things had improved. After several hours of putting error messages into Google I have manged to get the phone mostly updated apart from an error which I believe is near the tail end of the process.

The issue is that the Pinephone seems to become unresponsive whilst "checking available disk space". I have no idea why this is happening.

Last few lines of SSH terminal:

Quote:Total Installed Size:  3775.60 MiB
Net Upgrade Size:      244.18 MiB

:: Proceed with installation? [Y/n]
(453/453) checking keys in keyring                   [#############################################] 100%
(453/453) checking package integrity                [#############################################] 100%
(453/453) loading package files                          [#############################################] 100%
(453/453) checking for file conflicts                    [#############################################] 100%
( 87/457) checking available disk space              [########-------------------------------------]  19%

I have checked the disk space itself:
Quote:[username@plasma-mobile ~]$ df -h
Filesystem      Size  Used Avail Use% Mounted on
dev            1.4G    0  1.4G  0% /dev
run            1.5G  9.4M  1.5G  1% /run
/dev/mmcblk2p2  29G  5.8G  22G  22% /
tmpfs          1.5G    0  1.5G  0% /dev/shm
tmpfs          4.0M    0  4.0M  0% /sys/fs/cgroup
tmpfs          1.5G  60K  1.5G  1% /tmp
/dev/mmcblk2p1  214M  37M  177M  18% /boot
tmpfs          300M  48K  300M  1% /run/user/1002

As well as the current Distro and GUI versions:
Quote:[username@plasma-mobile ~]$ hostnamectl
  Static hostname: plasma-mobile
        Icon name: computer-handset
          Chassis: handset
        Machine ID: 71fdd7dcc5db4aeba9bec02b1fc96dc8
          Boot ID: c1b8b7c5c2b64215a9fb6d2539f73bd7
  Operating System: Manjaro ARM
            Kernel: Linux 5.11.3-1-MANJARO-ARM
      Architecture: arm64
[username@plasma-mobile ~]$ plasmashell --version
plasmashell 5.21.2
[username@plasma-mobile ~]$ kf5-config --version
Qt: 5.15.2
KDE Frameworks: 5.79.0
kf5-config: 1.0


Other details that might be relevant are that I have also experienced the screen flicker / going blank since embarking on the update process and that I the power brick I am using is an Apple iPhone /iPad one which is below the recommended specifications (15W – 5V 3A from store page) at only 5V 1A.
 
Any help with this issue would be much appreciated, even if it is just pointing to a pre-existing article fixing this problem.

Kind regards,

A new Pinephone owner.


  OpenBSD booting from SATA
Posted by: StickyPine - 06-27-2021, 09:14 AM - Forum: BSD on RockPro64 - Replies (2)

Hi !

I would like to install OpenBSD (6.9 at the time of writing) on an encrypted RAID1 device.
After struggling for a very long time with a defective PCIe to SATA  card, I finally managed to finish the installation process. But I'm not able to boot from SATA.

I've flashed SPI with u-boot and put the dtb (and even u-boot) on 'i' partition of the disk, but didn't manage to have it boot successfully.

Is there a way to make it work ?


  Update-rc.d for Mobian
Posted by: Davio - 06-27-2021, 07:53 AM - Forum: Mobian on PinePhone - Replies (2)

Hi, I'm trying to use this command (update-rc.d) to add a script to the startup but Kings's Cross can't find it. Is it possible to install this command? Thanks!


Question What is (or was) "libcanberra"?
Posted by: danimations - 06-27-2021, 02:21 AM - Forum: Manjaro on PinePhone - Replies (2)

Hi, I recently got around to upgrading Manjaro and a couple of update prompts made me curious.

Could someone please tell me what libcanberra-pulse and its successor, extra/libcanberra were for?

It seems after my most recent update, these have been removed. 

I'd appreciate any insights into what these were, and what made them obsolete. 

Thanks in advance.  Smile


Seems the library had something to do with sound. https://wiki.archlinux.org/title/Libcanberra



Attached Files Thumbnail(s)
       

  Is my VoLTE working?
Posted by: worden - 06-26-2021, 11:46 PM - Forum: General Discussion on PinePhone - Replies (1)

Hi, I followed all the instructions I could find to get VoLTE working. My carrier "Consumer Cellular" uses AT&T network which is soon totally disabling 3G so I must get VoLTE working. However I'm not sure if it is working. I need help understanding it.

I have Manjaro CE with Phosh.

I reached the carrier support and they succesfuly detected the modem model and enabled something on their end to allow VoLTE.

I followed the VoLTE steps on the main PinePhone wiki page.

Code:
AT+QCFG="ims"
+QCFG: "ims",1,1

OK

The 4G indicator shows in the UI. To test, I called my wife.

Code:
#Start call to my wife:

[root@manjaro-arm ~]# echo 'AT+CLCC' | atinout - /dev/EG25.AT -
+CLCC: 2,1,0,1,0,"",128
+CLCC: 1,1,0,1,0,"",128
+CLCC: 3,0,0,0,0,"4436179824",129,"Andrea"
+CLCC: 4,1,0,1,0,"",128

OK

#Hang up:

[root@manjaro-arm ~]# echo 'AT+CLCC' | atinout - /dev/EG25.AT -
+CLCC: 2,1,0,1,0,"",128
+CLCC: 1,1,0,1,0,"",128

OK

[root@manjaro-arm ~]# echo 'AT+QNWINFO' | atinout - /dev/EG25.AT -
+QNWINFO: "FDD LTE","310410","LTE BAND 2",700

OK



Elsewhere I have read that the fourth value of AT+CLCC tells you whether the voice is carried by VoLTE. The Quectel AT command reference says ony this about it:

<mode>Bearer/tele service
0: Voice
1: Data
2: FAX

However the line with my wife's phone number has a 0 in that position. Still I wonder, with all the other symptoms lining up??