While installing the python module I got this error ,”error command ‘gcc’ failed with exit status 1 ”
To solve this issue install python-dev package
sudo apt-get install python-dev
Now recheck,I hope the problem is solved now.
While installing the python module I got this error ,”error command ‘gcc’ failed with exit status 1 ”
To solve this issue install python-dev package
sudo apt-get install python-dev
Now recheck,I hope the problem is solved now.
Sharad Chhetri is an experienced Linux, DevOps, Cloud Engineer & Freelancer. Working on various technologies since RHEL 4 era. He loves sharing the knowledge which he has earned from his experience.
You can contact him on email for freelance projects at admin@sharadchhetri.com.
Few days back I did some changes in /etc/postfix/virtual file and restarted the postfix service.Today I saw some error in mail logs stating “hash:/etc/postfix/virtual is unavailable. open database /etc/postfix/virtual.db: No such file or directory” I checked /etc/postfix/virtual.db about its existence by using command ls -l /etc/postfix/virtual.db and found it was not there. To resolve this…
In this post we will learn How to set DHCP offered ip address to particular ethernet in freebsd. I freshly installed the freebsd 9.0-RELEASE in Virtual box. I added two ethernet or NIC to virtual machine. After restart I found only my first ethernet has the ip address. The second ethernet does’not have any ip….
In this post we will learn , how to create upstart event system for ghost blog on Ubuntu . In our previous post, we have written how to install and run the ghost blog on Ubuntu . By using upstart event system, we can start,stop and restart the ghost with service command. Whereas on system…
Installing rails in verbose mode CentOS and Red Hat When we do “gem install rails” , the command actaully take time to install rails and we can not see what are the liberaries are installing in background. To see the rails installation in verberose mode ,use the given below command : gem install rails -V…
In this post we will learn, how to backup and restore iptables on Linux systems .As a Linux System Administrator,it is important to understand iptables. With iptables,you can secure the Linux Operating System.In this post,we have written a quick way to take backup and restore the iptables in Linux systems. iptables is a user space…
In this post we will install php 5.4 on CentOS 6 with yum command . In available default repo of CentOS, we will get the php 5.3 version. Some PHP developers uses the PHP 5.4 version for application, hence we need PHP 5.4 to be installed on CentOS 6.x . It is known that in…