목록Linux/CentOS (41)
낭만 프로그래머
Samba 란삼바(samba)는 Windows 운영체제를 사용하는 PC에서 Linux 또는 UNIX 서버에 접속하여 파일이나 프린터를 공유하여 사용할 수 있도록 해 주는 소프트웨어이다. Samba 설치 # yum install samba 계정 등록shareuser 라는 아이디로 계정 생성 후 Samba 계정 등록 # useradd shareuser # passwd shareuser # smbpasswd -a shareuser 공유 디렉토리 설정workgroup을 자신의 워크그룹으로 변경하고 맨 아래에 설정 정보 추가 후 저장 [share] comment = Share Directory path = /home/shareuser public = no writable = yes write list = shar..
1. samba라는 서비스 방화벽 조건에서 제외 firewall-cmd --permanent --zone=public --add-service=sambafirewall-cmd --reload 2. 방화벽 해제systemctl stop firewalld 3. 리부팅시 방화벽 실행 하지 않게 하기systemctl disable firewalld
1. https://nodejs.org/ko/download/ 접속해서 url 확인 하기 2. 다운로드 ( https로 되어 있는 것을 http로 변경 )wget http://nodejs.org/dist/v6.10.2/node-v6.10.2-linux-x64.tar.xz 3. 압축 해제 tar xf node-v6.10.2-linux-x64.tar.xz 4. 위치 이동 mv ./node-v6.10.2-linux-x64 /usr/local/nodejs 5. Path 설정을 위해 profile 수정 vi /etc/profile맨아래에 추가export NODE_HOME=/usr/local/nodejsexport PATH=$PATH:$NODE_HOME/bin source /etc/profile 6. 필요시 서버..
설치 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..
공식 사이트 : 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