본문 바로가기

Linux

(5)
vim 사소한 팁 1. vi 진입상태에서 number line 출력/미출력 :set nonumber :set number 2. vi 진입시 항상 number line 출력(계정마다 설정) 1 [root@localhost tmp]# echo "set number" >> ~/.vimrc cs 3. vi 사용중 shell 전환 Ctrl + z 다시 vi로 전환시 #fg [번호] (보통은 1) 4.
su 사용 계정 제한 1. /etc/pam.d/su 파일 수정(pam 모듈 미사용시 2번부터) -아래와 같이 7번째 "#auth required pam_wheel.so use_uid"에서 #부분 삭제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 [root@localhost ~]# cat /etc/pam.d/su #%PAM-1.0 auth sufficient pam_rootok.so # Uncomment the following line to implicitly trust users in the "wheel" group. #auth sufficient pam_wheel.so trust use_uid # Uncomment the following line to require a user to be in the..
CentOS 7 +python3 web crawling 순서 1. Python3 설치 1 yum -y install python3 cs 2. Selenium + bs4 + telegram 설치 1 2 3 4 pip3 install -U pip pip3 install beautifulsoup4 pip3 install selenium pip3 install python-telegram-bot --upgrade cs 3. chrome 설치 1 yum -y install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm cs 4. chromedriver 다운로드 + 위치이동 (https://sites.google.com/chromium.org/driver/) 1 2 3 wget https..
CentOS 7.x SSH root 접속 제한(sshd_config) 1 2 3 4 5 6 7 8 echo "PermitRootLogin no" >> /etc/ssh/sshd_config # /etc/ssh/sshd_config 파일 마지막에 PermitRootLogin no 항목 추가 # 기본으로 sshd_config 파일에 PermitRootLogin옵션은 주석(#)처리가 되어 있기 때문에 # 주석을 제거하고 no로 바꾸어도 된다. systemctl restart sshd # ssh 서비스 재시작 # 끝 Colored by Color Scripter cs
Centos7 ifconfig 안될 경우 ip a 명령어로 가능하지만 ifconfig 사용하고 싶으면 yum install -y net-tools 끝.