2017年3月19日 星期日

Linux 5 固化文件




1 edit yum

連結


2 增加指令記錄


 cp /etc/profile /etc/profile_`date +%Y%m%d`
 cp /etc/bashrc  /etc/bashrc_`date +%Y%m%d`


# 將[下面資料#begin ~ #end] 放到二個 檔案的最下面 每個都要加

這邊不能直接貼上,大於小於符號會被轉成為  lt  gt 要小心


#begin  SOC 專用
export HISTTIMEFORMAT="%F %T "
export USERINFO="USER=`whoami` `who am i | perl -lne 'm/^(\w+).+(?<=\()(.+)(?=\))/ && print "LOGIN=$1 IP=$2"'`"
PROMPT_COMMAND='history -a >(logger -p local1.notice -t "[bash_cmd_audit] $USERINFO DIR=`pwd`")'
#end



yum 一些常用的套件


 yum install -y nc net-snmp dos2unix   iotop  sysstat  rsyslog



關閉 ipv6


vi /etc/modprobe.conf

alias net-pf-10 ipv6
alias net-pf-10 off
alias ipv6 off
options ipv6 disable=1


##  EDIT /etc/sysconfig/network
#
sed -ie 's/NETWORKING_IPV6=yes/NETWORKING_IPV6=no/g' /etc/sysconfig/network
cp -p /etc/hosts /etc/hosts.disableipv6
sed -i 's/^[[:space:]]*::/#::/' /etc/hosts
chkconfig ip6tables off



關閉一些用不到的服務

chkconfig ip6tables off
chkconfig sendmail off
chkconfig iptables   off
chkconfig syslog     off
chkconfig rsyslog    on
whi




沒有留言:

RHEL install EPEL

  https://www.linuxtechi.com/install-epel-repo-on-rhel-system/ EPEL dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest...