모든 열린 파일 출력 # lsof | less ( command : 실행한 명령어, pid 프로세스 아이디 , user 실행한 사용자, fd 파일 기술자 , type, device, size, node, name ) 특정 사용자가 연 파일 출력 #lsof -u 유져 | less 특정 포트를 사용하는 프로세스와 파일 정보 보기 #lsof -i TCP:80 특정 ID의 프로세스가 연 파일보기 #lsof -p 15879 틀정 명령어가 연파일보기 #lsof -c httpd
출처 : http://www.thegeekstuff.com/2012/08/fsck-command-examples/1. Filesystem Check on a Disk Partition (http://www.thegeekstuff.com/2011/09/parted-command-examples/) # parted /dev/sda 'print' Number Start End Size Type File system Flags 1 1049kB 106MB 105MB primary fat16 diag 2 106MB 15.8GB 15.7GB primary ntfs boot 3 15.8GB 266GB 251GB primary ntfs 4 266GB 500GB 234GB extended 5 266GB 466GB 200G..
출처 : http://tecadmin.net/install-php-7-apache-2-4-mysql-on-centos-rhel/# # yum install epel-release # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm # rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm # rpm -Uvh http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm# yum install php70w# yum install php70w-mysql php70w-xml php70w-soap php70w-xmlrpc # yum instal..
저장소 설정하기https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist vi /etc/yum.repos.d/MariaDB.repo # MariaDB 5.5 CentOS repository list - created 2016-01-18 14:37 UTC # http://mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/5.5/centos6-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 설치하기 yum install -y MariaDB MariaDB-server ..