RHEL10 시간 동기화 time sync (ntp, manual, hwclock) NTP 시간 동기화 ntp time sync 1. 현재 시간날짜 확인 Check current time & date [root@JJuno ~]# date Mon Jul 23 16:47:42 KST 2018 2. /etc/ntp.conf파일의 server로 시작하는 라인 편집 Edit lines beginning with 'server' at /etc/ntp.conf file [root@JJuno ~]# cat /etc/ntp.conf server time.bora.net 3. ntp서버 재시작 restart ntp service [root@JJuno ~]# service ntpd restart Shutting down ntpd: [ OK ] Starting ntpd: [ OK ] [root@JJuno ~.. System/Linux 2018. 7. 23. 좀비 프로세스 죽이기 Kill zombie process 좀비 프로세스 확인 Check zombie process [root@JJuno ~]# ps -ef | grep defunct | grep -v grep root 35823 36372 0 May04 ? 00:00:00 [ssh] 좀비 프로세스 한번에 죽이기 Kill zombie process [root@JJuno ~]# ps -ef | grep defunct | awk '{print $3}' | xargs kill -9 Verify zombie process killed [root@JJuno ~]# ps -ef | grep defunct | grep -v grep System/Linux 2018. 3. 14. 디스크 사용량 확인 Check disk usage (du) du 옵션설명 -h : human readable format (읽기 쉽게 MB, GB 단위로 표시) -s : summarize (요약, 총 용량만 보여줌) --exclude=PATTERN : exclude PATTERN (PATTERN을 제외시킴) --max-depth=N : directory depth (--max-depth=0 same as --summarize) (최대 디렉토리 깊이) 명령 예제 [root@JJuno ~]# du -sh 36G . 현재 디렉토리의 총 용량을 간단하게 보여줌 [root@JJuno ~]# du -h --max-depth=1 4.0K ./Pictures 29M ./.cache 4.0K ./Desktop 4.0K ./.gvfs 4.0K ./.nautilus 16K ./.t.. System/Linux 2018. 3. 13. 포트 변경 Service Port change (ftp, xrdp, ssh, rsh) 포트 변경 vsftpd [root@JJuno ~]# vi /etc/vsftpd/vsftpd.conf port_enable=YES listen_port=2121 service vsftpd restart (CentOS 6) systemctl restart vsftpd (CentOS 7) xrdp ]# vi /etc/xrdp/xrdp.ini port=342 service xrdp restart (CentOS 6) systemctl restart xrdp.serviec (CentOS 7) ssh ]# vi /etc/ssh/sshd_config Port 2200 service sshd restart (CentOS 6) systemctl restart sshd (CentOS 7) rsh ]# netstat -anp.. System/Linux 2018. 3. 12. df: `/home': Stale file handle df: `/home': Stale file handle NFS 언마운트 후 재마운트 ]# umount -f /home ]# mount -a umount -l /home System/Linux 2018. 3. 12. 네트워크 인터페이스 eth0 통일 Linux에서 LOM1의 인터페이스 명이 배포판, 버전에 따라 em1, eno1 같이 바뀔 때 eth0으로 통일시키는 방법 CentOS 6.9 기준 DVD로 부팅 후 'Welcome to CentOS 6.9!' 화면이 떴을 때 [Tab]키를 누르고 vmlinuz 라인 마지막에 'net.ifnames=0 biosdevname=0' 입력 후 [Enter] System/Linux 2018. 3. 12. sda must have a GPT disk label sda must have a GPT disk label RHEL 6.7 설치 케이스 (RHEL 6.7 Install Case) 2TB 이상 디스크에 OS를 설치할 경우 UEFI로 설치 해야 하는데, 2TB 이상 디스크가 아닌 경우에도 UEFI로 설치를 진행할 때 디스크를 GPT로 변경해야 합니다 Legacy Install의 경우 기본적으로 파티션을 /, /boot, swap 3개의 파티션으로 구성되지만 UEFI Install의 경우 기본적으로 파티션을 /, /boot, /boot/efi, swap 4개의 파티션으로 구성합니다 You must UEFI Install when Over Disk of 2TB size However, if you proceed with UEFI Installations on d.. System/Linux 2018. 3. 12. PDSH Settings Environment: Head, N01, N02 pdsh install ]# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm ]# rpm -Uvh epel-release-6-8.noarch.rpm ]# yum install pdsh pdsh-mod-dshgroup pdsh use ]# pdsh -w n[01-02] uptime ]# pdsh -w n[01-02] wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm ]# pdsh -w n[01-02] rpm -Uvh epel-release-6-8.noarch.rpm ]# pd.. System/Linux 2018. 3. 12. SSH login with Password-Less #ssh-keygen #ssh-copy-id -i [remote-IP] #scp /etc/hosts [remote-IP]:/etc/hosts System/Linux 2018. 3. 12. EPEL repository EPEL(Extra Packages for Enterprise Linux) if not in the Base repository, use epel repository Error: Package: 1:nvidia-kmod-352.93-2.el6.x86_64 (cuda) Requires: dkms # yum install dkms Loaded plugins: fastestmirror, refresh-packagekit, security Setting up Install Process Loading mirror speeds from cached hostfile * base: centos.mirror.cdnetworks.com * extras: centos.mirror.cdnetworks.com * update.. System/Linux 2018. 3. 12. 이전 1 다음 💲 추천 글