Linux Change Hostname

How do I change hostname under Linux operating system? You need to use the hostname command. It is used to either set or display the current host or domain name of the system. The hostname is used by many of the networking programs (such as sendmail, Apache servers) to identify the machine. Display Hostname Type […]

Permanent hostname change on RedHat based systems

RedHat based system use the file /etc/sysconfig/network to read the saved hostname at system boot. This is set using the init script /etc/rc.d/rc.sysinit /etc/sysconfig/network NETWORKING=yes HOSTNAME=»plain.domainname.com» GATEWAY=»192.168.0.1″ GATEWAYDEV=»eth0″ FORWARD_IPV4=»yes»

Comando find

Para localizar archivos con un nombre especifico desde un ruta especifica en toda la estructura interna de carpetas se utiliza: find /home -iname ‘archivo.txt’ Este comando se puede utilizar para borrar el archivo ‘archivo.txt’ de forma recursiva en toda la estructura de directorios que se esta especificando. find /home -iname ‘archivo.txt’ | xargs rm -rfv

Comando du

Este comando informa al usuario de la cantidad de almacenamiento utilizado por los archivos especificados, posee varias opciones, su sintaxis es la siguiente: du [opciones] [archivo…]   Sus opciones más significativas son: -s Muestra únicamente los tamaños de los archivos especificados en la línea de comandos. -h Muestra los tamaños de archivo en un formato […]