P2V migration - converting RHEL5/CentOS5 physical server into Hyper-V VM

Published on Author admin

As there is no direct VM conversion tool (from physical Linux server to Hyper-V VM), to perform P2V migration of RHEL5/CentOS5 physical server into Microsoft Hyper-V Virtual Machine you should use VMware platform as an intermediate point. Below you will find instruction how to do it: • migrate physical RHEL5/CentOS5 server to VMware ESXi Virtual… Continue reading P2V migration - converting RHEL5/CentOS5 physical server into Hyper-V VM

Disable IPv6 on Debian Linux

Published on Author admin

Put following content into /etc/sysctl.conf file: net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv6.conf.eth0.disable_ipv6 = 1 Reload sysctl rules: sysctl -p