*********
CUIDADO CON /etc/sysconfig/network GATEWAY= en centos con un espacio adicional no funciona
The /etc/sysconfig/network file specifies additional information that is valid to all network interfaces on the system. The following entries from /etc/sysconfig/network define that IPv4 networking is enabled, IPv6 networking is not enabled, the host name of the system, and the IP address of the default network gateway:
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=host20.mydomain.com
GATEWAY=192.168.1.1 //no funciona si colocas GATEWAY = 192.168.1.
y luego
systemctl restart network
Copiar vim
http://felinfo.blogspot.pe/2015/02/copiar-cortar-y-pegar-en-el-editor-vi.html
A continuación voy a describir cómo buscar un proceso dentro de la lista de procesos que se están ejecutando. Ésto puede ser útil si existen muchos procesos y queremos buscar uno o varios de los que sepamos su nombre o parte de su nombre.
ps -aux | grep x
Eso significa que la salida ps aux filtrada coincidirá con cualquier cosa que ocurra en la ruta o los parámetros de un proceso x
Ejemplo ps -aux | grep named
https://askubuntu.com/questions/157075/why-does-ps-aux-grep-x-give-better-results-than-pgrep-x
http://felinfo.blogspot.pe/2013/09/buscar-un-proceso-entre-los-que-se.html
No hay comentarios:
Publicar un comentario