Can I open a Windows PDF on Linux CentOS?


Most of distro comes with a built-in document viewer, unless you're using live version

Try following terminal commands to sort out if you have already any one of them (you can try double clicking to open it, but in case if you are new to Linux, or just better to try out)


In most DE you can use:

  1. xdg-open file2open.xxx  

in Gnome, you also can use:

  1. gvfs-open file2open.xxx 

(xxx = some file extension). With this command the default app for "xxx" will be invoked (for example evince if you want to open pdf).

Or specifically:

  1. evince file2open.pdf 

Or (default for KDE):

  1. okular file2open.pdf 

If you successfully opened pdf, that means you already have a software which can open pdf.

Now try to open with double clicking. S'il demande un logiciel pour ouvrir, essayez-en certains comme Libreoffice, okular etc...

Si vous n'y arrivez toujours pas, alors vous devez télécharger un logiciel pour les ouvrir. You can do it by typing following in terminal

  1. $ sudo apt-get install okular 
  2. OR 
  3. # yum install okular 

or you can install application you like. Vous pouvez obtenir la syntaxe sur Internet dans le cas où vous ne'savez pas comment télécharger à partir du terminal sous Linux. La plupart du temps, c'est sudo apt-get mais je ne peux pas l'expliquer plus ici. Vous pouvez l'obtenir bien détaillée sur Internet.

>