반응형

Linux 19

[Linux] 기본 명령어

환경 - CentOS8 [cd] directory 이동 명령어 ex) cd /home/test [cp] 파일 복사(copy) 명령어 ex) cp {복사할 파일} {복사할 위치} [df] Disk 사용량 확인(df -option filesystem) ex) df -h(h 옵션은 단위표시로 K, M, G 로 변환하여 보여줌) Filesystem Size Used Avail Use% Mounted on rootfs 477G 240G 238G 51% / C:\ 477G 240G 238G 51% /mnt/c D:\ 932G 183M 932G 1% /mnt/d [du] Disk 사용량 요약 ex) du -h 4.0K ./.landscape 0 ./.vim 2.0M ./bts_sw/airscale5g-xeon/ABI..

Linux 2022.05.09

[Linux] Chrony 설정

Chrony는 NTP의 단점을 개선하여 나온 프로토콜. 먼저 Chrony가 구동중인지 확인합니다. systemctl status chrony Active 상태인 것을 확인 할 수 있습니다. timedatectl 입력 시 아래와 같이, System Clock synchronized : no면 연결할 서버 설정을 해줘야합니다. vi /etc/chrony.conf server time.bora.net iburst의 iburst는 동기화 시간을 단축시켜주는 옵션값입니다. timedatectl set-timezone Asia/Seoul systemctl chrony restart timedatectl 입력 시, 아래와 같이 나오면 정상적으로 완료 되었음을 알 수 있다. 위에 설정된 것과 같이 server time..

Linux 2022.04.22

[Linux] sha256sum 유효성 검증

다운로드 받은 파일이 정상적으로 다운로드가 되었는지 확인을 위해 유효성 검증이 필요하다. 먼저 Test용으로 파일 생성 후, sha256sum 해시 생성 및 검증 touch test.sh sha256sum test.sh > test.txt sha256sum --check test.txt [root@test test]# sha256sum test.sh > test.txt [root@test test]# sha256sum --check test.txt test.sh: OK OK 로 나오면 검증이 정상적으로 완료되었음 알려준다.

Linux 2022.04.22

[Linux] Apache Install

설치 환경 CentOS 8 64bit 먼저 설치하고자 하는 Server에 yum update 진행 update 완료 후, yum -y install httpd 를 설치한다. 전 이미 설치가 되어있기 때문에, Already Installed로 뜹니다. 설치 후, 시작해줍니다. ps -ef | grep httpd 로 실행 중인 프로세스 확인이 가능합니다. port 설정을 해줍니다. inet 위치의 ip 확인 후, 웹에서 접속해 보면 정상적으로 설치 된 것을 확인 할 수 있습니다. ifconfig 명령어가 듣지 않으시면, yum -y install net-tools 하시고 해당 명령어 사용하시면 됩니다. 또, ip -a 를 사용하셔도 됩니다.

Linux 2022.02.14
반응형