전체 글 (221) 썸네일형 리스트형 [ Linux ] ERROR 발생 대응 1. CentOS7 # yum lock 에러 대응 # Complete 가 발생할 때까지 반복 kill -9 `ps -ef | grep yum | grep -v grep | awk '{ print $2 }'` 2>&1 | grep usage | sed "s/.*usage.*/Complete/g" # 의존성 에러 설치 안될시 # 의존성 에러가 나는 설치파일 삭제 # yum purge [~~] 2. CentOS8 # ---------------------------------------------------------------------------------------------------- # Failed to download metadata for repo ‘AppStream’ # ------------.. [ Linux ] 매개변수 확장(SHELL PARAMETER EXPANSION) 활용 # 기본적인 변수 값 출력 VAR="This is General Parameter" echo You can't use 'macro parameter character #' in math modeYou can't use 'macro parameter character #' in math mode{VAR} # 변수 값의 문자열 길이 출력 VAR="123456789" echo You can't use 'macro parameter character #' in math modeYou can't use 'macro parameter character #' in math mode{VAR[0]} # 변수 값 배열 요소의 갯수를 반환 VAR=(A B C) echo You can't use 'macro parameter character #' in math modeYou can't use 'macro parameter character #' in math mode{VAR:3} # 변수 값 offset(5번째) 이후 2개만큼의 문자열을 추출 VAR="123456789" echo ${VAR:5:.. [ Linux ] UBUNTU20 설치 [임시작성] [ Linux ] CENTOS7 설치 [임시작성] [ IDE ] VMware Workstation Pro 설치 [ Linux ] HEREDOC 활용 HEREDOC ( Here Document ) 히어독, 히어닥, 히어도큐먼트 [ Linux ] PHP 설치 [ PHP 설치 서버 ] yum install gcc glibc glibc-common gd gd-devel -y yum -y install libxml2-devel yum -y install sqlite-devel yum -y install make mkdir -p /app/install/ wget https://www.php.net/distributions/php-8.0.9.tar.gz -O /app/install/php8.0.9.tar.gz mkdir -p /app/temp/php/8.0.9 tar xvfz /app/install/php8.0.9.tar.gz -C /app/temp/php/8.0.9 --strip-components=1 cd /app/temp/php/8.0.9 mkdir -p /ap.. [ Linux ] WORDPRESS 설치 [ WORDPRESS 설치 서버 ] # 나의 아이피 확인 APACHE_SERVER_IP=$(ifconfig | grep -A 2 ens | grep "inet " | awk '{ print $2 }') # apache mariadb 설치 yum -y install httpd mariadb mariadb-server # php 설치 # php8 설치(https://hmwoo.tistory.com/26) 에서 넘어온 경우 # yum -y install epel-release # yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm # yum -y install php80-php php80-php-mysqlnd을 설치하여 대응한다. yum.. 이전 1 ··· 22 23 24 25 26 27 28 다음 목록 더보기