Centos7 install WPS

1 Go to the official website of wps to download the installation package of the Linux version. According to whether your linux is 32-bit or 64-bit, download the corresponding installation package. I downloaded the 64-bit rpm package

Download link: http://www.wps.cn/product/wpslinux#

2 If you want to install in that directory, put the installation file in that directory, such as:
#mv /home/Downloads/wps-office-10.1.0.6757-1.x86_64.rpm /opt # Move the installation package to the directory /opt
# cd /opt # switch to directory /opt

#rpm -ivh wps-office-10.1.0.6757-1.x86_64.rpm # Install wps

3 Problems encountered during installation:

[root@192 opt]# rpm -ivh wps-office-10.1.0.6757-1.x86_64.rpm
error: dependency check failed:
    libGLU.so.1()(64bit) was wps-office-10.1.0.6757-1. x86_64 required

Solution: Baidu libGLU.so.1()(64bit) on my own and found a link for a long time: https://pkgs.org/download/libGLU.so.1()(64bit)  

The libGLU.so.1()(64bit) of the corresponding system can be downloaded. Mine is centos7, so I downloaded mesa-libGLU-9.0.0-4.el7.x86_64.rpm

4 After downloading, change the directory to mesa-libGLU-9.0.0-4.el7.x86_64.rpm  just downloaded

In the directory, install mesa-libGLU-9.0.0-4.el7.x86_64.rpm:

[root@192 Download]# rpm -ivh mesa-libGLU-9.0.0-4.el7.x86_64.rpm

In preparation... ################################ [100%]
Upgrading/installing...
   1 :mesa-libGLU-9.0.0-4.el7 ################################ [100%]

5 After installation, start to install wps:
[root@192 download]# cd /opt # Switch to the directory where the wps installation package is located
[root@192 opt]# rpm -ivh wps-office-10.1.0.6757-1.x86_64. rpm # Installation in
preparation... ################################ [100%]
Upgrading/installing. ..
   1:wps-office-10.1.0.6757-1 ################################# [100%]

Here wps is installed. At this point you can see the wps icon on the graphical interface. 

6 Open one of them, if the prompt "System missing font symbol, wingdings, wingdings 2, wingdings 3, webding" appears; fonts need to be added.

See here: https://segmentfault.com/a/1190000008504686

7 After downloading wps_symbol_fonts.zip in the above link, you need to unzip it to /usr/share/fonts

[root@192 download]# cd /usr/share/fonts # Switch to the directory that needs to be decompressed
[root@192 fonts]# unzip wps_symbol_fonts.zip #Unzip the zip package. After running, you will find that there are more files in the current directory.
Archive: wps_symbol_fonts.zip
  inflating: WEBDINGS.TTF            
  inflating: WINGDNG2.ttf            
  inflating: WINGDNG3.ttf            
  inflating: mtextra.ttf             
  inflating: symbol.ttf              
  inflating: wingding.ttf

At this time, open wps again, there is no "system missing font symbol, wingdings, wingdings 2, wingdings 3, webding" in the prompt.

It can be used normally. 

Guess you like

Origin blog.csdn.net/weixin_37991107/article/details/83416552