Techy Things

[SOLVED] CentOS network connection boots up disconnected 0

[SOLVED] CentOS network connection boots up disconnected

Problem details : [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=none IPADDR=10.64.6.32 NETMASK=255.255.0.0 GATEWAY=10.64.0.1 USERCTL=no ONBOOT=no   Solution: Edit /etc/sysconfig/network-scripts/ifcfg-eth0 to have ONBOOT=yes  

Search through all files in linux 0

Search through all files in linux

Find files in linux   Solution using GREP $> grep -ilR 'edma3' /usr/local/ti/* -i == ignore case -R == recursive directories Another often used command for developers $> grep --include=\*.{c,cpp,h} -rnw 'directory' -e "pattern"...