rhel6

rhel6(centos)安装WPS最新版

我的未来我决定 提交于 2020-03-07 12:01:07
前天在社区看到WPS的资讯,今天安装测试了一下: 资源下载:http://community.wps.cn/download/ wps-office-8.1.0.3842-0.1.a9p1.i686.rpm 注意:libfreetype.so.6.8.0.zip symbol-fonts-1.1-1.noarch.rpm libstdc++.so.6.0.17.zip 都从网上下载 问题一:使用rpm安装时,显示依赖性,使用yum工具解决 问题二:libstdc++.so.6动态库的问题, [root@desktop18 Desktop]# rpm -ivh wps-office-8.1.0.3842-0.1.a9p1.i686.rpm error: Failed dependencies: libstdc++.so.6(GLIBCXX_3.4.14) is needed by wps-office-8.1.0.3842-0.1.a9p1.i686(报错) 解决: cp libstdc++.so.6.0.17 /usr/lib64/ rm -fr /usr/lib64/libstdc++.so.6 rm -fr /usr/lib64/libstdc++.so.6.0.13 ln -s /usr/lib64/libstdc++.so.6.0.17 /usr/lib64/libstdc

Installing R 3.3.2 in RHEL 6.8 without yum

本小妞迷上赌 提交于 2019-12-25 04:12:14
问题 My goal is to install R 3.3.2 in RHEL 6.8 without yum inside an isolated system with no Internet access. I can only move source code to this sytem compile, build and run. So when I: .configure the R source I get an error: configure: error: No F77 compiler found I found this but now I'm confused. I am under the impression that gcc 4.0 already has Fortran? I checked that: gcc --version Returns version 4.4.7. 回答1: GCC does come with a Fortran compiler - gfortran , but the Fortran part is often

Node.js HTTPS configuration error - no common encryption algorithm(s)

六月ゝ 毕业季﹏ 提交于 2019-12-25 01:18:40
问题 I have seen other similar questions but non addresses my problem. I have generated my TLS (openSSL) Self-Signed certificate, but seems not working on my NodeJS server. Instructions to generate SSL openssl req -newkey rsa:2048 -keyout key.pem -x509 -days 365 -out certificate.pem openssl x509 -text -noout -in certificate.pem openssl pkcs12 -inkey key.pem -in certificate.pem -export -out certificate.p12 openssl pkcs12 -in certificate.p12 -noout -info // verify certificate So at the end I have

tar command not found in Dockerfile

你。 提交于 2019-12-22 05:39:12
问题 I am trying to download a file in rhel6 and use tar to uncompress it. I am running this on docker. I get a wierd error saying /bin/sh: tar: command not found. I am new to linux and docker. Can someone help. #HELLO FROM rhel6 MAINTAINER xxxxx #RUN yum -y install wget RUN yum update -y && yum clean all #RUN yum -y install tar RUN curl -OL http://username:pwd@downloads.datastax.com/enterprise/dse-4.0.3-bin.tar.gz RUN curl -OL http://username:pwd@downloads.datastax.com/enterprise/opscenter-4.0.3

Python3.6 ImportError: cannot import name 'main' Linux RHEL6

馋奶兔 提交于 2019-12-17 22:34:22
问题 My ultimate goal is to download and install awscli http://docs.aws.amazon.com/cli/latest/userguide/awscli-install-linux.html Seems python and pip are required in order to accomplish my goal. Installing python via yum isn't working for me, so I downloaded and installed python3 manually as follows: wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz tar xf Python-3.6.1.tar.xz cd Python-3.6.1.tar.xz ./configure make sudo make altinstall When I do pip3.6 --version I get this:

how to find libstdc++.so.6: that contain GLIBCXX_3.4.19 for RHEL 6?

只愿长相守 提交于 2019-12-13 15:24:49
问题 I work with a Linuxs server: > cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.7 (Santiago) (from wikipedia: Red Hat Enterprise Linux 6 was forked from Fedora 12 6.7, also termed Update 7, 22 July 2015 (kernel 2.6.32-573) 6.8, also termed Update 8, 10 May 2016 (kernel 2.6.32-642)) The kernel > uname -r 2.6.32-642.11.1.el6.x86_64 > uname -s Linux > uname -v #1 SMP Tue Nov 15 22:57:18 EST 2016 > cat /proc/version Linux version 2.6.32-642.11.1.el6.x86_64 (sandman@node3res7)

mod_wsgi Apache error with django app

谁说我不能喝 提交于 2019-12-11 08:25:44
问题 I have a django (1.7) app that works pretty well on a Centos7 server. Now i moving to production server RHEL 6 and still have some issues. The problem is the mod_wsgi. The server config: RHEL6 Apache 2.2 Django 1.7 Python 2.6 the apache error log [Fri Feb 20 11:18:39 2015] [error] [client 127.0.0.1] mod_wsgi (pid=12827): Target WSGI script '/home/evtdb/FLWeb/FLWeb/wsgi.py' cannot be loaded as Python module. [Fri Feb 20 11:18:39 2015] [error] [client 127.0.0.1] mod_wsgi (pid=12827): Exception

_GLIBCXX_USE_CXX11_ABI disabled on RHEL6 and RHEL7?

风格不统一 提交于 2019-12-10 15:56:58
问题 I have gcc 5.2.1 on RHEL6 and RHEL7, and it looks like _GLIBCXX_USE_CXX11_ABI gets disabled. It's not working even if I manually run -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++14 . This means I won't get small string optimization feature. For example, the output of following code always have 8 and 'micro not set'. For SSO, size of std::string should be at least 16 if we look at code bits/basic_string.h. Any workaround? #include <string> #include <iostream> int main() { std::cout << sizeof(std::string

Installing R on RHEL 6

守給你的承諾、 提交于 2019-12-09 02:14:01
问题 my questions is similar to this one - Problems installing R on Linux CentOS 6.3 I installed epel, but when I run yum install R, I get the two dependency problems - Error: Package: R-core-3.0.1-2.el6.x86_64 (epel) Requires: libjpeg.so.62(LIBJPEG_6.2)(64bit) Error: Package: R-core-devel-3.0.1-2.el6.x86_64 (epel) Requires: texinfo-tex I tried installing texinfo-tex using the rpm file from - http://rpm.pbone.net/index.php3/stat/4/idpl/15993086/dir/scientific_linux_6/com/texinfo-tex-4.13a-8.el6

Bash script size limitation?

别来无恙 提交于 2019-12-08 17:14:04
问题 I have a bash script that, when run on RHEL or OS X, gives the following error: line 62484: syntax error near unexpected token `newline' line 62484: ` -o_gz' This is an auto-generated script to work around a limitation introduced by the grid engine compute cluster used in my company. It is all composed of a bunch of almost-identical if/elif 's. I can't see anything special with the line where the error comes from. When I run the beginning part of the script before the error line, it works