Internet

Linux

MAC

PC General

Windows

NOTE! Before using any of those informations, be sure you read the Disclaimer! Thank you.

Home » Archive by Month

Articles Archive for April 2011

How to disable SeLinux

Some aplications have problems because of SELinux and many of you will choose to disable it.
To disable SELinux you must edit “/etc/selinux/config” useing any text editors, nano, mcedit, vi or whatever you want.

How to fix Unmountable Boot Volume

When booting up to Win XP you may get a error that reads “Unmountable Boot Volume”.
1.The file system is damaged and cannot be mounted.
2.You use a standard 40-wire connector cable to connect the …

How to remove write protection of a disk

open Regedit and navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrrentControlSet\Control\StroageDevicePolicies
If there is a WriteProtect key (REG_DWORD) then
1 = Write Protect On
0 = Write Protect Off
Set to 0 and try (may have to reboot in some cases)

How to fix MBR ( Master Boot Record ) on Windows 7

Insert your Windows 7 installation DVD and boot from DVD drive. While in some older systems you may have to change boot order through system BIOS, most newer systems allow booting from DVD without changing …

How to turn Off DNS Caching under Microsoft Windows

If you experience frequent issues with DNS caching under Microsoft Windows, you can disable client-side DNS caching with either of these two commands:
net stop dnscache
sc servername stop dnscache
This will disable DNS caching until the next …

How to flush DNS cache in Microsoft Windows

To flush dns in Microsoft Windows press start button and type in run:
ipconfig /flushdns
Press enter

How to install mysql on Fedora

To install MySQL, we do this:
yum install mysql mysql-server
Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:
chkconfig –levels 235 mysqld on
/etc/init.d/mysqld …

How to install cPanel on Fedora

yum -y update
yum -y install tcp_wrappers-devel perl tar
mkdir /tmp/cpanel
cd /tmp/cpanel
wget http://layer1.cpanel.net/latest sh latest &
if fails you can repair it with this: /scripts/upcp –force
you will get bored until it finish
login on your server https://xxx.xxx.xxx.xxx:2087/
This should install …