I did a fresh install of F9. One of the first things that I did after install was run “yum update” to get the latest updates. About half way through, the process got stopped by SELinux. I disabled SE and tried to rerun “yum update”. The update would no longer work however, due to a […]
Category Archives: Q & A
Today i try to make script for installing the asterisk .facing bit errors on Issues .I searched Google i came to know need to install kernal-devel for my system If you are running the standard kernel (for example), you can install the kernel-devel package by: [root@kartook]# yum install kernel-devel You can use this command […]
This howto explains howto install Google Chrome Web browser on Fedora and CentOs.Best way to install and keep up-to-date with Google Chrome browser is use Google’s own YUM repository. Enable Google YUM repository Add following to /etc/yum.repos.d/google.repo file: 32-bit [google] name=Google – i386 baseurl=http://dl.google.com/linux/rpm/stable/i386 enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub 64-bit [google64] name=Google – x86_64 baseurl=http://dl.google.com/linux/rpm/stable/x86_64 enabled=1 gpgcheck=1 […]
Allowing the root user to login directly is a major security issue, we’ll show you how to disable it so you can still login as root but just not directly, reducing the security issue. This will force a hacker to have to guess 2 seperate passwords to gain root access. (you do have 2 seperate […]
How do I disable desktop icons for “Computer,” “Home,” and “Trash?” If you do not want your desktop cluttered with the default icons for “Computer,” “Home,” and “Trash,” you can disable any or all of them. To do this, launch Applications > System Tools > Configuration Editor (gconf-editor from the command line), and go to […]
How do I upgrade from gnome2-lite to the full GNOME 2.28 desktop? The Lite edition does not include all of the components of the standard GNOME 2.28 desktop. If you wish to install the full desktop, first remove the gnome2-lite package, then install the gnome2 port or package. For example: root@kartook# pkg_delete gnome2-lite Then one […]
How do I remove www from all my urls so that search engine can only rank domain.com/ urls under Linux Apache web server? Add following code to your .htaccess or httpd.conf (directory directive) file: RewriteEngine On RewriteCond %{HTTP_HOST} ^www.yourdomain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] If you added directives to httpd.conf, restart Apache: # service httpd […]
In Windows 2003 domain environment desktops with XP Professional the log on to our domain name. It now displays our domain name with (windows 2000) next to it. Why would this change from the correct domain name to domain name (windows 2000) only on a few computers and how do we correct it? 2 […]
How do I install perl on FreeBSD operating system? Practical Extraction and Report Language or Perl can be installed using FreeBSD ports or binary package system. Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It’s also a good language for […]