Just an effort to compile all I learn from variety of sources like nature, religion, surroundings, books, work, friends, and Internet in form of Poems and Articles.
कुछ और
Get link
Facebook
X
Pinterest
Email
Other Apps
अब मकसद कुछ और है, अब मंजिल कुछ और है, जुनूँ की ख्वाहिश है बस अब, हौंसला कुछ और है। - कृष्णा
Linux O/S: RHEL Server release 6.2 (Santiago) Kernel Version: 2.6.32-220.7.1.el6.x86_64 Problem: When you try to take Print Screen it displays following error message "There was an error running gnome-screenshot: Failed to execute child process "gnome-screenshot" (No such file or directory)" Solution: You need to install package gnome-utils, by running command " yum -y install gnome-utils ". This will also install gnome-utils-libs package for dependencies.
I assume that the Fedora Installation you have on your system have minimal packages and installed with GNOME desktop. Though it's optional, you can check for existing installation of package, by typing " rpm -qa | grep <pkg_name> ", in our case, i.e. Perl. If not present, I prefer installing Perl binaries from Fedora repository only. To do that (as you are reading my blog here, I assume your system is connected to Internet), type below command: [root@fedora32 ~]# yum install perl This will install Perl-5.14.2-198 . fc16.i686 package and other related Perl packages as per requirement. Also install various dependencies which will come in course of compiling and "configure/make" of required source packages by typing below commands. [root@fedora32 ~]# yum install gcc gcc-g++ [root@fedora32 ~]# yum install libX11-devel [root@fedo...
This post is written assuming that you already are running Virtual Machines using KVM on RHEL 6.x/CentOS 6.x. Objective: To bring virtual machines, say vm01 and vm02 hosted on a Server, MyServer with two interfaces eth0 and eth1 on the same network as MyServer. Suppose MyServer's IP address is 10.x.y.a. I want my Virtual Machines to have IP addresses 10.x.y.b and 10.x.y.c. so that I will be able to access them from any machine from the same network as they are physcial machines. This way we will be able to access them over web if required. How To: First of all we need to do bonding of eth0 and eth1 of the MyServer so that they can be accessed through bond0 interface which is going to be connected to bridge br0 later. # vi /etc/modprobe.d/bonding.conf add below line in the newly created file: alias bond0 bonding # vi /etc/sysconfig/network add below two lines: NETWORKING=yes HOSTNAME=MyServer # vi /etc/sysconfig/network-scripts/ifcfg-eth0 Change your configur...
Comments
Post a Comment