How to tell which version of Manjaro / Phosh is installed? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: Manjaro on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=130) +---- Thread: How to tell which version of Manjaro / Phosh is installed? (/showthread.php?tid=12093) |
How to tell which version of Manjaro / Phosh is installed? - kern707 - 11-10-2020 Hello everybody, I was wondering, how I can check which version of Manjaro / Posh is installed on my PinePhone ? I was looking for it in the "About" app, but other than a version number (which I believe belongs to the kernel?) I couldn't find much. Is there any terminal command for this? Thanks in advanced RE: How to tell which version of Manjaro / Posh is installed? - acid andy - 11-10-2020 I guess not many people know the answer! Or they just can't be bothered to reply... After searching the web I've tried: Code: cat /etc/*release and Code: cat /usr/share/gnome/*version.xml All they tell me is that it's Manjaro ARM Linux with a Gnome version number and that the distributor is Arch Linux. There's no mention of Phosh, Plasma, Lomiri, anywhere. I suppose we could look for screenshots or videos to try and tell from the look and feel but I don't have time for that right now. I mean, I know mine's not running Plasma because that would look like KDE and presumably not have Gnome stuff, but it would be nice to see "Phosh" in writing somewhere to confirm what desktop environment it is. RE: How to tell which version of Manjaro / Posh is installed? - kqlnut - 11-10-2020 You could check which of the known desktop environment packages are installed and/or similarly check for running processes belonging to one of them. So for example on Mobian you could do Code: apt list --installed *phosh* For running processes check Code: ps aux | grep phosh RE: How to tell which version of Manjaro / Posh is installed? - ThrillGates - 11-10-2020 Use pacman in Manjaro (and any other Arch-based distros) with the -Qi flag to QUERY information for an INSTALLED package. Example for phosh below (not sure if that's the actual package name). Code: pacman -Qi phosh RE: How to tell which version of Manjaro / Phosh is installed? - kern707 - 11-11-2020 (11-10-2020, 12:23 PM)ThrillGates Wrote: Use pacman in Manjaro (and any other Arch-based distros) with the -Qi flag to QUERY information for an INSTALLED package. Example for phosh below (not sure if that's the actual package name). Thanks @ThrillGates, My daily driver on my desktop / laptop is a Debian based distro, so i'd need to learn some new tricks I confirm that this command worked for me on my PinePhone that is running Manjaro, using the terminal, The output included a detailed description showing that Phosh is indeed installed, and also the version and some other details about the package. I also found out that I could use the same command that I am using on Debian based linux distros, and it shows me the distro name and release, the command is "lsb_release -a" ** So to sum up this thread with the solutions that worked for me: 1. Terminal command for finding out the Distro type and Release: Code: lsb_release -a Code: uname -a 2. Terminal command for checking if Phosh is installed (thank you ThrillGates): Code: pacman -Qi phosh I hope it helps somebody |