Does anyone know how to install a Japanese Hiragana keyboard in PureOS?
The Japanese keyboards I have found in the Region & Language menu are either Romaji or Katakana (non-phonetic). I am after an input method that turns Romaji input into Hiragana characters. Solutions that I have found online are focused on Ubuntu or Fedora and involve an option called Japanese (anthy), which does not seem to be available for PureOS.
As PureOS is based on Debian you can look for mozc (can run with fcitx or ibus which are 2 different input methods). You should be able to find ibus-mozc package.
PS: debian user here cannot guaranty for PureOS, I’m trying to help
Many thanks for your response. I did find a file called mozc, but was not able to install it (it was a text file of sorts). Admittedly, I’m new to Linux and these things will take me a lot longer than more advanced or IT savvy users.
The way to install packages is by using a terminal.
Launch a terminal, called tilix
In that terminal, when you are logged in as the current user, the convention is to describe the line by starting with $
When you are logged in as the-super-user-that-has-all-rights, also called root, we describe those lines with a #
As an example, if you read "type echo 'test'", we can show the command and output as follows:
$ echo 'test'
test
So, when opening the terminal, you need to get the root privileges to be allowed to install anything.
$ su -
Password: <you type in your password and nothing appears>
#
From there on, you can use the apt command to browse packages. Simply typing apt will display the help. Spend a bit of time on that help to learn more
Thanks! This was very helpful. I got pretty close (found ibus-mozc), but fell short of success. When I keyed in my password to access super user rights (I used the password I had set up for my usual log in), it gave me an authentication failure message. Is the super user password different from my log in password? Sorry if this is a stupid question – as I said, I’m new to this…
Using the command su (which stands for Switch User) is used to actually impersonate root. You need to type in the root password (the administrator password, in a way) when prompted, not your regular user password
When you started your Librem for the very first time, you went through configuration steps. You were prompted for the root password at that time.
If you really can’t remember your root password, you probably will need to make a full re-install of the OS. That’s not a big deal, but that wipes all your data, so make sure you have a backup somewhere.
Speaking of backup, it’s always a good idea to have a backup. I strongly advise you to have a nextcloud backup. Currently disroot offers a 4GB backup for free (and you most certainly can pay them to extend that). Plus, Purism partnered up with Nextcloud (the software that Disroot runs for free), so you will have good support for it built-in the OS for a long time!
There’s no stupid question if you are willing to learn. Welcome to the place where you get back the actual control of your computer
Since I recently set up my computer (not much to lose on this side) and, for the life of me, cannot remember my root password, I will go ahead and re-install PureOS. I do, however, want to make sure that I’m not making things worse. All I want is to go back to square one and [re-] install the system. When I looked for guides, I found a whole host of them.
I may be wrong, but I think PureOS does not sport sudo out of the box, does it?
If I recall correctly, defining the root password is asked on first startup
Sorry for the late reply. It took me this long to find the time for the reboot. I now have successfully completed it, reset my super-user password, and can run the above commands.