Ubuntu (amd64)에서 GitLab 설치 및 설정

GitLab -------------------------------------------------------------------------------- 이 문서는 Ubuntu 64비트 (특히 14.04)에 맞춰서 작성되었음. 32비트라면 아래 링크한 설치 문서를 통해 참고할 것. 32비트 우분투라면 이 문서대로 하면 안 됨. 설치 https://about.gitlab.com/downloads/ https://about.gitlab.com/downloads/#ubuntu1404 sudo apt-get install curl openssh-server ca-certificates postfix // postfix 설치 시 '…

Ubuntu에서 Apache2, MariaDB, php5

Apache2, MariaDB, php5 -------------------------------------------------------------------------------- 뭐 간단.. 아파치 설치 sudo apt-get install apache2 MariaDB 참고 사이트 1 [https://mariadb.com/kb/en/mariadb/installing-mariadb-deb-files/] 참고 사이트 2 [https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=Ubuntu&distro_release=trusty--ubuntu_trusty&version=5.5] sudo apt-get install software-properties-common…

Ubuntu Cross Compile 환경 구성 (gcc)

gcc Cross Compile -------------------------------------------------------------------------------- 이 방법을 이용해 MIPS 및 ARM (none-gnueabi), PowerPC 크로스 컴파일 환경 구성에 성공하였다. ref: http://preshing.com/20141119/how-to-build-a-gcc-cross-compiler/ ref: https://gist.github.com/preshing/41d5c7248dea16238b60 ref: https://www.linux-mips.org/wiki/Toolchains ref: https://gist.github.com/shurizzle/3728481 ref: http://www.ifp.illinois.edu/…

Windows 10에서 125% DPI 설정 시 제대로 표시 안 될 때

125% DPI with Windows 10 -------------------------------------------------------------------------------- 노트북을 이용하다보면 125% DPI 설정을 해야할 수 밖에 없는데, Windows 7에서와 달리 Windows 10에서는 글자가 정상 출력되지 않더라. 이 때 해결하는 방법이다. 출처: Windows 10 레딧 [https://www.reddit.com/r/Windows10/comments/3f7xfk/psa_solution_to_blurry_text_on_125_dpi_in_windows/…

Kali 2에서 ssh 데몬을 부팅과 함께 시작하려면

sshd on Kali Linux 2 -------------------------------------------------------------------------------- update-rc.d -f ssh defaults 와 같은 명령을 이용하면 부팅 시 데몬이 실행된다고 알고 있었는데.. 아무리 해도 안 되더라. 다음과 같은 명령을 이용하면 데몬이 부팅 시 정상적으로 올라오더라. update-rc.d -f ssh enable 2 3 4 5 출처: https://forums.kali.org/showthread.php?…

갑자기 Chrome의 기본 검색엔진이 coldsearch로 나오면

ColdSearch 제거 -------------------------------------------------------------------------------- 분명 아무짓도 안 했는데 1달쯤 전에 난데없이 크롬으로 뭔가를 검색하니까 coldsearch를 거쳐 bing으로 연결되더라. 다음은 이 때 해결하는 방법이다. 1. 가능하다면 각중 악성코드 제거 툴을 먼저 사용해보자. 구글에 검색해보면 여러가지 툴들을 이용한 방법이 나오는데, 젤 위 두가지 툴 정도를 이용해보는게 좋다. * 그래도 제대로 안 되면 다음과 같은…

Hello World

Hello World -------------------------------------------------------------------------------- 첫 시작은 당연히 이거지. 이거 해보겠다고 APM 세팅된 상태에서 Node.js도 깔았음.. ㄱ- 같이 돌려보겠다고 아파치에 프록시 설정도 했고.. 근데 php가 되려 제대로 안 되는듯.. ㅋㅋ;;; 일단은 잘 모르겠으니.. [...] 다음 기회에.. 프록시 설정에 참고한 사이트들. http://garrows.com/blog/running-node-js-and-apache-together-using-mod_proxy/ http://blog.grotesq.com/post/448…