question_id
int64
88
79.9M
title_clean
stringlengths
14
150
body_clean
stringlengths
41
26.5k
full_text
stringlengths
63
26.6k
tags
stringlengths
4
105
score
int64
3
7.71k
view_count
int64
46
12.2M
answer_count
int64
0
79
link
stringlengths
56
125
60,095,537
vscode python debugger not working: connection refused
Whenever I try to debug python code, vscode gives an errror and informs me the connection of the debugger was refused. I attached the full stack trace at the bottom I'm on CentOS8 Linux. So far I've tried: SELinux is off firewall is disabled uninstall vscode remove /home/user/.vscode remove /home/user/.config/Code clea...
vscode python debugger not working: connection refused Whenever I try to debug python code, vscode gives an errror and informs me the connection of the debugger was refused. I attached the full stack trace at the bottom I'm on CentOS8 Linux. So far I've tried: SELinux is off firewall is disabled uninstall vscode remove...
linux, visual-studio-code, centos
8
11,439
2
https://stackoverflow.com/questions/60095537/vscode-python-debugger-not-working-connection-refused
57,498,755
Installing python36-devel on rhel7 failing
Trying to install python36-devel on RHEL7, ends up getting error Tried resolving the dependencies as stated in error, but no help. Also tried this How to install python3-devel on red hat 7 , which also ended up in same error yum install python36-devel Error: Loaded plugins: amazon-id, rhui-lb, search-disabled-repos Res...
Installing python36-devel on rhel7 failing Trying to install python36-devel on RHEL7, ends up getting error Tried resolving the dependencies as stated in error, but no help. Also tried this How to install python3-devel on red hat 7 , which also ended up in same error yum install python36-devel Error: Loaded plugins: am...
python-3.6, yum, rhel7
8
14,942
3
https://stackoverflow.com/questions/57498755/installing-python36-devel-on-rhel7-failing
57,144,602
Restart nodes in state down
after a power outage my nodes went to state down sinfo -a PARTITION AVAIL TIMELIMIT NODES STATE NODELIST partMain up infinite 4 down* node[001-004] part1* up infinite 3 down* node[002-004] part2 up infinite 1 down* node001 I do these commands /etc/init.d/slurm stop /etc/init.d/slurm start sinfo -a PARTITION AVAIL TIMEL...
Restart nodes in state down after a power outage my nodes went to state down sinfo -a PARTITION AVAIL TIMELIMIT NODES STATE NODELIST partMain up infinite 4 down* node[001-004] part1* up infinite 3 down* node[002-004] part2 up infinite 1 down* node001 I do these commands /etc/init.d/slurm stop /etc/init.d/slurm start si...
centos, slurm
8
27,244
2
https://stackoverflow.com/questions/57144602/restart-nodes-in-state-down
55,127,305
Kafka broker node goes down with "Too many open files" error
We have a 3 node Kafka cluster deployment, with a total of 35 topics with 50 partitions each. In total, we have configured the replication factor=2 . We are seeing a very strange problem that intermittently Kafka node stops responding with error: ERROR Error while accepting connection (kafka.network.Acceptor) java.io.I...
Kafka broker node goes down with "Too many open files" error We have a 3 node Kafka cluster deployment, with a total of 35 topics with 50 partitions each. In total, we have configured the replication factor=2 . We are seeing a very strange problem that intermittently Kafka node stops responding with error: ERROR Error ...
apache-kafka, centos, spring-kafka, ulimit, lsof
8
11,177
1
https://stackoverflow.com/questions/55127305/kafka-broker-node-goes-down-with-too-many-open-files-error
54,665,319
pipe value to sed and use it in the replace string
I am trying to programmatically generate a user and password, then hash the password and store it in the grub config file I currently have this # add a superuser account and password for the bootloader ## generate a secure password pw=$(openssl rand -base64 32) ## create the new user for the bootloader and set the pass...
pipe value to sed and use it in the replace string I am trying to programmatically generate a user and password, then hash the password and store it in the grub config file I currently have this # add a superuser account and password for the bootloader ## generate a secure password pw=$(openssl rand -base64 32) ## crea...
bash, awk, sed, centos
8
8,704
3
https://stackoverflow.com/questions/54665319/pipe-value-to-sed-and-use-it-in-the-replace-string
51,716,288
Fedora 28 / GLIBC 2.27 libm.so.6 logf() and powf() c++
As I am sure other Fedora 28 users will know, the OS's glibc was recently updated to glibc 2.27. Amongst many other things, 2.27 has added new implementations of logf() and powf(). This has caused my application to fail to run on distributions with an older glibc (Debian, for example). When the application is invoked o...
Fedora 28 / GLIBC 2.27 libm.so.6 logf() and powf() c++ As I am sure other Fedora 28 users will know, the OS's glibc was recently updated to glibc 2.27. Amongst many other things, 2.27 has added new implementations of logf() and powf(). This has caused my application to fail to run on distributions with an older glibc (...
linux, c++11, debian, fedora, glibc
8
2,608
1
https://stackoverflow.com/questions/51716288/fedora-28-glibc-2-27-libm-so-6-logf-and-powf-c
47,688,474
Unable to use mysqldb in Python2 virtualenv on Fedora 27
My Python app that works on Fedora 26, does not work on Fedora 27. I get this error: ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory I have created a new virtualenv after upgrading to Fedora 26. mariadb-devel is installed.
Unable to use mysqldb in Python2 virtualenv on Fedora 27 My Python app that works on Fedora 26, does not work on Fedora 27. I get this error: ImportError: libmysqlclient.so.18: cannot open shared object file: No such file or directory I have created a new virtualenv after upgrading to Fedora 26. mariadb-devel is instal...
python, fedora
8
4,490
3
https://stackoverflow.com/questions/47688474/unable-to-use-mysqldb-in-python2-virtualenv-on-fedora-27
47,111,844
Run dotnet core application on Raspberry Pi3 with CentOS UserLand
I am trying to run my AspNetCore 2 application on a Raspberry Pi3 Model B that runs CentOS arm edition (CentOS-Userland-7-armv7hl-Minimal-1708-RaspberryPi3). I installed both libunwind and libicu-devel with yum install , but when trying to run my application, I always get the following error: [root@centos-rpi3 ~]# /opt...
Run dotnet core application on Raspberry Pi3 with CentOS UserLand I am trying to run my AspNetCore 2 application on a Raspberry Pi3 Model B that runs CentOS arm edition (CentOS-Userland-7-armv7hl-Minimal-1708-RaspberryPi3). I installed both libunwind and libicu-devel with yum install , but when trying to run my applica...
centos, .net-core, raspberry-pi3
8
4,757
5
https://stackoverflow.com/questions/47111844/run-dotnet-core-application-on-raspberry-pi3-with-centos-userland
46,419,222
Execute linux command on Centos using dotnet core
I'm running a .NET Core Console Application on CentOS box. The below code is executing for normal command like uptime , but not executing for lz4 -dc --no-sparse vnp.tar.lz4 | tar xf - Logs.pdf : try { var connectionInfo = new ConnectionInfo("server", "username", new PasswordAuthenticationMethod("username", "pwd")); us...
Execute linux command on Centos using dotnet core I'm running a .NET Core Console Application on CentOS box. The below code is executing for normal command like uptime , but not executing for lz4 -dc --no-sparse vnp.tar.lz4 | tar xf - Logs.pdf : try { var connectionInfo = new ConnectionInfo("server", "username", new Pa...
centos, .net-core, tar, lz4
8
14,560
1
https://stackoverflow.com/questions/46419222/execute-linux-command-on-centos-using-dotnet-core
46,252,360
error with yum update
I'm trying to do yum update on my centos 7 server but i'm getting the following error: Error: Multilib version problems found. This often means that the root cause is something else and multilib version checking is just pointing out that there is a problem. Eg.: 1. You have an upgrade for grub2-tools which is missing s...
error with yum update I'm trying to do yum update on my centos 7 server but i'm getting the following error: Error: Multilib version problems found. This often means that the root cause is something else and multilib version checking is just pointing out that there is a problem. Eg.: 1. You have an upgrade for grub2-to...
centos, centos7
8
3,108
2
https://stackoverflow.com/questions/46252360/error-with-yum-update
45,245,923
mingw/include/c++/cstdlib: stdlib.h: No such file or directory
I am trying to cross-compile OpenImageIO for 64-bit Windows on Fedora 26 using MinGW. After using yum to retrieve the mingw versions of the dependencies, I ran mingw64-cmake followed by make . However, right away I receive a compile error about stdlib.h not being found. [ 0%] Built target CopyFiles [ 0%] Building CXX o...
mingw/include/c++/cstdlib: stdlib.h: No such file or directory I am trying to cross-compile OpenImageIO for 64-bit Windows on Fedora 26 using MinGW. After using yum to retrieve the mingw versions of the dependencies, I ran mingw64-cmake followed by make . However, right away I receive a compile error about stdlib.h not...
c++, gcc, cmake, mingw, fedora
8
13,551
2
https://stackoverflow.com/questions/45245923/mingw-include-c-cstdlib-stdlib-h-no-such-file-or-directory
44,139,279
docker mounting volume with permission denied
I am trying to setup a docker container that mounts a volume from the host. No matter what I try, it always says permission denied when I remote into the docker container. This is some of the commands I have tried adding to my docker file: RUN su -c "setenforce 0" and chcon -Rt svirt_sandbox_file_t /app Still I get the...
docker mounting volume with permission denied I am trying to setup a docker container that mounts a volume from the host. No matter what I try, it always says permission denied when I remote into the docker container. This is some of the commands I have tried adding to my docker file: RUN su -c "setenforce 0" and chcon...
linux, docker, permissions, centos, docker-compose
8
32,137
1
https://stackoverflow.com/questions/44139279/docker-mounting-volume-with-permission-denied
43,001,916
git repository gives 403 error while connecting from jenkins in linux
Hi I just want to configure my project from github to jenkins to generate build. I'm getting following error Failed to connect to repository : Command "/usr/bin/git ls-remote -h [URL] HEAD" returned status code 128: stdout: stderr: error: The requested URL returned error: 403 Forbidden while accessing [URL] fatal: HTTP...
git repository gives 403 error while connecting from jenkins in linux Hi I just want to configure my project from github to jenkins to generate build. I'm getting following error Failed to connect to repository : Command "/usr/bin/git ls-remote -h [URL] HEAD" returned status code 128: stdout: stderr: error: The request...
git, github, jenkins, build, centos
8
12,139
3
https://stackoverflow.com/questions/43001916/git-repository-gives-403-error-while-connecting-from-jenkins-in-linux
42,181,669
Postfix - Recipient address rejected: User unknown in local recipient table
I am learning (trying) to build my own mail server in Centos 7 VM. I have come to a problem when my incoming mails are getting rejected. Using POSTFIX I am trying to send emails from gmail to my mail but it is stucked by this error. Below I will provide as much information as I can. Btw I dont have any DNS record so I ...
Postfix - Recipient address rejected: User unknown in local recipient table I am learning (trying) to build my own mail server in Centos 7 VM. I have come to a problem when my incoming mails are getting rejected. Using POSTFIX I am trying to send emails from gmail to my mail but it is stucked by this error. Below I wil...
email, centos, postfix-mta
8
34,890
2
https://stackoverflow.com/questions/42181669/postfix-recipient-address-rejected-user-unknown-in-local-recipient-table
40,297,927
To use Certbot, packages from the EPEL repository need to be installed
I use certbot-auto for deploying Let's Encrypt SSL certificates, and I renew certificate with crontab -e like this: * 01 * * 1 /home/myname/certbot-auto --quiet It has an error message like the below: Bootstrapping dependencies for RedHat-based OSes... yum is /usr/bin/yum To use Certbot, packages from the EPEL reposito...
To use Certbot, packages from the EPEL repository need to be installed I use certbot-auto for deploying Let's Encrypt SSL certificates, and I renew certificate with crontab -e like this: * 01 * * 1 /home/myname/certbot-auto --quiet It has an error message like the below: Bootstrapping dependencies for RedHat-based OSes...
ssl, cron, centos, lets-encrypt, certbot
8
5,864
1
https://stackoverflow.com/questions/40297927/to-use-certbot-packages-from-the-epel-repository-need-to-be-installed
39,847,912
Segmentation fault after installing the glibc 2.7
I tried to update my glibc library to 2.7 version. My compile process are showing here: ../configure --disable-debug --disable-dependency-tracking CFLAGS=\ "-U_FORTIFY_SOURCE -O2 -fno-stack-protector" --disable-silent-rules\ --prefix=/disk2/hyf/lib/glib-2.7 make & make install Due to the limitation of privilege, I had ...
Segmentation fault after installing the glibc 2.7 I tried to update my glibc library to 2.7 version. My compile process are showing here: ../configure --disable-debug --disable-dependency-tracking CFLAGS=\ "-U_FORTIFY_SOURCE -O2 -fno-stack-protector" --disable-silent-rules\ --prefix=/disk2/hyf/lib/glib-2.7 make & make ...
linux, gcc, centos, system, glibc
8
16,841
1
https://stackoverflow.com/questions/39847912/segmentation-fault-after-installing-the-glibc-2-7
37,769,985
How to install older R version on CentOS
The installed version is 3.3.0. I would like to install version 2.X but I don't know how.
How to install older R version on CentOS The installed version is 3.3.0. I would like to install version 2.X but I don't know how.
r, centos
8
15,256
3
https://stackoverflow.com/questions/37769985/how-to-install-older-r-version-on-centos
37,500,158
Operation not permitted systemctl with docker + systemctl
Dockerfile FROM centos:7 ENV container docker VOLUME ["/sys/fs/cgroup"] RUN yum -y update RUN yum install -y httpd RUN systemctl start httpd.service ADD . /code WORKDIR /code docker-compose.yml version: '2' services: web: privileged: true build: . ports: - "80:80" volumes: - .:/code command docker-compose build error :...
Operation not permitted systemctl with docker + systemctl Dockerfile FROM centos:7 ENV container docker VOLUME ["/sys/fs/cgroup"] RUN yum -y update RUN yum install -y httpd RUN systemctl start httpd.service ADD . /code WORKDIR /code docker-compose.yml version: '2' services: web: privileged: true build: . ports: - "80:8...
docker, centos, systemctl
8
20,887
2
https://stackoverflow.com/questions/37500158/operation-not-permitted-systemctl-with-docker-systemctl
37,207,500
Python ldap3 LDAPSocketOpenError unable to send message, socket is not open
I am coding in Python, ldap3 trying to create a user in OpenLDAP on CentOS. My local development machine is running Windows 8 64bit. Below is my code. from ldap3 import Server, Connection, ALL # define the server s = Server('ldap://ldap.abcd.com:389', get_info=ALL) # define the connection c = Connection(s, user='cn=Man...
Python ldap3 LDAPSocketOpenError unable to send message, socket is not open I am coding in Python, ldap3 trying to create a user in OpenLDAP on CentOS. My local development machine is running Windows 8 64bit. Below is my code. from ldap3 import Server, Connection, ALL # define the server s = Server('ldap://ldap.abcd.co...
python, windows, centos, ldap, openldap
8
20,599
1
https://stackoverflow.com/questions/37207500/python-ldap3-ldapsocketopenerror-unable-to-send-message-socket-is-not-open
36,803,908
trouble installing packages in CentOS: internet routines cannot be loaded
I am having some trouble installing packages in R on CentOS after updating R. Here is an example of what happens when I try to install a package in R: > install.packages("ggplot2") Installing package into '/home/albers/R/x86_64-pc-linux-gnu-library/3.2' (as 'lib' is unspecified) --- Please select a CRAN mirror for use ...
trouble installing packages in CentOS: internet routines cannot be loaded I am having some trouble installing packages in R on CentOS after updating R. Here is an example of what happens when I try to install a package in R: > install.packages("ggplot2") Installing package into '/home/albers/R/x86_64-pc-linux-gnu-libra...
r, linux, curl, centos, install.packages
8
5,683
2
https://stackoverflow.com/questions/36803908/trouble-installing-packages-in-centos-internet-routines-cannot-be-loaded
35,385,617
Linker errors with libmsodbcsql-13.0.so.0.0 preventing pyODBC to MS SQL connection. CentOS 7
I am trying to connect from a python app with pyodbc to a MS SQL server. I have pyodbc and unixODBC installed and I tried to install the MS driver for linux. I think the issue is that the MS driver has missing dependencies but as near as I can tell the dependencies are installed. Because the Microsoft driver was not in...
Linker errors with libmsodbcsql-13.0.so.0.0 preventing pyODBC to MS SQL connection. CentOS 7 I am trying to connect from a python app with pyodbc to a MS SQL server. I have pyodbc and unixODBC installed and I tried to install the MS driver for linux. I think the issue is that the MS driver has missing dependencies but ...
python, sql, linux, centos, odbc
8
668
1
https://stackoverflow.com/questions/35385617/linker-errors-with-libmsodbcsql-13-0-so-0-0-preventing-pyodbc-to-ms-sql-connecti
33,645,747
Getting Error /usr/bin/env: node : Permission Denied
I have done my ODOO v9 installation on my server(Centos). Everything has been installed successfully . Login page is also working but after login I am getting a page with following error /usr/bin/env : node : Permission Denied I tried to change the permission but my issue is not solved. Is anyone know what is this erro...
Getting Error /usr/bin/env: node : Permission Denied I have done my ODOO v9 installation on my server(Centos). Everything has been installed successfully . Login page is also working but after login I am getting a page with following error /usr/bin/env : node : Permission Denied I tried to change the permission but my ...
python, linux, node.js, centos, odoo
8
25,556
2
https://stackoverflow.com/questions/33645747/getting-error-usr-bin-env-node-permission-denied
33,200,717
Vagrant up and VM doesn't work Fedora 22
I have a problem, when I want use vagrant up I getting error The provider 'virtualbox' that was requested to back the machine 'default' is reporting that it isn't usable on this system. The reason is shown below: VirtualBox is complaining that the kernel module is not loaded. Please run VBoxManage --version or open the...
Vagrant up and VM doesn't work Fedora 22 I have a problem, when I want use vagrant up I getting error The provider 'virtualbox' that was requested to back the machine 'default' is reporting that it isn't usable on this system. The reason is shown below: VirtualBox is complaining that the kernel module is not loaded. Pl...
kernel, vagrant, virtualbox, fedora
8
7,809
5
https://stackoverflow.com/questions/33200717/vagrant-up-and-vm-doesnt-work-fedora-22
30,584,393
Virtual machine "Cloudera quick start" not booting
I have recently download "QuickStart VM" on [URL] (precisely, the version of virtualbox) This virtual machine use centOS (and my computer is a macbook air) I can not fully start this virtual machine(and I do not know why) I have attached a screenshot of the most advanced state of booting
Virtual machine "Cloudera quick start" not booting I have recently download "QuickStart VM" on [URL] (precisely, the version of virtualbox) This virtual machine use centOS (and my computer is a macbook air) I can not fully start this virtual machine(and I do not know why) I have attached a screenshot of the most advanc...
centos, virtualbox, cloudera, cloudera-quickstart-vm
8
6,710
4
https://stackoverflow.com/questions/30584393/virtual-machine-cloudera-quick-start-not-booting
30,394,563
Can't install git2r nor devtools R packages on centOS 7.0 64 bit
I am failing with the R packages installation under centOS. I am trying to install the devtools package in order to install the rstudio/DT package with the install_github function, but when I try to intall the devtools package I get the following error that git2r package couldn't been installed. Can someone maybe knows...
Can't install git2r nor devtools R packages on centOS 7.0 64 bit I am failing with the R packages installation under centOS. I am trying to install the devtools package in order to install the rstudio/DT package with the install_github function, but when I try to intall the devtools package I get the following error th...
r, centos, centos7, devtools
8
7,739
2
https://stackoverflow.com/questions/30394563/cant-install-git2r-nor-devtools-r-packages-on-centos-7-0-64-bit
30,201,276
How to tell Docker to use dm/LVM backend for volumes instead of vfs
I recently heard (from a RedHat guy) that "direct-LVM"(devicemapper) is the recommended storage-backend for production setups, so I wanted to try that out on a CentOS 7 VM. (where loopback-LVM seems to be the default). So I created a separate data-disk and VG with 2 LVs for data and metadata, passed them into the docke...
How to tell Docker to use dm/LVM backend for volumes instead of vfs I recently heard (from a RedHat guy) that "direct-LVM"(devicemapper) is the recommended storage-backend for production setups, so I wanted to try that out on a CentOS 7 VM. (where loopback-LVM seems to be the default). So I created a separate data-disk...
centos, docker, redhat, lvm, device-mapper
8
5,287
1
https://stackoverflow.com/questions/30201276/how-to-tell-docker-to-use-dm-lvm-backend-for-volumes-instead-of-vfs
28,378,139
How to upgrade Tomcat on linux
My current running Tomcat is as following Tomcat Version : Apache Tomcat/5.5.36 Servlet Specification Version : 2.4 JSP version : 2.0 I need to change it to Tomcat Version : Apache Tomcat/8.0.14 Servlet Specification Version : 3.1 JSP version : 2.3 I downloaded Tomcat version 8 and I have following, how can I run Tomca...
How to upgrade Tomcat on linux My current running Tomcat is as following Tomcat Version : Apache Tomcat/5.5.36 Servlet Specification Version : 2.4 JSP version : 2.0 I need to change it to Tomcat Version : Apache Tomcat/8.0.14 Servlet Specification Version : 3.1 JSP version : 2.3 I downloaded Tomcat version 8 and I have...
java, linux, tomcat, centos
8
29,017
1
https://stackoverflow.com/questions/28378139/how-to-upgrade-tomcat-on-linux
27,366,774
Chef::Exceptions::ChecksumMismatch when installing nginx-1.7.8 from source
I get the following error when running vagrant up --provision to set up my development environment with vagrant... ==> default: [2014-12-08T20:33:51+00:00] ERROR: remote_file[[URL] (nginx::source line 58) had an error: Chef::Exceptions::ChecksumMismatch: Checksum on resource (0510af) does not match checksum on content ...
Chef::Exceptions::ChecksumMismatch when installing nginx-1.7.8 from source I get the following error when running vagrant up --provision to set up my development environment with vagrant... ==> default: [2014-12-08T20:33:51+00:00] ERROR: remote_file[[URL] (nginx::source line 58) had an error: Chef::Exceptions::Checksum...
nginx, centos, vagrant, chef-infra
8
2,239
1
https://stackoverflow.com/questions/27366774/chefexceptionschecksummismatch-when-installing-nginx-1-7-8-from-source
26,888,864
How to change shortcut for switching between work-space in fedora 20?
I am using a text editor which uses shortcut ctrl+alt+arrowup/arrowdown which is default key for switching workspaces in fedora 20. So i need to change the shortcut key to make it work in text editor. I changed the shortcut from Settings>Keyboard>Shortcutsbut still ctrl+alt+arrowup/down switches workspace. So how do i ...
How to change shortcut for switching between work-space in fedora 20? I am using a text editor which uses shortcut ctrl+alt+arrowup/arrowdown which is default key for switching workspaces in fedora 20. So i need to change the shortcut key to make it work in text editor. I changed the shortcut from Settings>Keyboard>Sho...
fedora, gnome, gnome-3, fedora20
8
6,802
1
https://stackoverflow.com/questions/26888864/how-to-change-shortcut-for-switching-between-work-space-in-fedora-20
26,791,240
How to get percentage of processor use with bash?
I wonder how do I get the percentage of my processor usage from 0% to 100%? to know how many percent'm using my processor preferably in bash or other methods provided that percentage. I have this script that I found on google however it is very much imprecisso I tried to make more improvements could not, does anyone kn...
How to get percentage of processor use with bash? I wonder how do I get the percentage of my processor usage from 0% to 100%? to know how many percent'm using my processor preferably in bash or other methods provided that percentage. I have this script that I found on google however it is very much imprecisso I tried t...
linux, bash, shell, awk, centos
8
17,368
5
https://stackoverflow.com/questions/26791240/how-to-get-percentage-of-processor-use-with-bash
26,311,796
Set up Vagrant box exactly like production server
I'm trying to learn how to use Vagrant with the idea of setting up a development environment that should be exactly (if possible) to an already existing production server. The question here is: what is the easiest way to accomplish that? I'm a developer and I have full access to the production server, but it's not mana...
Set up Vagrant box exactly like production server I'm trying to learn how to use Vagrant with the idea of setting up a development environment that should be exactly (if possible) to an already existing production server. The question here is: what is the easiest way to accomplish that? I'm a developer and I have full ...
linux, centos, vagrant, lamp, dedicated-server
8
4,187
3
https://stackoverflow.com/questions/26311796/set-up-vagrant-box-exactly-like-production-server
26,006,370
g++ does not include files it says it includes for C++11?
Short version When I compile even a simple code using a feature of the C++11 standard (the std::stod function), GCC 4.9.1 fails with the following error: example.cpp: In function 'int main()': example.cpp:10:18: error: 'stod' is not a member of 'std' double earth = std::stod (orbits,&sz); ^ example.cpp:11:17: error: 's...
g++ does not include files it says it includes for C++11? Short version When I compile even a simple code using a feature of the C++11 standard (the std::stod function), GCC 4.9.1 fails with the following error: example.cpp: In function 'int main()': example.cpp:10:18: error: 'stod' is not a member of 'std' double eart...
c++, gcc, c++11, centos, centos6.5
8
3,406
2
https://stackoverflow.com/questions/26006370/g-does-not-include-files-it-says-it-includes-for-c11
24,184,568
PHP sessions not being saved in memcache
Running an application using php 5.4 on AWS using the Amazon Linux. PHP version is PHP 5.4.28. memcache lib installed from the AWS repo is php54-pecl-memcache-3.0.8-1.11.amzn1.x86_64 I have verified that php is using /etc/php.ini: [root@ip-xx.xx.xx.xx]# php -i | grep Config Configuration File (php.ini) Path => /etc Loa...
PHP sessions not being saved in memcache Running an application using php 5.4 on AWS using the Amazon Linux. PHP version is PHP 5.4.28. memcache lib installed from the AWS repo is php54-pecl-memcache-3.0.8-1.11.amzn1.x86_64 I have verified that php is using /etc/php.ini: [root@ip-xx.xx.xx.xx]# php -i | grep Config Conf...
php, session, centos, memcached, libmemcache
8
16,571
2
https://stackoverflow.com/questions/24184568/php-sessions-not-being-saved-in-memcache
22,991,584
FreeTDS - Unable to connect: Adaptive Server is unavailable or does not exist
CENTOS 6.5 x86_64 WHM 11.42.1 unixODBC 2.2.14 freetds v0.91 I'm trying to connect to remote MSSQL server without success - also tried connecting with different tds versions (4.2, 7.0, 7.1, 8.0) but all give the same result. Using the same servername, port, username and password, I'm able to connect via my desktop using...
FreeTDS - Unable to connect: Adaptive Server is unavailable or does not exist CENTOS 6.5 x86_64 WHM 11.42.1 unixODBC 2.2.14 freetds v0.91 I'm trying to connect to remote MSSQL server without success - also tried connecting with different tds versions (4.2, 7.0, 7.1, 8.0) but all give the same result. Using the same ser...
centos, freetds, unixodbc
8
40,481
4
https://stackoverflow.com/questions/22991584/freetds-unable-to-connect-adaptive-server-is-unavailable-or-does-not-exist
22,973,641
php libreoffice shell_exec not working
I am trying to convert .docx file to .html using php shell_exec in CentOS 6.5 My php code: $command = "libreoffice --headless -convert-to html resume.docx 2>&1"; $result = shell_exec($command); echo $result; When I run the index.php at [URL] it gives me: javaldx: Could not find a Java Runtime Environment! Warning: fail...
php libreoffice shell_exec not working I am trying to convert .docx file to .html using php shell_exec in CentOS 6.5 My php code: $command = "libreoffice --headless -convert-to html resume.docx 2>&1"; $result = shell_exec($command); echo $result; When I run the index.php at [URL] it gives me: javaldx: Could not find a ...
php, linux, centos, libreoffice, shell-exec
8
12,514
5
https://stackoverflow.com/questions/22973641/php-libreoffice-shell-exec-not-working
22,211,356
Scanning an entire ip range / subnet for port 80 open?
I need a fast and efficient way to scan an ip range for port 80 open. So for example if I wanted to scan OVH IP range "46.105.0.0/16" I need it to scan every ip in that range and output a list of every ip with port 80 open. 46.105.0.51 46.105.0.72 46.105.0.91 46.105.0.7 46.105.0.15 I need to scan multiple subnets and I...
Scanning an entire ip range / subnet for port 80 open? I need a fast and efficient way to scan an ip range for port 80 open. So for example if I wanted to scan OVH IP range "46.105.0.0/16" I need it to scan every ip in that range and output a list of every ip with port 80 open. 46.105.0.51 46.105.0.72 46.105.0.91 46.10...
centos, port
8
21,759
3
https://stackoverflow.com/questions/22211356/scanning-an-entire-ip-range-subnet-for-port-80-open
21,795,698
FindBugs can't locate org.apache.bcel.classfile.ClassFormatException
I installed the Fedora 20 findbugs RPMs, and set up my Ant build.xml file thusly: <property name="findbugs.home" location="/usr/share/findbugs"/> <target name="findbugs" description="static bytecode analysis"> <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"> </taskdef> <findbugs home="${fi...
FindBugs can't locate org.apache.bcel.classfile.ClassFormatException I installed the Fedora 20 findbugs RPMs, and set up my Ant build.xml file thusly: <property name="findbugs.home" location="/usr/share/findbugs"/> <target name="findbugs" description="static bytecode analysis"> <taskdef name="findbugs" classname="edu.u...
java, linux, ant, fedora, findbugs
8
3,699
6
https://stackoverflow.com/questions/21795698/findbugs-cant-locate-org-apache-bcel-classfile-classformatexception
21,433,864
Using strace fixes hung memory issue
I have a multithreaded process running on RHEL6.x (64bit). I find that the process hangs and some threads (of the same process) crash most of the time when I try to bring up the process. Some threads wait for shared memory between the threads to get created (I can see that all of it does not get created). But when I us...
Using strace fixes hung memory issue I have a multithreaded process running on RHEL6.x (64bit). I find that the process hangs and some threads (of the same process) crash most of the time when I try to bring up the process. Some threads wait for shared memory between the threads to get created (I can see that all of it...
unix, process, kernel, rhel, strace
8
741
1
https://stackoverflow.com/questions/21433864/using-strace-fixes-hung-memory-issue
19,586,904
how to install filezilla on CentOS?
I downloaded FILEZILLA from [URL] how to install this on CentOs,please suggest me.
how to install filezilla on CentOS? I downloaded FILEZILLA from [URL] how to install this on CentOs,please suggest me.
centos, centos6
8
58,065
3
https://stackoverflow.com/questions/19586904/how-to-install-filezilla-on-centos
18,704,247
Configure Jenkins for different user.home
I am running Jenkins version 1.527 (I know there is a newer version but it is broken, I can't use the user interface in 1.528 and haven't gotten a chance to upgrade to 1.529) I am trying to change the user.home system property in Jenkins by doing this in my startup script: export HOME=/new-home-dir However, the environ...
Configure Jenkins for different user.home I am running Jenkins version 1.527 (I know there is a newer version but it is broken, I can't use the user interface in 1.528 and haven't gotten a chance to upgrade to 1.529) I am trying to change the user.home system property in Jenkins by doing this in my startup script: expo...
java, linux, jenkins, maven-3, rhel
8
16,637
5
https://stackoverflow.com/questions/18704247/configure-jenkins-for-different-user-home
18,172,319
Windows 8, Fedora 19 OS Hyper-V Virtual Machine
I installed Fedora 19 in windows 8 hyper-v and its working fine but there is one small problem with the display setting, as fedora 19 display setting not providing 1366x768, but i need to set the display to 1366x768 to view full screen, so any suggestions??
Windows 8, Fedora 19 OS Hyper-V Virtual Machine I installed Fedora 19 in windows 8 hyper-v and its working fine but there is one small problem with the display setting, as fedora 19 display setting not providing 1366x768, but i need to set the display to 1366x768 to view full screen, so any suggestions??
windows-8, fedora, hyper-v
8
10,291
3
https://stackoverflow.com/questions/18172319/windows-8-fedora-19-os-hyper-v-virtual-machine
17,773,963
Vagrant synced folder permission issue with apache
I'm running a Centos6.4 box. Running vagrant up without the synced folder config in Vagrant file is fine. I can access on my host machine via [URL] and it displays the Apache page. I could create index.html in /var/www/html folder and it displays fine too. However after adding the line below in the Vagrant file, visiti...
Vagrant synced folder permission issue with apache I'm running a Centos6.4 box. Running vagrant up without the synced folder config in Vagrant file is fine. I can access on my host machine via [URL] and it displays the Apache page. I could create index.html in /var/www/html folder and it displays fine too. However afte...
apache, permissions, centos, vagrant
8
13,917
1
https://stackoverflow.com/questions/17773963/vagrant-synced-folder-permission-issue-with-apache
17,420,581
How can i make apache to include all files from folder
I know i can do this Include "/usr/local/apache/conf/php.conf" How can i make apache to load all files in some dir like Include /usr/mydir/*
How can i make apache to include all files from folder I know i can do this Include "/usr/local/apache/conf/php.conf" How can i make apache to load all files in some dir like Include /usr/mydir/*
linux, apache, centos
8
6,153
1
https://stackoverflow.com/questions/17420581/how-can-i-make-apache-to-include-all-files-from-folder
17,403,621
changing the phpmyadmin default url
I am wondering how to change the default URL for phpMyAdmin. I am using the latest version (4.0.4.1) on my CentOS 6 VPS. I am wanting to change it from /phpmyadmin to something more secure. I am unsure how to do this or where to even find my apache.conf file if there is one? Thanks!
changing the phpmyadmin default url I am wondering how to change the default URL for phpMyAdmin. I am using the latest version (4.0.4.1) on my CentOS 6 VPS. I am wanting to change it from /phpmyadmin to something more secure. I am unsure how to do this or where to even find my apache.conf file if there is one? Thanks!
linux, apache, phpmyadmin, centos
8
16,703
3
https://stackoverflow.com/questions/17403621/changing-the-phpmyadmin-default-url
17,134,015
Where does Apache install httpd.conf by default?
I thought Apache's httpd.conf is typically located at /etc/httpd/conf/httpd.conf . But for my installation as described below on Centos 6.4, it is located at /usr/local/apache2/conf/httpd.conf . On top of that, DocumentRoot is set to /usr/local/apache2/htdocs instead of the traditional /var/www/html . Where is the most...
Where does Apache install httpd.conf by default? I thought Apache's httpd.conf is typically located at /etc/httpd/conf/httpd.conf . But for my installation as described below on Centos 6.4, it is located at /usr/local/apache2/conf/httpd.conf . On top of that, DocumentRoot is set to /usr/local/apache2/htdocs instead of ...
linux, apache, centos, httpd.conf
8
39,740
2
https://stackoverflow.com/questions/17134015/where-does-apache-install-httpd-conf-by-default
15,146,372
Linux stuck in CPU soft lockup?
My system is a CentOS 6.3 (running Kernel version 2.6.32-279.el6.x86_64 ). I have a loadable kernel module which is a driver that manages a PCIe card. If I manually insert the driver using insmod while the OS is up and running, the driver loads successfully and is operational. However, if I try to install the driver us...
Linux stuck in CPU soft lockup? My system is a CentOS 6.3 (running Kernel version 2.6.32-279.el6.x86_64 ). I have a loadable kernel module which is a driver that manages a PCIe card. If I manually insert the driver using insmod while the OS is up and running, the driver loads successfully and is operational. However, i...
linux, linux-kernel, centos, driver, kernel-module
8
26,432
1
https://stackoverflow.com/questions/15146372/linux-stuck-in-cpu-soft-lockup
14,888,062
How to delete FTP user in ssh?
I am accessing dedicated server (centOS) through ssh. I have created few FTP accounts to give them temporary access to change files. Now I don't need it and I want to delete FTP user that I have created before through SSH. I don't know the commands to delete FTP users. Please help me.
How to delete FTP user in ssh? I am accessing dedicated server (centOS) through ssh. I have created few FTP accounts to give them temporary access to change files. Now I don't need it and I want to delete FTP user that I have created before through SSH. I don't know the commands to delete FTP users. Please help me.
ssh, ftp, centos
8
27,338
1
https://stackoverflow.com/questions/14888062/how-to-delete-ftp-user-in-ssh
13,969,513
Cannot --enable-pcregrep-libbz2 because bzlib.h was not found
I am trying to install pcre 8.32. When I tried to install following this tutorial I get this error: **Cannot --enable-pcregrep-libbz2 because bzlib.h was not found**. Then I tried: sudo yum install libbz2-dev and now it is saying No package libbz2-dev available.Error: Nothing to do I am totally confused. What shold I d...
Cannot --enable-pcregrep-libbz2 because bzlib.h was not found I am trying to install pcre 8.32. When I tried to install following this tutorial I get this error: **Cannot --enable-pcregrep-libbz2 because bzlib.h was not found**. Then I tried: sudo yum install libbz2-dev and now it is saying No package libbz2-dev availa...
linux, fedora, pcre, yum
8
16,879
1
https://stackoverflow.com/questions/13969513/cannot-enable-pcregrep-libbz2-because-bzlib-h-was-not-found
13,053,272
An error occured while installing charlock_holmes libicu
I'm trying to install Gitlab following this install script , but am running into an issue where the charlock_holmes gem fails to install. I'm not familiar with Ruby. My charlock_holmes-0.6.8 gem_make.out file is below. /home/gitlabuser/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb checking for main() in -licui18n... ...
An error occured while installing charlock_holmes libicu I'm trying to install Gitlab following this install script , but am running into an issue where the charlock_holmes gem fails to install. I'm not familiar with Ruby. My charlock_holmes-0.6.8 gem_make.out file is below. /home/gitlabuser/.rvm/rubies/ruby-1.9.2-p290...
redhat, rhel, gitlab, bundle-install
8
7,743
5
https://stackoverflow.com/questions/13053272/an-error-occured-while-installing-charlock-holmes-libicu
12,988,993
How to list, add and remove repositories with yum python API?
How can I search for installed repostiries, add and delete them with yum python API (under fedora 17). I've searched tons of websites and I have found how to manage packages (like here: [URL] ), but I have not found anywhere how to handle repositories). I want for example to be able to get with python yum API the same ...
How to list, add and remove repositories with yum python API? How can I search for installed repostiries, add and delete them with yum python API (under fedora 17). I've searched tons of websites and I have found how to manage packages (like here: [URL] ), but I have not found anywhere how to handle repositories). I wa...
python, repository, package, fedora, yum
8
29,471
1
https://stackoverflow.com/questions/12988993/how-to-list-add-and-remove-repositories-with-yum-python-api
12,710,544
Python multiprocessing doesn't use all cores on RHEL6
I have been trying to use the python multiprocessing package to speed up some physics simulations I'm doing by taking advantage of the multiple cores of my computer. I noticed that when I run my simulation at most 3 of the 12 cores are used. In fact, when I start the simulation it initially uses 3 of the cores, and the...
Python multiprocessing doesn't use all cores on RHEL6 I have been trying to use the python multiprocessing package to speed up some physics simulations I'm doing by taking advantage of the multiple cores of my computer. I noticed that when I run my simulation at most 3 of the 12 cores are used. In fact, when I start th...
python, multiprocessing, multicore, python-2.6, rhel
8
1,103
1
https://stackoverflow.com/questions/12710544/python-multiprocessing-doesnt-use-all-cores-on-rhel6
12,599,077
Setting up jenkins on centos: problems with ssh keys and git
Went through a lot of questions, but nothing seems to be solving my issue. Or to be more precise I am not sure if I am doing the whole thing correctly. So here it is: Have installed centos 6.3 OS. Then I followed the following guide to install jenkins: [URL] Jenkins works fine. Now I am trying to set up a simple build ...
Setting up jenkins on centos: problems with ssh keys and git Went through a lot of questions, but nothing seems to be solving my issue. Or to be more precise I am not sure if I am doing the whole thing correctly. So here it is: Have installed centos 6.3 OS. Then I followed the following guide to install jenkins: [URL] ...
git, ssh, jenkins, centos, ssh-keys
8
12,470
8
https://stackoverflow.com/questions/12599077/setting-up-jenkins-on-centos-problems-with-ssh-keys-and-git
12,470,335
How do I install Microsoft SQL Server for linux (fedora)?
How can I install Microsoft SQL Server for linux (fedora) ? I read about Microsoft(r) SQL Server(r) ODBC Driver 1.0 for Linux but haven't understood what is it. I wanted to connect to sql server for the java application operating on linux.
How do I install Microsoft SQL Server for linux (fedora)? How can I install Microsoft SQL Server for linux (fedora) ? I read about Microsoft(r) SQL Server(r) ODBC Driver 1.0 for Linux but haven't understood what is it. I wanted to connect to sql server for the java application operating on linux.
java, sql-server, linux, fedora
8
37,278
4
https://stackoverflow.com/questions/12470335/how-do-i-install-microsoft-sql-server-for-linux-fedora
11,526,036
Returning application/json content-type for .json files on RHEL/Apache
OS is specifically RHEL6 running Apache2. So in my Apache configuration, I have: LoadModule mime_module modules/mod_mime.so And in /etc/mime.types , I have the following: application/json json Yet when requesting a file with the .json extension (and containing valid JSON), the content-type is set to text/html . Any ide...
Returning application/json content-type for .json files on RHEL/Apache OS is specifically RHEL6 running Apache2. So in my Apache configuration, I have: LoadModule mime_module modules/mod_mime.so And in /etc/mime.types , I have the following: application/json json Yet when requesting a file with the .json extension (and...
json, apache, mime, rhel
8
22,051
1
https://stackoverflow.com/questions/11526036/returning-application-json-content-type-for-json-files-on-rhel-apache
10,751,304
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver
Fedora using right now (package is installed Package rxtx-2.2-0.5.20100211.fc15.i686 already installed and latest version ). I have used/tried: # locate librxtxSerial /home/sun/Downloads/rxtx-2.1-7-bins-r2/Linux/i686-unknown-linux-gnu/librxtxSerial.so /home/sun/Downloads/rxtx-2.1-7-bins-r2/Linux/ia64-unkown-linux-gnu/l...
java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path thrown while loading gnu.io.RXTXCommDriver Fedora using right now (package is installed Package rxtx-2.2-0.5.20100211.fc15.i686 already installed and latest version ). I have used/tried: # locate librxtxSerial /home/sun/Downloads/rxtx-2.1-7-bins-r2/Linu...
java, fedora, rxtx
8
45,326
5
https://stackoverflow.com/questions/10751304/java-lang-unsatisfiedlinkerror-no-rxtxserial-in-java-library-path-thrown-while
10,553,608
Is 'alternatives' really better for managing JDKs than a Symlink and $PATH?
I've just recently upgraded to Fedora 16 (from fedora 12), and have read/been told that instead of setting up different JDKs by using a simple symlink and setting my $PATH to that symlink, I should be using the alternatives tool. What I don't understand is how alternatives is better for managing your jdk, when it seems...
Is 'alternatives' really better for managing JDKs than a Symlink and $PATH? I've just recently upgraded to Fedora 16 (from fedora 12), and have read/been told that instead of setting up different JDKs by using a simple symlink and setting my $PATH to that symlink, I should be using the alternatives tool. What I don't u...
java, linux, fedora, fedora16
8
2,860
3
https://stackoverflow.com/questions/10553608/is-alternatives-really-better-for-managing-jdks-than-a-symlink-and-path
10,400,328
Wrong number of arguments: called-interactively-p, 1
~/.emacs ;; [URL] (add-to-list 'load-path "~/.emacs.d/") (require 'auto-complete-config) (add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict") (ac-config-default) when I load emacs, it complains the error as "Wrong number of arguments: called-interactively-p, 1". In other words, emacs finds error until the lin...
Wrong number of arguments: called-interactively-p, 1 ~/.emacs ;; [URL] (add-to-list 'load-path "~/.emacs.d/") (require 'auto-complete-config) (add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict") (ac-config-default) when I load emacs, it complains the error as "Wrong number of arguments: called-interactively-p...
emacs, centos
8
4,284
3
https://stackoverflow.com/questions/10400328/wrong-number-of-arguments-called-interactively-p-1
10,153,317
Cannot install bcrypt node.js module on Centos Server
I'm trying to install bcrypt on CentOS server but I got the following error: info postuninstall bcrypt@0.5.0 ERR! bcrypt@0.5.0 install: make build ERR! sh "-c" "make build" failed with 2 ERR! ERR! Failed at the bcrypt@0.5.0 install script. ERR! This is most likely a problem with the bcrypt package, ERR! not with npm it...
Cannot install bcrypt node.js module on Centos Server I'm trying to install bcrypt on CentOS server but I got the following error: info postuninstall bcrypt@0.5.0 ERR! bcrypt@0.5.0 install: make build ERR! sh "-c" "make build" failed with 2 ERR! ERR! Failed at the bcrypt@0.5.0 install script. ERR! This is most likely a...
node.js, centos, npm, bcrypt
8
16,035
5
https://stackoverflow.com/questions/10153317/cannot-install-bcrypt-node-js-module-on-centos-server
9,022,943
psycopg2 on Fedora
I'm trying to install psycopg2, using pip, on Fedora. I get the message: "pg_config executable not found." In ubuntu, this problem can be resolved by installing the libpq-dev and python-dev packages. There's no clear analogous solution in Fedora.
psycopg2 on Fedora I'm trying to install psycopg2, using pip, on Fedora. I get the message: "pg_config executable not found." In ubuntu, this problem can be resolved by installing the libpq-dev and python-dev packages. There's no clear analogous solution in Fedora.
python, postgresql, fedora, psycopg2
8
5,574
1
https://stackoverflow.com/questions/9022943/psycopg2-on-fedora
8,821,963
start mongodb and return to terminal
I can start mongodb on terminal via command ./mongod It starts the mongodb server and then display me information that server is running on this port. but It does not give my terminal back. How can I start mongodb and can get terminal back so mongodb is running the background. Also how to shutdown if its running in bac...
start mongodb and return to terminal I can start mongodb on terminal via command ./mongod It starts the mongodb server and then display me information that server is running on this port. but It does not give my terminal back. How can I start mongodb and can get terminal back so mongodb is running the background. Also ...
mongodb, centos
8
13,997
2
https://stackoverflow.com/questions/8821963/start-mongodb-and-return-to-terminal
4,796,841
How do I enable mbstring extension on PHP 5, Fedora server
I need to add the mbstring extension to an install of PHP 5.2.6 on Apache/2.2.11 (Fedora). We have dynamic extensions enabled so I really think all I need is the .so file and .ini files, correct? Can I simply drop these files in and make it work or do I have to recompile PHP? If it's simply upload and go, where can I g...
How do I enable mbstring extension on PHP 5, Fedora server I need to add the mbstring extension to an install of PHP 5.2.6 on Apache/2.2.11 (Fedora). We have dynamic extensions enabled so I really think all I need is the .so file and .ini files, correct? Can I simply drop these files in and make it work or do I have to...
php, apache, fedora, mbstring
8
19,382
1
https://stackoverflow.com/questions/4796841/how-do-i-enable-mbstring-extension-on-php-5-fedora-server
4,118,837
wget with errorlevel bash output
I want to create a bash file (.sh) which does the following: I call the script like ./download.sh www.blabla.com/bla.jpg the script has to echo then if the file has downloaded or not... How can I do this? I know I can use errorlevel but I'm new to linux so... Thanks in advance!
wget with errorlevel bash output I want to create a bash file (.sh) which does the following: I call the script like ./download.sh www.blabla.com/bla.jpg the script has to echo then if the file has downloaded or not... How can I do this? I know I can use errorlevel but I'm new to linux so... Thanks in advance!
linux, bash, centos
8
10,901
3
https://stackoverflow.com/questions/4118837/wget-with-errorlevel-bash-output
3,472,383
Why does recursive mode on chmod do everything but recursion?
chmod -R 775 *.cgi only changes permissions on the files in the current directory, the files in the subdirectory don't get modified at all. This is the exact same functionality as simply doing chmod 775 *.cgi . I have seen people use solutions such as with find and whatnot. Ok great, but why does -R mode even exist if ...
Why does recursive mode on chmod do everything but recursion? chmod -R 775 *.cgi only changes permissions on the files in the current directory, the files in the subdirectory don't get modified at all. This is the exact same functionality as simply doing chmod 775 *.cgi . I have seen people use solutions such as with f...
bash, unix, centos, chmod
8
14,811
5
https://stackoverflow.com/questions/3472383/why-does-recursive-mode-on-chmod-do-everything-but-recursion
901,476
PECL install fails
I have browsed every Google result, read all the forum posts about this error, but I cannot solve it. When using PECL install for anything, I always end up getting this error: checking whether the C compiler works... configure: error: cannot run C compiled programs. Everything else succeeds up to that point them bam! I...
PECL install fails I have browsed every Google result, read all the forum posts about this error, but I cannot solve it. When using PECL install for anything, I always end up getting this error: checking whether the C compiler works... configure: error: cannot run C compiled programs. Everything else succeeds up to tha...
c, centos, pear, pecl
8
7,093
3
https://stackoverflow.com/questions/901476/pecl-install-fails
61,553,365
ansible same playbook for different linux distribution
We have designed an ansible playbook for nodes on which Ubuntu is installed. Now we have to play the same Playbook on new machines (node) for a different customer who uses Centos. The problem is that for Centos, Ansible uses Yum module (which use yum package manager to install module). In our actual playbook, we are ob...
ansible same playbook for different linux distribution We have designed an ansible playbook for nodes on which Ubuntu is installed. Now we have to play the same Playbook on new machines (node) for a different customer who uses Centos. The problem is that for Centos, Ansible uses Yum module (which use yum package manage...
ubuntu, module, ansible, centos
7
8,708
3
https://stackoverflow.com/questions/61553365/ansible-same-playbook-for-different-linux-distribution
57,060,135
systemctl service systemd-notify not working with non-root user
I have a simple example of a service unit and bash script on Red Hat Enterprise Linux 7 using Type=notify that I am trying to get working. When the service unit is configured to start the script as root, things work as expected. When adding User=testuser it fails. While the script initially starts (as seen on process l...
systemctl service systemd-notify not working with non-root user I have a simple example of a service unit and bash script on Red Hat Enterprise Linux 7 using Type=notify that I am trying to get working. When the service unit is configured to start the script as root, things work as expected. When adding User=testuser i...
bash, systemd, rhel7, systemctl
7
6,879
3
https://stackoverflow.com/questions/57060135/systemctl-service-systemd-notify-not-working-with-non-root-user
51,287,437
docker image build getting check sum error - Rpmdb checksum is invalid: dCDPT
Details of the error : We have a custom docker image and we build on top of Cent OS 7 which is the base image . While build image happening got this error . Rpmdb checksum is invalid: dCDPT(pkg checksums): dbus-libs.x86_64 1:1.10.24-7.el7 - u _[0m The command '/bin/sh -c yum clean all && yum -y swap fakesystemd systemd...
docker image build getting check sum error - Rpmdb checksum is invalid: dCDPT Details of the error : We have a custom docker image and we build on top of Cent OS 7 which is the base image . While build image happening got this error . Rpmdb checksum is invalid: dCDPT(pkg checksums): dbus-libs.x86_64 1:1.10.24-7.el7 - u...
docker, centos
7
5,664
4
https://stackoverflow.com/questions/51287437/docker-image-build-getting-check-sum-error-rpmdb-checksum-is-invalid-dcdpt
49,855,682
Error: mysql57-community-release conflicts with mysql-community-release-el7-7.noarch
When I try to install mysql-community-release , I get the following error: # yum install mysql-community-release Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.uv.es * extras: mirror.uv.es * updates: mirror.uv.es Resolving Dependencies --> Running transaction check ---> Package ...
Error: mysql57-community-release conflicts with mysql-community-release-el7-7.noarch When I try to install mysql-community-release , I get the following error: # yum install mysql-community-release Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.uv.es * extras: mirror.uv.es * upd...
mysql, centos, centos7
7
39,133
1
https://stackoverflow.com/questions/49855682/error-mysql57-community-release-conflicts-with-mysql-community-release-el7-7-no
46,203,667
How to make docker listening to unix and TCP socket under centos with systemd
I have installed docker (v17.06.2-ce) under CentOS using systemd. Docker works fine and listens to the unix socket. Now i would like to have docker to listen to the Unix socket and to the TCP socket 2375. Since this is an in-house development machine security is no issue. I scanned the internet found several articles b...
How to make docker listening to unix and TCP socket under centos with systemd I have installed docker (v17.06.2-ce) under CentOS using systemd. Docker works fine and listens to the unix socket. Now i would like to have docker to listen to the Unix socket and to the TCP socket 2375. Since this is an in-house development...
docker, tcp, centos, systemd
7
14,117
4
https://stackoverflow.com/questions/46203667/how-to-make-docker-listening-to-unix-and-tcp-socket-under-centos-with-systemd
44,985,403
502 bad gateway mvc core app on CentOS
I made a website in MVC Core and tried to publish it to the web on a CentOS 7 VPS. It runs well, when I curl it it responds. Then i installed nginx and it showed the default page, when trying it from my computer. Then i changed nginx.conf to the below one and all i get is 502 bad gateway. In the nginx log i see only th...
502 bad gateway mvc core app on CentOS I made a website in MVC Core and tried to publish it to the web on a CentOS 7 VPS. It runs well, when I curl it it responds. Then i installed nginx and it showed the default page, when trying it from my computer. Then i changed nginx.conf to the below one and all i get is 502 bad ...
nginx, centos, asp.net-core-mvc, bad-gateway
7
1,391
1
https://stackoverflow.com/questions/44985403/502-bad-gateway-mvc-core-app-on-centos
44,716,612
Docker PHP permissions
My php container does not have the permissions to write cache on the mounted volume. docker-compose.yml: version: '2' volumes: database_data: driver: local services: php: build: ./docker/php/ expose: - 9000 volumes: - ./public:/var/www/html working_dir: /var/www/html nginx: image: nginx:latest depends_on: - php ports: ...
Docker PHP permissions My php container does not have the permissions to write cache on the mounted volume. docker-compose.yml: version: '2' volumes: database_data: driver: local services: php: build: ./docker/php/ expose: - 9000 volumes: - ./public:/var/www/html working_dir: /var/www/html nginx: image: nginx:latest de...
php, docker, docker-compose, fedora, grav
7
6,105
3
https://stackoverflow.com/questions/44716612/docker-php-permissions
44,507,584
Cant Modify or Resize Amazon EBS Volume
Cant Modify or Resize Amazon EBS Volume. In us-east-1d N. Virginia. The instance it's connected to is t2.medium CentOS 7. Any help would be appreciated.
Cant Modify or Resize Amazon EBS Volume Cant Modify or Resize Amazon EBS Volume. In us-east-1d N. Virginia. The instance it's connected to is t2.medium CentOS 7. Any help would be appreciated.
amazon-web-services, amazon-ec2, centos, amazon-ebs
7
6,293
3
https://stackoverflow.com/questions/44507584/cant-modify-or-resize-amazon-ebs-volume
40,331,741
Systemd tomcat.service failed with no errors
I have Tomcat configured to run as a service using Systemd on CentOS 7.2. I can start Tomcat with no problems: sudo systemctl start tomcat I can access the splash screen, the manager app, and even deploy applications. Then I shut down Tomcat: sudo systemctl stop tomcat I don't see any errors. But then I check the statu...
Systemd tomcat.service failed with no errors I have Tomcat configured to run as a service using Systemd on CentOS 7.2. I can start Tomcat with no problems: sudo systemctl start tomcat I can access the splash screen, the manager app, and even deploy applications. Then I shut down Tomcat: sudo systemctl stop tomcat I don...
tomcat, centos, systemd
7
25,050
1
https://stackoverflow.com/questions/40331741/systemd-tomcat-service-failed-with-no-errors
39,884,653
How to install ffmpeg for PHP
I've successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7). ffmpeg works fine - but now I need to use it without root access. When i try to use ffmpeg without root access, I get the following error : ffmpeg: error while loading shared libraries: libx264.so.148: cannot open shared object fi...
How to install ffmpeg for PHP I've successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7). ffmpeg works fine - but now I need to use it without root access. When i try to use ffmpeg without root access, I get the following error : ffmpeg: error while loading shared libraries: libx264.so.148...
php, ffmpeg, server, centos
7
56,417
2
https://stackoverflow.com/questions/39884653/how-to-install-ffmpeg-for-php
39,654,239
WordPress file permissions on CentOS7 requiring sudo
I'm running WordPress on my VPS with CentOS 7 LAMP stack.I've followed this guide to set permissions, i.e. I've run sudo chown apache:apache -R * to ensure that my wordpress directory is owned by apache:apache . I've also set WordPress directory and file permissions with these commands: find . -type d -exec chmod 755 {...
WordPress file permissions on CentOS7 requiring sudo I'm running WordPress on my VPS with CentOS 7 LAMP stack.I've followed this guide to set permissions, i.e. I've run sudo chown apache:apache -R * to ensure that my wordpress directory is owned by apache:apache . I've also set WordPress directory and file permissions ...
wordpress, permissions, centos
7
4,352
4
https://stackoverflow.com/questions/39654239/wordpress-file-permissions-on-centos7-requiring-sudo
39,532,001
why does gdb complain that my core files are too small and then fail to produce a meaningful stack trace?
I have a core file generated from a segfault. When I try to load it into gdb, it doesn't appear to matter how I load it or if I use the correct executable or not - I always get this warning from gdb about the core file being truncated: $ gdb -q /u1/dbg/bin/exdoc_usermaint_pdf_compact /tmp/barry/core.exdoc_usermaint.11 ...
why does gdb complain that my core files are too small and then fail to produce a meaningful stack trace? I have a core file generated from a segfault. When I try to load it into gdb, it doesn't appear to matter how I load it or if I use the correct executable or not - I always get this warning from gdb about the core ...
c, gdb, fedora, coredump
7
10,298
2
https://stackoverflow.com/questions/39532001/why-does-gdb-complain-that-my-core-files-are-too-small-and-then-fail-to-produce
35,271,553
No package lib32z1,lib32ncurses5,lib32stdc++6 available in centos
During installing android studio in centos the Unable to run mksdcard SDK tool. error occure. I try to find out the solution on net but unable to install yum install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6 and the error is no package available.Also i have updated the yum. So please if there is any solution for ...
No package lib32z1,lib32ncurses5,lib32stdc++6 available in centos During installing android studio in centos the Unable to run mksdcard SDK tool. error occure. I try to find out the solution on net but unable to install yum install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6 and the error is no package available.Al...
android, linux, centos, centos6, centos7
7
12,141
3
https://stackoverflow.com/questions/35271553/no-package-lib32z1-lib32ncurses5-lib32stdc6-available-in-centos
34,931,846
Cronjob to check and restart service if dead
I want a 1 liner that can check and restart services, such as Apache if they are inactive/dead. I want to put it in crontab and run it every minute to make sure the service is still running.
Cronjob to check and restart service if dead I want a 1 liner that can check and restart services, such as Apache if they are inactive/dead. I want to put it in crontab and run it every minute to make sure the service is still running.
linux, bash, centos, cron
7
26,265
4
https://stackoverflow.com/questions/34931846/cronjob-to-check-and-restart-service-if-dead
29,014,062
Unable to install XML package in R on CentOS
When I try to install xml package in R on CENTOS i recieve such warning: > install.packages("XML") Installing package into '/opt/wpusers/r-mkosinski/R/x86_64-redhat-linux-gnu-library/3.1' (as 'lib' is unspecified) trying URL '[URL] Content type 'application/x-gzip' length 1582216 bytes (1.5 Mb) opened URL =============...
Unable to install XML package in R on CentOS When I try to install xml package in R on CENTOS i recieve such warning: > install.packages("XML") Installing package into '/opt/wpusers/r-mkosinski/R/x86_64-redhat-linux-gnu-library/3.1' (as 'lib' is unspecified) trying URL '[URL] Content type 'application/x-gzip' length 15...
r, centos
7
10,401
4
https://stackoverflow.com/questions/29014062/unable-to-install-xml-package-in-r-on-centos
28,182,991
Error message after installing Sublime Text 3
I found on a website that I can install sublime 3 on Fedora 20 using the following command: curl -L [URL] | sh After running the command I can't open Sublime. I get the following error: /usr/local/bin/subl: line 2: [: ==: unary operator expected Please see below a copy from the terminal: [pc@pc-z710 ~]$ curl -L [URL] |...
Error message after installing Sublime Text 3 I found on a website that I can install sublime 3 on Fedora 20 using the following command: curl -L [URL] | sh After running the command I can't open Sublime. I get the following error: /usr/local/bin/subl: line 2: [: ==: unary operator expected Please see below a copy from...
sh, sublimetext, fedora
7
4,089
1
https://stackoverflow.com/questions/28182991/error-message-after-installing-sublime-text-3
27,026,003
xz compression install on centos
Any installation or update using yum command I ended up error: Error: xz compression not available. On website I read that Python library is missing. When you try to install a library (sudo yum update pyliblzma) again failed with error. Do not know how? Thanks.
xz compression install on centos Any installation or update using yum command I ended up error: Error: xz compression not available. On website I read that Python library is missing. When you try to install a library (sudo yum update pyliblzma) again failed with error. Do not know how? Thanks.
linux, centos, yum
7
21,253
6
https://stackoverflow.com/questions/27026003/xz-compression-install-on-centos
27,012,226
Install GitLab on Subdomain
I am trying to install GitLab on a subdomain. I am not very familiar with web servers and stuff, only very little knowledge. I am currently connected to the subdomain via ssh admin@mysite.com on the Mac's Terminal. Then I ls to the subdomain's folder. Question is if I execute: curl -O [URL] sudo yum install openssh-ser...
Install GitLab on Subdomain I am trying to install GitLab on a subdomain. I am not very familiar with web servers and stuff, only very little knowledge. I am currently connected to the subdomain via ssh admin@mysite.com on the Mac's Terminal. Then I ls to the subdomain's folder. Question is if I execute: curl -O [URL] ...
bash, centos, gitlab, yum
7
14,025
1
https://stackoverflow.com/questions/27012226/install-gitlab-on-subdomain
24,836,715
Difference between /etc/init.d and /sbin/service
What's the difference between starting daemons (tomcat for example) with /etc/init.d and /sbin/service? Is there a benefit to using one or the other? Running CentOS release 5.8 (Final)
Difference between /etc/init.d and /sbin/service What's the difference between starting daemons (tomcat for example) with /etc/init.d and /sbin/service? Is there a benefit to using one or the other? Running CentOS release 5.8 (Final)
service, centos, init.d
7
8,916
1
https://stackoverflow.com/questions/24836715/difference-between-etc-init-d-and-sbin-service
17,314,384
Tomcat 7 javax.el.ELException
I restarted the httpd and tomcat service today, and after doing so. I was greeted with the following message. I saw this thread [URL] And did as they told. I checked, and the el-api.jar is there. I checked another server, and tomcat is running great with it as well. The server is a Centos 6.4 (final) and Tomcat 7.0.23....
Tomcat 7 javax.el.ELException I restarted the httpd and tomcat service today, and after doing so. I was greeted with the following message. I saw this thread [URL] And did as they told. I checked, and the el-api.jar is there. I checked another server, and tomcat is running great with it as well. The server is a Centos ...
java, tomcat, centos
7
15,467
2
https://stackoverflow.com/questions/17314384/tomcat-7-javax-el-elexception
15,441,440
sudo python runs old python version
I have installed python 2.7.3 on CentOS 6 with thse instructions [URL] I have added aliases to bash_profile of both root and myuser for new python. Now when I write python to shell, it runs python2.7.3 correctly from both users. However, if I write sudo python it stills runs old version python2.6.6 What could be the pr...
sudo python runs old python version I have installed python 2.7.3 on CentOS 6 with thse instructions [URL] I have added aliases to bash_profile of both root and myuser for new python. Now when I write python to shell, it runs python2.7.3 correctly from both users. However, if I write sudo python it stills runs old vers...
python, centos, sudo, centos6
7
15,214
4
https://stackoverflow.com/questions/15441440/sudo-python-runs-old-python-version
13,665,712
Unable to install PG gem on Fedora 17
The pg gem is being stubborn so I can't load my app on new computer. Seems like multiple problems, not being able to locate pg_config and then extconf.rb #psql working... psql (9.2.1) Type "help" for help. nd => \q $ pg_config: #adding the path to bashrc... $ nano .bashrc PATH=/usr/pgsql-9.2/bin:$PATH #seems to work......
Unable to install PG gem on Fedora 17 The pg gem is being stubborn so I can't load my app on new computer. Seems like multiple problems, not being able to locate pg_config and then extconf.rb #psql working... psql (9.2.1) Type "help" for help. nd => \q $ pg_config: #adding the path to bashrc... $ nano .bashrc PATH=/usr...
ruby-on-rails, linux, postgresql, rvm, fedora
7
4,777
4
https://stackoverflow.com/questions/13665712/unable-to-install-pg-gem-on-fedora-17
12,026,763
Installing jvisualvm on CentOS
I installed Java on my CentOS machine, but I don't have jvisualvm: [root@ bin]# ls -la /usr/lib/jvm/jre-1.6.0-openjdk.x86_64/bin/ total 496 drwxr-xr-x. 2 root root 4096 2012-05-22 17:31 . drwxr-xr-x. 4 root root 4096 2012-02-15 03:11 .. -rwxr-xr-x. 1 root root 41120 2012-02-15 03:13 java -rwxr-xr-x. 1 root root 41088 2...
Installing jvisualvm on CentOS I installed Java on my CentOS machine, but I don't have jvisualvm: [root@ bin]# ls -la /usr/lib/jvm/jre-1.6.0-openjdk.x86_64/bin/ total 496 drwxr-xr-x. 2 root root 4096 2012-05-22 17:31 . drwxr-xr-x. 4 root root 4096 2012-02-15 03:11 .. -rwxr-xr-x. 1 root root 41120 2012-02-15 03:13 java ...
centos, java, jvisualvm
7
15,366
1
https://stackoverflow.com/questions/12026763/installing-jvisualvm-on-centos
11,197,374
Create an RPM that can also manipulate files and add users
I'm trying to create an RPM in Fedora 15 that will install my software, but in order for my software to work correctly once installed, I also need to edit other (configuration) files on the system, add users/groups, etc. Performing some of these tasks is only allowed by the root user. I know to never create an RPM as t...
Create an RPM that can also manipulate files and add users I'm trying to create an RPM in Fedora 15 that will install my software, but in order for my software to work correctly once installed, I also need to edit other (configuration) files on the system, add users/groups, etc. Performing some of these tasks is only a...
fedora, rpm, rpmbuild, rpm-spec
7
9,861
2
https://stackoverflow.com/questions/11197374/create-an-rpm-that-can-also-manipulate-files-and-add-users
10,510,794
centos free space on disk not updating
I am new to the linux and working with centos system , By running command df -H it is showing 82% if full, that is only 15GB is free. I want some more extra spaces, so using WINSCP i hav done shift deleted the 15G record. and execured df -H once again, but still it is showing 15 GB free. but the free size of the delete...
centos free space on disk not updating I am new to the linux and working with centos system , By running command df -H it is showing 82% if full, that is only 15GB is free. I want some more extra spaces, so using WINSCP i hav done shift deleted the 15G record. and execured df -H once again, but still it is showing 15 G...
linux, centos, storage
7
9,656
1
https://stackoverflow.com/questions/10510794/centos-free-space-on-disk-not-updating
7,231,687
How to update Mercurial client in CentOS6?
I have Mercurial 1.4 in my CentOS6, but I need to use the Eclipse Plug-in that uses at least Mercurial 1.5. How can I update my Mercurial version in CentOS6? Setting up Install Process Package mercurial-1.4-3.el6.x86_64 already installed and latest version Nothing to do When I try do download a new RPM(mercurial-1.9-1....
How to update Mercurial client in CentOS6? I have Mercurial 1.4 in my CentOS6, but I need to use the Eclipse Plug-in that uses at least Mercurial 1.5. How can I update my Mercurial version in CentOS6? Setting up Install Process Package mercurial-1.4-3.el6.x86_64 already installed and latest version Nothing to do When I...
mercurial, centos
7
7,197
3
https://stackoverflow.com/questions/7231687/how-to-update-mercurial-client-in-centos6
6,133,326
How to install iconv-devel on CentOS 5.6?
After installing rvm on CentOS 5.6 and run rvm notes : dependencies: # For RVM rvm: yum install -y bash curl git # NOTE: For git you need the EPEL repository enabled # For Ruby (MRI & Ree) you should install the following OS dependencies: ruby: yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel libyam...
How to install iconv-devel on CentOS 5.6? After installing rvm on CentOS 5.6 and run rvm notes : dependencies: # For RVM rvm: yum install -y bash curl git # NOTE: For git you need the EPEL repository enabled # For Ruby (MRI & Ree) you should install the following OS dependencies: ruby: yum install -y gcc-c++ patch read...
centos, rvm, iconv, yum
7
15,961
1
https://stackoverflow.com/questions/6133326/how-to-install-iconv-devel-on-centos-5-6
5,559,251
How To Update Boost When Yum Has the Outdated Version
I am trying to install the latest version of Gearman. However, it keeps giving me the error: Checking for Boost Headers version >= 1.37... no When I check my Boost version (yum list installed | grep boost), all the versions are 1.33. The latest Boost version is 1.46, but it seems CentOS does not have this version in th...
How To Update Boost When Yum Has the Outdated Version I am trying to install the latest version of Gearman. However, it keeps giving me the error: Checking for Boost Headers version >= 1.37... no When I check my Boost version (yum list installed | grep boost), all the versions are 1.33. The latest Boost version is 1.46...
boost, centos, yum, gearman
7
25,888
3
https://stackoverflow.com/questions/5559251/how-to-update-boost-when-yum-has-the-outdated-version
4,823,757
CentOS 5.5 - symbolic link creation into RPM spec file
I need to create the following symbolic links into RPM file /bin/ln -sf libcrypto.so.0.9.8e /lib/libcrypto.so.0.9.8 /bin/ln -sf libssl.so.0.9.8e /lib/libssl.so.0.9.8 In my RPM spec file: %files %defattr(-,root,root) /lib/libcrypto.so.0.9.8 /lib/libssl.so.0.9.8 <other files...> %install /bin/ln -sf libcrypto.so.0.9.8e /...
CentOS 5.5 - symbolic link creation into RPM spec file I need to create the following symbolic links into RPM file /bin/ln -sf libcrypto.so.0.9.8e /lib/libcrypto.so.0.9.8 /bin/ln -sf libssl.so.0.9.8e /lib/libssl.so.0.9.8 In my RPM spec file: %files %defattr(-,root,root) /lib/libcrypto.so.0.9.8 /lib/libssl.so.0.9.8 <oth...
linux, centos, rpm, centos5, rpm-spec
7
12,183
4
https://stackoverflow.com/questions/4823757/centos-5-5-symbolic-link-creation-into-rpm-spec-file
76,572,895
Bluetooth service was skipped because of an unmet condition check (ConditionPathIsDirectory=/sys/class/bluetooth)
What can cause the following error. My bluetooth is working on Fedora 38 $ systemctl status bluetooth * bluetooth.service - Bluetooth service Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; preset: enabled) Drop-In: /usr/lib/systemd/system/service.d +-10-timeout-abort.conf Active: inactive (dead) Do...
Bluetooth service was skipped because of an unmet condition check (ConditionPathIsDirectory=/sys/class/bluetooth) What can cause the following error. My bluetooth is working on Fedora 38 $ systemctl status bluetooth * bluetooth.service - Bluetooth service Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabl...
bluetooth, fedora
7
11,021
2
https://stackoverflow.com/questions/76572895/bluetooth-service-was-skipped-because-of-an-unmet-condition-check-conditionpath
71,474,943
Module Not Found Error: No module named '_ctypes'
I try to launch a python file but it returns me the error: File "/usr/local/lib/python3.10/ctypes/ init .py", line 8, in from _ctypes import Union, Structure, Array ModuleNotFoundError: No module named '_ctypes' The only solution I found on the web is to: sudo dnf install libffi-dev I tried but it doesn't work either, ...
Module Not Found Error: No module named '_ctypes' I try to launch a python file but it returns me the error: File "/usr/local/lib/python3.10/ctypes/ init .py", line 8, in from _ctypes import Union, Structure, Array ModuleNotFoundError: No module named '_ctypes' The only solution I found on the web is to: sudo dnf insta...
fedora, python-3.10
7
23,879
2
https://stackoverflow.com/questions/71474943/module-not-found-error-no-module-named-ctypes
71,256,853
how do I install python2 on centos 9 stream?
I am trying to figure out how to install python2 on centos9 stream. I am getting the errors below. Any suggestions? sudo dnf install python2 Last metadata expiration check: 0:04:48 ago on Thu 24 Feb 2022 01:43:10 PM EST. No match for argument: python2 Error: Unable to find a match: python2
how do I install python2 on centos 9 stream? I am trying to figure out how to install python2 on centos9 stream. I am getting the errors below. Any suggestions? sudo dnf install python2 Last metadata expiration check: 0:04:48 ago on Thu 24 Feb 2022 01:43:10 PM EST. No match for argument: python2 Error: Unable to find a...
python, centos, python-2.x
7
12,167
2
https://stackoverflow.com/questions/71256853/how-do-i-install-python2-on-centos-9-stream
67,411,745
pyenv: BUILD FAILED (Fedora 34 using python-build 20180424)
I need help to install python via pyenv $ pyenv -v pyenv 1.2.27 I try to install version 3.6.8 $ pyenv install 3.6.8 I got error Downloading Python-3.6.8.tar.xz... -> [URL] Installing Python-3.6.8... /home/dn121283mvp1/.pyenv/plugins/python-build/bin/python-build: line 1804: 355307 Segmentation fault (core dumped) "$PY...
pyenv: BUILD FAILED (Fedora 34 using python-build 20180424) I need help to install python via pyenv $ pyenv -v pyenv 1.2.27 I try to install version 3.6.8 $ pyenv install 3.6.8 I got error Downloading Python-3.6.8.tar.xz... -> [URL] Installing Python-3.6.8... /home/dn121283mvp1/.pyenv/plugins/python-build/bin/python-bu...
python, fedora, pyenv
7
4,291
1
https://stackoverflow.com/questions/67411745/pyenv-build-failed-fedora-34-using-python-build-20180424
65,162,061
Android Emulator Segmentation fault (core dumped) On Fedora 33
Using the Android 11.0 (R) SDK platform (revision 3), when I run an emulator image (Google Play Intel x86 Atom or Atom_64 System Image, revision 9), the emulator crashes. Doing the same from the command-line shows that a segmentation fault happens. Here is the verbose output: /opt/android/sdk/emulator/emulator -verbose...
Android Emulator Segmentation fault (core dumped) On Fedora 33 Using the Android 11.0 (R) SDK platform (revision 3), when I run an emulator image (Google Play Intel x86 Atom or Atom_64 System Image, revision 9), the emulator crashes. Doing the same from the command-line shows that a segmentation fault happens. Here is ...
android-emulator, fedora
7
3,700
1
https://stackoverflow.com/questions/65162061/android-emulator-segmentation-fault-core-dumped-on-fedora-33
64,325,727
loop device setup (losetup, mount, etc) fails in a container immediately after host reboot
I'm trying to populate a disk image in a container environment (podman) on Centos 8. I had originally run into issues with accessing the loop device from the container until finding on SO and other sources that I needed to run podman as root and with the --privileged option. While this did solve my problem in general, ...
loop device setup (losetup, mount, etc) fails in a container immediately after host reboot I'm trying to populate a disk image in a container environment (podman) on Centos 8. I had originally run into issues with accessing the loop device from the container until finding on SO and other sources that I needed to run po...
centos, filesystems, containers, mount, podman
7
13,238
3
https://stackoverflow.com/questions/64325727/loop-device-setup-losetup-mount-etc-fails-in-a-container-immediately-after-h
63,262,668
RHEL 8 Container MSSQL ODBC Driver e2fsprogs
I'm trying to build a custom docker container using the RHEL 8 UBI. As part of this I want to install the MSSQL 17 ODBC driver. I've followed the steps outlined in Microsofts Documentation here: [URL] And added the Microsoft repo to my yum.repos.d directory however when I try to build the container I get the following ...
RHEL 8 Container MSSQL ODBC Driver e2fsprogs I'm trying to build a custom docker container using the RHEL 8 UBI. As part of this I want to install the MSSQL 17 ODBC driver. I've followed the steps outlined in Microsofts Documentation here: [URL] And added the Microsoft repo to my yum.repos.d directory however when I tr...
sql-server, docker, odbc, pyodbc, rhel8
7
5,093
4
https://stackoverflow.com/questions/63262668/rhel-8-container-mssql-odbc-driver-e2fsprogs