System24 디스크 사용량 확인 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. 우분투 관련 Ubuntu IP변경 방화벽 소스리스트 GUI 우분투 관련 기본 설정들 IP 변경 수동으로 IP변경하기 ]# sudo vi /etc/network/interfaces auto eth0 iface eth0 inet static address 150.183.115.80 netmask 255.255.255.0 network 150.183.115.0 broadcast 150.183.115.255 gateway 150.183.115.1 # dns-* options are implemented by the resolvconf package, if installed dns-nameservers 8.8.8.8 방화벽 중지 ]# systemctl disable ufw ]# systemctl stop ufw 소스리스트 수정 기본 소스리스트가 느리기 때문에 daumka.. System/Linux 2018. 3. 12. 갱글리어 아파치 설정 Ganglia Apache httpd ganglia.conf Apache (httpd)가 업데이트 됨에 따라 설정파일 구문의 변경사항이 생김 Apache 버전에 맞게 설정값을 입력해줘야 제대로 동작함 ]# vi /etc/httpd/conf.d/ganglia.conf Allow from all (Apache 2.2) ]# vi /etc/httpd/conf.d/ganglia.conf Require all granted (Apache 2.4) Ganglia 폴더의 소유권을 Apache의 User인 apache로 변경 User가 바뀐 경우 바뀐 User로 변경 ]# ls -lah /usr/share | grep ganglia ]# chown -R apache:apache /usr/share/ganglia ]# ls -lah /usr/share | grep ganglia .. 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. Change Network Profile at Windows Server 2012 R2 Check Network InterfaceIndex or InterfaceAlias Get-NetConnectionProfile Set the Network category with the interface index Set-NetConnectionProfile -InterfaceIndex # -NetworkCategoryPrivate|DomainAuthenticated|Public Or Set the Network category with the interface alias Set-NetConnectionProfile -InterfaceAlias # -NetworkCategoryPrivate|DomainAuthenticated|Public System/Windows 2018. 3. 12. Shell Script Error "/bin/bash^M: bad interpreter" 증상(Symptom) -bash: ./shellscipt.sh: /bin/bash^M: bad interpreter: No such file or directory 해결(Solution) vi -b shellscript.sh :%s/^M//g :wq ※ ^M is typing as "Ctrl+V"+"Ctrl+M", not "Shift + 6"+"M" System/Linux 2018. 3. 12. 이전 1 2 다음 💲 추천 글