1. 리눅스 설치
2.리눅스 설치 후
인터넷 연결 -> http://www.webkebi.co.kr
-> 직접연결로 설정
3. [root@localhost ~]#
/dev/sdb1 하드디스크를 /etcc 로 마운트 하려면
# cd /
# mkdir etcc
mount /dev/sdb1 /etcc
//mount -o iocharset=cp949 /dev/sdb1 /etcc
cd /etcc
마운트 해제는 umount /etcc
4. 방화벽 복사
fdisk -l
mount /dev/sdb1 /etcc
# cp /etc/sysconfig/iptables /etc/sysconfig/iptables_org
# cp /etcc/backup_org/config/etc/sysconfig/iptables /etc/sysconfig/iptables
[root@centos ~]# /etc/rc.d/init.d/iptabls restart
5.SSH 설정과 실행
1.ssh 가 설치 되었는지 확인
[root@landmoa]# rpm -qa | grep ssh
openssh-4.3p2-19.fc6
openssh-askpass-4.3p2-19.fc6
openssh-server-4.3p2-19.fc6
openssh-clients-4.3p2-19.fc6
[root@landmoa]#
2. ssh 실행 확인
[root@landmoa]# /etc/rc.d/init.d/sshd restart
sshd 를 정지함: [ OK ]
sshd (을)를 시작합니다: [ OK ]
[root@landmoa]#
3. 특정포트로 서비스 하려면
[root@landmoa]# vi /etc/ssh/sshd_config
# possible, but leave them commented. Uncommented options change a
# default value.
#Port 22
Port 1001
#Protocol 2,1
Protocol 2
-- INSERT --
레드헷계열 리눅스는 설치후 아무런설정을 하지 않았다면
root로 ssh를 로그인 가능합니다.
그러므로 root의 직접적인 ssh login은 막고
일반계정으로 접속후 su - root 를 통해 root권한을 획득하여 작업하도록 합니다.
ssh 설정화일을 아래와 같이 열어 PermitRootLogin yes를 no로 변경합니다.
# vi /etc/ssh/sshd_config
PermitRootLogin no
# vi /etc/services
(중략)
ssh 26/tcp
# SSH Remote Login Protocol, 이부분을 원하는 포트 번호로 바꾸어 준다.
ssh 26/udp
# SSH Remote Login Protocol, 이부분을 원하는 포트 번호로 바꾸어 준다.
(하략)
# /etc/rc.d/init.d/xinetd restart
만약 xinetd 가 설치 되지 않았다면
# rpm -qa | grep xinetd //설치 확인
# yum -y install xinetd* //새로 설치
4. 부팅시 자동 실행 - 런레벨 3,4,5로 부팅시에 ssh 데몬 실행
[root@localhost xinetd.d]# chkconfig --level 345 sshd on
5. 재실행
[root@landmoa]# /etc/rc.d/init.d/sshd restart
============================ ============================
여기 부터는 서버를 별도 설치 하지 않아도 putty 등으로
ssh 원격 접속이 가능함
============================ ============================
6. mc 프로그램설치
mc 설치
cd /usr/local/src
wget http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-4.6.1.tar.gz
tar xvfpz mc-4.6.1.tar.gz
#cd mc-4.6.1
# ./configure
# make
# make install
# mc //실행
2.리눅스 설치 후
인터넷 연결 -> http://www.webkebi.co.kr
-> 직접연결로 설정
3. [root@localhost ~]#
/dev/sdb1 하드디스크를 /etcc 로 마운트 하려면
# cd /
# mkdir etcc
mount /dev/sdb1 /etcc
//mount -o iocharset=cp949 /dev/sdb1 /etcc
cd /etcc
마운트 해제는 umount /etcc
4. 방화벽 복사
fdisk -l
mount /dev/sdb1 /etcc
# cp /etc/sysconfig/iptables /etc/sysconfig/iptables_org
# cp /etcc/backup_org/config/etc/sysconfig/iptables /etc/sysconfig/iptables
[root@centos ~]# /etc/rc.d/init.d/iptabls restart
5.SSH 설정과 실행
1.ssh 가 설치 되었는지 확인
[root@landmoa]# rpm -qa | grep ssh
openssh-4.3p2-19.fc6
openssh-askpass-4.3p2-19.fc6
openssh-server-4.3p2-19.fc6
openssh-clients-4.3p2-19.fc6
[root@landmoa]#
2. ssh 실행 확인
[root@landmoa]# /etc/rc.d/init.d/sshd restart
sshd 를 정지함: [ OK ]
sshd (을)를 시작합니다: [ OK ]
[root@landmoa]#
3. 특정포트로 서비스 하려면
[root@landmoa]# vi /etc/ssh/sshd_config
# possible, but leave them commented. Uncommented options change a
# default value.
#Port 22
Port 1001
#Protocol 2,1
Protocol 2
-- INSERT --
레드헷계열 리눅스는 설치후 아무런설정을 하지 않았다면
root로 ssh를 로그인 가능합니다.
그러므로 root의 직접적인 ssh login은 막고
일반계정으로 접속후 su - root 를 통해 root권한을 획득하여 작업하도록 합니다.
ssh 설정화일을 아래와 같이 열어 PermitRootLogin yes를 no로 변경합니다.
# vi /etc/ssh/sshd_config
PermitRootLogin no
# vi /etc/services
(중략)
ssh 26/tcp
# SSH Remote Login Protocol, 이부분을 원하는 포트 번호로 바꾸어 준다.
ssh 26/udp
# SSH Remote Login Protocol, 이부분을 원하는 포트 번호로 바꾸어 준다.
(하략)
# /etc/rc.d/init.d/xinetd restart
만약 xinetd 가 설치 되지 않았다면
# rpm -qa | grep xinetd //설치 확인
# yum -y install xinetd* //새로 설치
4. 부팅시 자동 실행 - 런레벨 3,4,5로 부팅시에 ssh 데몬 실행
[root@localhost xinetd.d]# chkconfig --level 345 sshd on
5. 재실행
[root@landmoa]# /etc/rc.d/init.d/sshd restart
============================ ============================
여기 부터는 서버를 별도 설치 하지 않아도 putty 등으로
ssh 원격 접속이 가능함
============================ ============================
6. mc 프로그램설치
mc 설치
cd /usr/local/src
wget http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-4.6.1.tar.gz
tar xvfpz mc-4.6.1.tar.gz
#cd mc-4.6.1
# ./configure
# make
# make install
# mc //실행
'일상생활 > 우리들의 이야기' 카테고리의 다른 글
남북한의 언어 (0) | 2011.11.20 |
---|---|
와!! 제부도다. (1) | 2010.09.11 |
수지 신봉동 계곡으로 출발 (0) | 2010.08.13 |
서버 재설치 2 (0) | 2009.07.27 |
티스토리에서 처음 글을 써보네요. (0) | 2009.03.26 |