I recently installed Pidgin on my Ubuntu machine along with OTR plugin. When I tried to generate a key, I get the following error in my console:
>> Could not write private key file
I think that maybe the normal user doesn't have the privileges for that action so I switch to root user.
Then when I tried to generate the OTR key, all worked fine.
The problem now is that every time I run sudo pidgin
in my console, I don't see any windows of the program. and I get the following error in my console:
(Pidgin:12241): IBUS-WARNING **: The owner of /home/georgegks/.config/ibus/bus is not root!
So all in all I have two questions:
- Why I can't generate an OTR key on a normal user account?
- Why no window pop ups when I run the pidgin as root?
sudo chown -R $USER: ~
to get back possibly messed up ownership of all files in your home directory after having usedsudo pidgin
. Otherwise you might encounter problems later... – Byte Commander Jan 10 '16 at 19:30