컴퓨터
-
Centos에 transmission 설치컴퓨터 2011. 9. 13. 12:18
Centos에 transmission RPM 설치 참고 포스팅 : http://shapeace.tistory.com/160 설치 yum -y install intltool* libevent* RHEL/CentOS 5 cd /etc/yum.repos.d/ wget http://geekery.altervista.org/geekery-el5.repo RHEL/CentOS 6 cd /etc/yum.repos.d/ wget http://geekery.altervista.org/geekery-el6.repo yum install transmission* (참고 : http://geekery.altervista.org/dokuwiki/doku.php) * 아이디 비밀번호 생성 useradd -m transmissio..
-
간단 iptables 설정컴퓨터 2011. 9. 12. 15:16
iptables -I INPUT -p tcp -s 1.1.1.0/24 -j ACCEPT 1.1.1.x 대역을 사용하는 모든 아이피에 모든 tcp 포트를 연다 iptables -I INPUT -p tcp --dport 3306 -s 1.1.1.0/24 -j ACCEPT 1.1.1.x 대역을 사용하는 모든 아이피에 3306 tcp 포트를 연다 iptables -I INPUT -p tcp --dport 80 -j ACCEPT 모든 아이피 대역에 대하여 tcp 80포트를 연다 iptables -D INPUT -p tcp --dport 3306 -s 2.2.2.2 -j ACCEPT 방화벽에서 해당 조건을 삭제 (추가와 같은 커맨드에 -D만 다름) service iptables save 설정값 저장 service ..
-
Centos 에서 smb 설정컴퓨터 2011. 9. 12. 11:45
* Samba Server 개요 - MS Windows 에서 Linux 의 파일시스템에 접근, 읽고 쓰기 위해서 필요함. * Samba Server 설치 (CentOS 6.0 기준) - yum install samba (2011.08.15 현재 samba 3.5 버전 설치됨) * Samba Server 설정 - 설정은 /etc/samba/smb.conf 파일에서 이루어짐. # [global] : 전역 환경설정 # ;과 # 모두 주석을 의미한다고 함. [global] # workgroup : 윈도우의 작업그룹명과 동일해야 함. # dos charset : 윈도우의 캐릭터셋 # unix charset : 리눅스의 캐릭터셋 # server string : 윈도우 탐색기에 보이는 리눅스시스템 명 # guest ..
-