목록Linux (49)
낭만 프로그래머
설치 1. http://yum.postgresql.org/ 를 접속하여 버전을 확인 2. 저장소 설치 rpm -Uvh https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm 3. 설치 가능 패키지 확인 yum list postgres* 4. 패키지 설치 yum install postgresql96-server postgresql96-contrib postgresql96-devel 5. 링크 생성 ln -s /usr/pgsql-9.6/bin/pg_config /usr/bin/pg_config 6. DB 초기화 service postgresql-9.6 initdb 7. 서비스 시작 ..
Windows에서 그림판과 같은 프로그램인 kolourpaint 를 설치 해보자kolourpaint를 별도로 설치하는 법이 있는 듯 하나 이번에는 패키지로 되어 있는 kdegraphics를 설치하자아래는 패키지가 포함하고 있는 프로그램 목록이다 Graphics applications, including * gwenview (an image viewer) * kamera (digital camera support) * kcolorchooser (a color chooser) * kolourpaint4 (an easy-to-use paint program) * kruler (screen ruler and color measurement tool) * ksnapshot (screen capture utilit..
VI 편집기를 사용하다가 보면 줄번호가 필요할 때가 있다그 경우에는 VI 편집기 사용중 ESC를 눌러서 : set number 를 입력하자. 만일 줄번호를 없애고 싶을 경우에는 ESC를 누른후 : set nonumber 를 입력하자 : set number : set nonumberm 매번 : set number를 입력하기 귀찬다고 한다면 자신의 홈 디렉토리에 .vimrc 파일을 생성하여 set number를 입력하자 vi .vimrc
Building th main Guest Additional module [실패] 1. 커널 업데이트 yum update kernel* reboot 2. 필요 패키지 설치 yum groupinstall "Development Tools" Building the OpenGL support modules..... [실패] 1. VBoxLinuxAdditions.run 실행전에 아래를 실행 cd /usr/src/kernels/2.6.32-431.3.1.el6.x86_64/include/drm ln -s /usr/include/drm/drm.h drm.h ln -s /usr/include/drm/drm_sarea.h drm_sarea.h ln -s /usr/include/drm/drm_mode.h drm_mod..
공식 사이트 : http://wiki.x2go.org/doku.php 1. epel 설치 # wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -Uvh epel-release-6-8.noarch.rpm 1. The correct fix is to update your SSL certificates. # yum upgrade ca-certificates --disablerepo=epel # yum install epel-release -y 3. 필요 패키지 설치 # yum -y install fuse fuse-libs 4. fuse, sshfs 설치 # yum install fuse sshfs 5. x2g..
CentOS 6.x 버전에서 Eclipse가 자주 죽는 문제가 발생했다 아래와 같이 문제를 해결~~ eclipse.ini 파일에 아래 내용을 추가 -Dorg.eclipse.swt.internal.gtk.cairoGraphics=false
64bit 운영체제에서 가끔식 32bit c++ 컴파일을 사용할 때가 있다 아래 라이브러리를 설치 하자 # yum install glibc.i686 libgcc.i686 libstdc++.i686 glibc-devel.i686