프로그래밍
-
ubuntu (14.04) 에서 php 업데이트 하기프로그래밍/Etc 2018. 12. 9. 15:05
도쿠위키를 설치하려다가 다음과 같은 에러가 나와서 설치가 중단되었다. The installer found some problems, indicated below. You can not continue until you have fixed them. Your PHP version 5.5.9-1ubuntu4.26 is lower than the needed 5.6.0. You need to upgrade your PHP install. 도쿠위키를 설치하기 위해서는 PHP 버전이 적어도 5.6 은 되어야 한다고 해서 중간에 아래와 같이 PHP 업데이트를 진행하였다. PPA(Personal Package Archive) 라는 개인 패키지 아카이브를 사용해서 (블로그 참조) 업데이트를 진행하였다. 유분투에서 PH..
-
리눅스(ubuntu)에 postgreSQL 설치하기프로그래밍/DB 2018. 11. 24. 19:32
리눅스에 postgreSQL 설치한 과정을 정리해두겠다. apt-get install로 아래와 같이 패키지 설치를 한다. sudo apt-get install postgresql postgresql-contrib # sudo apt-get install postgresql postgresql-contribReading package lists... DoneBuilding dependency treeReading state information... DoneThe following packages were automatically installed and are no longer required: duplicity librsync1 python-lockfileUse 'apt-get autoremove' t..
-
shell script 작성법 - if문 사용법 (기본 사용법)프로그래밍/Linux 2018. 11. 12. 11:02
기본 사용법 if [ 조건식 ]; then // if문 시작 ~elif ~else ~fi 또는 if [ 조건식 ]then // if문 시작 ~elif ~else ~fi // if문 종료 if 와 [ 사이는 반드시 한 칸을 띄어써야 한다. 조건식에 들어가는 조건은 &&(and) 나 ||(or) 로 연결하여 사용 가능하다 다양한 조건을 연결하여 사용하는 예시 if [ $is_sorted_file -eq 0 ] && [ $today_cnt -gt 0 ] && [ $today_cnt_sorted -eq 0 ]; then echo "there is new today news:"$entry elif [ $is_sorted_file -gt 0 ]; then echo "this file is sorted file:"$..