rhel6

rgdal doesn't recognize GDAL version

帅比萌擦擦* 提交于 2019-12-08 12:13:17
问题 I'm trying to installed rgdal on RHEL 6. I've install GDAL version 1.7.3 and PROJ version 4.7.0-1. When I run install.packages("rgdal") I get the following error: checking gdal-config usability... yes configure: GDAL: 1.7.3 checking GDAL version >= 1.11.4... no configure: error: upgrade GDAL to 1.11.4 or later ERROR: configuration failed for package ârgdalâ * removing â/usr/lib64/R/library/rgdalâ The rgdal CRAN page says you need GDAL 1.1 or above. Is GDAL 1.7 not supported? Can anyone show

How can I open pdf files in SWT browser window while using XULRunner?

拜拜、爱过 提交于 2019-12-08 09:16:40
问题 I am working on an eclipse based application wherein I need to preview pdf documents as part of a functionality. As of now clicking on preview button opens a prompt for saving the pdf but it does not directly open the document in the required window. Is there any way where I can add any arguments/Plugins in the XULRunner or the application's ini file so that the pdf can be opened in the window itself by default ? (I am using Red Hat Linux 6.5 (Santiago)) 回答1: The following applies to Linux

Cannot install rgdal package in R on RHEL6, unable to load shared object rgdal.so

ぐ巨炮叔叔 提交于 2019-12-08 02:15:11
问题 I have AWS RHEL6 server where I've installed (compiled) rgdal 1.9.2 and proj packages. Now in R I want to install rgdal package but it gives this error: ** testing if installed package can be loaded Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/home/Roel/R/x86_64-redhat-linux-gnu-library/3.3/rgdal/libs/rgdal.so': libgdal.so.1: cannot open shared object file: No such file or directory Error: loading failed Execution halted ERROR: loading failed * removing ‘

How can I ensure that curl uses openssl, and not nss?

血红的双手。 提交于 2019-12-07 08:44:29
问题 Is it possible to ensure by a configuration parameter, that curl uses OpenSSL, and not NSS to retrieve https content? I need to ensure this, in order to enforce compliance with FIPS140-2, which RHEL6.2 has certified? I think that answer is "no". So I'll ask the follow-up here as well... Can I recompile curl to ensure that it uses libssl and not libnss? I've tried: ./configure --with-ssl --without-nss and I still end up with a curl binary that dynamically links against libnss3.so . [root@fips

tar command not found in Dockerfile

我是研究僧i 提交于 2019-12-05 06:48:35
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.tar.gz RUN echo $PATH RUN tar -xzvf opscenter-4.0.3.tar.gz RUN rm *.tar.gz Very strange...this wasn't

How do I setup Oracle ODBC drivers on RHEL 6/Linux

Deadly 提交于 2019-12-03 06:25:59
问题 I need to setup Oracle ODBC drivers on RHEL 6 to connect to an Oracle data source residing on a remote Windows machine. I have taken the following steps: [1] Installed oracle-instanceclient-basic [2] Set environment variables: ORACLE_HOME and LD path [3] Created /etc/oracle/TNSnames.ora and configured but it did not set it correctly Initially, I got the error, "Connect failed because target or object does not exist" Then, I set: ORACLE_SID = DB_NAME in the TNSnames.ora file. But, that did not

SQLGetPrivateProfileString failed with

旧时模样 提交于 2019-12-01 17:29:22
问题 Typing the command: odbcinst -q -s on RHEL 6, I get the following error message: odbcinst: SQLGetPrivateProfileString failed with . All my DSN's are also not showing up when I run: odbcinst -q -d 回答1: Type the command: env |grep 'ODBC' to check if the ODBCSYSINI and the ODBCINI variables are set. If no results are returned - you need to add the variables to the environment variable pointing to the directory and the path to where the odbc.ini file is located as follows (in my case for RHEL 6

SQLGetPrivateProfileString failed with

浪子不回头ぞ 提交于 2019-12-01 17:19:19
Typing the command: odbcinst -q -s on RHEL 6, I get the following error message: odbcinst: SQLGetPrivateProfileString failed with . All my DSN's are also not showing up when I run: odbcinst -q -d Type the command: env |grep 'ODBC' to check if the ODBCSYSINI and the ODBCINI variables are set. If no results are returned - you need to add the variables to the environment variable pointing to the directory and the path to where the odbc.ini file is located as follows (in my case for RHEL 6 it is located at /etc - others may have it on /usr/local/etc ): Edit ~\.bash_profile and add the following

Installing R on RHEL 6

断了今生、忘了曾经 提交于 2019-12-01 02:18:24
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.x86_64.rpm.html However, this takes me into a long tree of missing dependencies. I downloaded and tried

在RHEL6/CentOS6/ScientificLinux6上安装GitLab 6.0.2

ぐ巨炮叔叔 提交于 2019-11-29 16:33:01
因开发需要,我需要安装一个Git服务器供公司内部做代码托管之用。当前最著名的Git服务器就是GitLab。Scientific Linux是重新编译的Red Hat Enterprise Linux,由费米国家加速器实验室、欧洲核研究组织以及世界各地的大学和实验室共同开发。 下面记录下我在Scientific Linux 6.4版上安装GitLab 6.0.2的过程。 1. 安装额外的包仓库 sudo wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 https://fedoraproject.org/static/0608B895.txt sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 sudo rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm sudo yum-config-manager --enable epel sudo rpm -ivh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm 2. 安装必需的软件包 su - yum -y