본문 바로가기

분류 전체보기

(505)
[Solaris] .profile #ident "@(#)profile 1.19 01/03/13 SMI" /* SVr4.0 1.3 */# The profile that all logins get before using their own .profile.trap "" 2 3 export LOGNAME PATHif [ "$TERM" = "" ] then if /bin/i386 then TERM=sun-color else TERM=sun fi export TERM fi# Login and -su shells get /etc/profile services. # -rsh is given its environment in its .profile.alias ll="ls -alF" alias ls="ls -F" set -o vi tty -s && stt..
[Linux] IP세팅 출처 : http://blog.empas.com/holyjohn/18932298Run Level Process 0 시스템의 Shutdown,halt. 1 1인 관리자 모드(Single 모드). 2 멀티유저 로컬 프로세서 데몬.NFS 3 멀티유저 리모트 프로세서 데몬 (일반적인 상태). 4 싱글유저 스테이트 (root만 접속가능) 단 root 화일 시스템만 보임. 5 X 로그인 6 리부팅(reboot). 종료방법 #init 0 #telinit 0 #shutdown -i0 -g0 -y (일반적인종료) #shutdown -h 종료후 halt 상태로 #shutdown -r 리부팅. #init s 싱글상태로 전환 #reboot (리부팅) NetWork Configuration #ifconfig -a -인터페이스 ..
[솔라리스9] PC용 솔라리스9 개발 환경설정 PC용 쏠라리스 개발 환경 만들기.ftp://ftp.sunfreeware.com/pub/freeware/intel/9/gcc-xxx-xxx-intel-local.gzmake-xxx-xxx-intel-local.gzperl-xxx-xxx-intel-local.gzautomake-xxx-xxx-intel-local.gzautoconf-xxx-xxx-intel-local.gzglib-xxx.xxx-intel-local.gzgzip -d *.gzpkgadd -d -----------------------vi .profile# # Copyright (c) 2001 by Sun Microsystems, Inc. # All rights reserved. # # ident "@(#)local.profile 1.10 0..
[linux] Fedora Core 4의 vsftp 설정하기 (standalone) [출처] Fedora Core 4의 vsftp 설정하기 (standalone)|작성자 별종제쿠참고 :http://vsftpd.beasts.org링크 만들기 :ln -s /etc/vsftpd/vsftpd.conf /etc/vsftpdstandard 로 실행 :chkconfig --del vsftpd-xinetd (xinet으로 실행되지 않도록)chkconfig vsftpd on (standalone으로 실행되도록)vi /etc/xinetd.d/vsftpd-xinetd (파일생성)service ftp { disable = yes socket_type = stream wait = no user = root server = /usr/sbin/vsftpd server_args = /etc/vsftpd/vsftpd..
[linux] sshd connection closed되는 경우 제목 : sshd connection closed되는 경우 작성자 : 좋은진호(truefeel) 작성일 : 2006.4.13(목) 리눅스에서 ssh 접속 후 아무 작업을 하지 않고 그대로 두면 Connection reset by peer 메시지와 함께 접속이 끊기는 경우가 발생한다. Read from remote host xxx.xxx.xxx.xxx: Connection reset by peer Connection to xxx.xxx.xxx.xxx closed. ping -i 600 localhost 와 같이 실행시켜둘 수도 있겠다. 아~ 그러나 이거 또한 짜증이 아닌가. 터미널 여러개 띄우고 일하다 보면 깜빡할 수도 있는데, 저걸 여러 창에 실행시켜 두는게 얼마나 귀찮은가. /etc/ssh/sshd_c..
[linux] ssh에 root접속 허용 ssh에 root 접속을 허용한다./etc/ssh/vi sshd_confgPermitRootLogin no# yes -> no 로 바꿔준다./etc/init.d/sshd restartStopping sshd: [ OK ]Starting sshd: [ OK ]--------------
Fedora에서 IPv6 Telnet, FTP 서버 설정 Fedora Core4(그 이전버전도 IPv6가 기본적으로 가능함.. 아마도 Redhat 9.0이상에서는 가능한 것으로 알고 있음)에서는 IPv6 Stack이 설치되어 있어서 IPv6주소와 IPv6 네트워킹환경을 설정해주면 IPv6 통신을 수행할 수 있다.(ping6로 확인가능) 그러나, telnet서버와 ftp서버는 별도의 작은 설정을 더 해주어야지만 v6통신이 가능하다.Fedora에서는 telnet과 vsftp가 설치되어 있을 것이다.(없는 경우 설치)먼저, telnet은 /etc/xinetd.d/telnet 파일에서flags = REUSE로 되어 있는 라인을 flags = REUSE IPv6로 바꾸어주고 xinetd를 다시 restart시킨후 Ipv6로 접속을 수행하면 된다.(/sbin/servic..
[Linux] Telnet 접속 안될때 세팅 - 패도라 패도라 6이면 TELNET 데몬 실행을 Xinetd 를 이용하여 실행 할것이니/etc/hosts.allow 파일에서in.telnetd:ALL또는in.telnetd:접속할 아이피, 접속할아이피,를 추가하여 접속아이피를 열어 줘 보시기 바랍니다./etc/rc.d/init.d/xinetd restart telnet 으로 외부에서 서버에 root 사용자로 접속하도록 하자.-----------------------------------------------------------------------------------1) telnet은 기본적으로 standalone이 아닌 xinetd 모드로 운영이 되므로 xinetd 상에서 운영되는 telnet 스크립트에서 서비스가 가능하도록 설정해야 합니다. 이 스크립트는 ..