HostOnNet Blog

Tag Archives: centos 6

Installing php-mcrypt in CentOS 6

After installing phpmyadmin on CentOS 6 64 bit server, phpmyadmin displays warning The mcrypt extension is missing. Please check your PHP configuration. php-mcrypt is not availble in CentOS repo. To install it, you need to install EPEL repo. Now install


Auto Login to Linux Console in CentOS 6

To auto login to linux console on boot, edit /etc/init/tty.conf vi /etc/init/tty.conf Find exec /sbin/mingetty $TTY Replace with exec /sbin/mingetty –autologin root $TTY diff with original tty.conf [root@localhost ~]# diff /etc/init/tty.conf ~/tty.conf.original 9c9 < exec /sbin/mingetty --autologin root $TTY ---