1. 파일 찾기 # find / -name 파일명 -type f 2. 파일 찾기 (대소문자 무시) # find / -iname 파일명 -type f 3. 디렉토리 찾기 # find / -name 디렉토리명 -type d 4. 디렉토리 찾기 (대소문자 무시) # find / -iname 디렉토리명 -type d
분류 전체보기
yum으로 ownCloud업데이트후 "이 ownCloud 인스턴스는 현재 점검모드입니다. 시간이 걸릴수도 있습니다."라는 문구와 함께 접속이 되지 않을경우 대처방법 # vi /var/www/html/owncloud/config/config.php # 'maintenance' => true (변경전) # 'maintenance' => false (변경후) 출처 : http://binsoopark.tistory.com/116
1. yum 저장소 리스트 보기 # yum repolist 2. epel, remi 저장소 추가 remi 저장소는 epel 저장소 의존성이 있음. 따라서 epel 저장소 먼저 설치후 remi 저장소를 설치해야됨 2-1. epel 저장소 추가 # yum install epel-release 2-2. remi 저장소 추가 remi 저장소에는 최신버전의 패키지가 저장되어 있습니다. 기본 저장소에는 오래된 버전이 올라온 경우가 많아 최신 버전 패키지가 필요할 경우 remi 저장소를 설치하게 됩니다. - centos 5 : https://rpms.remirepo.net/enterprise/remi-release-5.rpm - centos 6 : https://rpms.remirepo.net/enterprise/r..
파이썬으로 작성된 glances는 CPU, 메모리, 네트워크 디스크와 프로세스 정보통계를 보여준다. https://nicolargo.github.io/glances/ 1. rpm download # rpm -ivh http://epel.mirror.net.in/epel/6/i386/epel-release-6-8.noarch.rpm 2. yum clean # yum clean all 3. yum update # yum update 4. galnces install # yum install glances 5. run # glances -t 5 5초 단위로 업데이트
1. PLEX를 사용중 새로운 업데이트 확인 2-1. 링크 다운로드 (rpm) 및 SFTP로 서버 업로드(FileZilla사용) 2-2. wget 다운로드 # wget http://downloads.plexapp.com/plex-media-server/0.9.8.18.290-11b7fdd/plexmediaserver-0.9.8.18.290-11b7fdd.x86_64.rpm 3. yum업데이트 # yum update 4. plexmediaserver stop # systemctl stop plexmediaserver 5. rpm update # yum localupdate plexmediaserver-1.4.4.3495-edef59192.x86_64.rpm 6. plexmediaserver start # ..