리눅스 시스템 모니터링 top command
# Operation System/Linux2022. 10. 25. 14:40리눅스 시스템 모니터링 top command

top 시스템의 상태 파악(cpu, 메모리, 프로세스) 기본설정은 3초마다 화면갱신 [darksharavim]top top - 13:40:57 up 179 days, 22:28, 2 users, load average: 0.00, 0.02, 0.05 Tasks: 200 total, 1 running, 199 sleeping, 0 stopped, 0 zombie %Cpu(s): 1.4 us, 2.9 sy, 0.0 ni, 95.7 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st KiB Mem : 16266496 total, 8796040 free, 5646192 used, 1824264 buff/cache KiB Swap: 5242876 total, 2562760 free, 2680116 us..

리눅스 NFS구축
# Operation System/Linux2019. 11. 14. 09:41리눅스 NFS구축

설치환경 : centos8 [darksharavim]yum -y install nfs-utils [darksharavim]vi /etc/exports /DATA 2xx.6x.3x.xx8(rw,sync,no_root_squash) [darksharavim]systemctl enable/start rpcbind [darksharavim]systemctl enable/start nfs-server [darksharavim]systemctl enable/start nfs-lock [darksharavim]mount -t nfs [NFS서버 IP]:/DATA /DATA -o nolock,rsize=32768,wsize=32768,tcp,nfsvers=3

image