Centos(11)
-
systemctl 에러 전체 글자 확인
journalctl -f systemctl start httpd 실행 journalctl 터미널창에서 에러 전체 글자 확인 systemctl status httpd.service 키보드 화살표로 이동
2021.01.06 -
방화벽 셋팅(ver7 이상)
방화벽 상태 확인 : firewall-cmd --state > running or not running 방화벽 시작 or 종료 : systemctl start firewalld or systemctl stop firewalld 포트 추가 firewall-cmd --permanent --add-port=8080/tcp firewall-cmd --reload 서비스 추가 firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-service=https 설정 조회 :firewall-cmd --list-all target: default icmp-block-inversion: no interfaces: wlp2s0 sources: se..
2021.01.04 -
OS Bit 확인
getconf LONG_BIT
2021.01.04 -
한글폰트 확인
fc-list :lang=ko
2020.12.29 -
vi suspend 및 원복
vi에서 'ctrl + z'를 누르면, vi에서 바깥으로 나감 jobs를 통하여 suspend된 내역 확인 [1]+ Stopped 파일명 fg 번호 눌러서 원복 : fg 1
2020.12.27