Ubuntu – Open Office Bug: The user interface language cannot be determined


I had this error today when trying to access Open Office. The Ubuntu was freshly Installed and packages looked ok. So there could be only one thing that was wrong: Permissions

What I did:

1.I went to root
2. Changed ownership of .openoffice.org folder
3. Changed permissions to this folder

Copy and paste this and it should work:

  $ cd ~
  $ sudo chown --reference=. -R .openoffice.org 
  $ sudo chmod -R 755 .openoffice.org 
 

If you have this error:

 chown: cannot access `.openoffice.org': No such file or directory

Check the name of the folder of Openoffice:

  $cd ~; ls -la
 

And then use commands above but on the correct directory name.

Cheers

About Anatoly Spektor

My name is Anatoly Spektor (originally Anatolijs Spektors) I am Software and Web Developer. I have worked in Seneca Center for Development of Open Technology on Big Blue Button Add-on - Polling Module, Red Hat and some other places :) I am an author of the book 'Eclipse Debugging How To', Muay Thai fighter and amateur photographer ;)
This entry was posted in Bash (Unix Shell), Scripts, Tutorials, Ubuntu and tagged , , , , , , , , , . Bookmark the permalink.

1 Response to Ubuntu – Open Office Bug: The user interface language cannot be determined

  1. Alesandro Stella says:

    thanks…

Leave a reply to Alesandro Stella Cancel reply