CentOS: Difference between revisions

m (1 revision imported)
 
(3 intermediate revisions by the same user not shown)
Line 16:
 
For DHCP:
ONBOOT="yes"
BOOTPROTO="dhcp"
 
or for Static IP:
 
ONBOOT="yes"
BOOTPROTO="static"
IPADDR=192.168.1.11
NETMASK=255.255.255.0
Line 29:
DNS2=4.2.2.2
 
service network startrestart
 
Verify
Line 108:
iptables -L -n
iptables-save | sudo tee /etc/sysconfig/iptables
 
 
= Misc =
 
== Locate ==
 
Mlocate maintains a database of all your files and is re-indexed once a day by default.
 
Installation:
yum install mlocate
 
To re-index immediately:
sudo updatedb
 
 
<br />