IP변경
/etc/sysconfig/network-scripts/<인터페이스>
IPADDR="<IP>"
# ifup <인터페이스>
history 타임스탬프
/etc/profile
HISTTIMEFORMAT="[%F %T] "
export HISTTIMEFORMAT
or
# sed -i '10a\\export HISTTIMEFORMAT\n' /etc/profile
# sed -i '10a\\HISTTIMEFORMAT="[%F %T] "' /etc/profile
ssh root 접근 차단
/etc/ssh/sshd_config
PermitRootLogin no
# sed -i "s/tLogin yes/tLogin no/g" /etc/ssh/sshd_config
# systemctl restart sshd
TimeZone 변경
# timedatectl set-timezone Asia/Seoul
Prompt 전체 경로 표시
# echo 'export PS1="[\u@\h \w]\\$ "' > /etc/profile.d/prompt.sh
'IT > System' 카테고리의 다른 글
[MSSQL] Transact-SQL, DB 파일 경로 이동(DB detach, attach) (0) | 2020.10.14 |
---|---|
[MSSQL] Transact-SQL, DB detach attach (0) | 2020.10.14 |
[httpd] mod_dnssd.so into server: libavahi-common.so.3 (0) | 2020.10.12 |
[Windows] *.DLL의 .NET Framework 버전 확인 (0) | 2020.09.11 |
[nfs] Setting Up an NFS Server and Client on CentOS (0) | 2020.08.27 |