본문 바로가기
728x90

Research/Linux101

/etc/profile.d/*.sh Fedora 9 QTDIR,QTLIB,QTINC 등의 variable이 어디서 설정되는 지 살펴봄. ~/.bash_profile 을 보면 아래와 같은 내용이 있다. if [ -f ~/.bashrc ]; then . ~/.bashrc fi ~/.bashrc 파일을 보면 아래와 같은 내용이 있다. if [ -f /etc/bashrc ]; then . /etc/bashrc fi /etc/bashrc 파일을 보면 아래와 같은 내용이 있다. if ! shopt -q login_shell ; then # We're not a login shell # Need to redefine pathmunge, it get's undefined at the end of /etc/profile pathmunge () { if !.. 2009. 8. 18.
텔넷: getaddrinfo: localhost Name or service not telnet 127.0.0.1 Trying 127.0.0.1... Connected to localhost.localdomain (127.0.0.1). Escape character is '^]'. getaddrinfo: localhost Name or service not known Connection closed by foreign host. 아마도 이런 문제가 일어나기 이전에 호스트네임을 변경했을 경우가 있을 것이다.hosts 명령어로 호스트네임을 확인한 후, /etc/host 파일에 "127.0.0.1 호스트네임" 을 입력해준다.다시 텔넷접속하면 성공...[출처] 텔넷이 안될때 (getaddrinfo: localhost Name or service not known) (넷 ACK) |작성자 유수 2009. 8. 14.
rewrite mode on 제로보드를 사용하는 경우 rewrite mode를 사용하기 위해서는 httpd.conf의 초기 설정을 수정해야 한다. httpd.conf 파일에 mod_rewrite의 로딩이 포함되어야 한다. 예: LoadModule rewrite_module modules/mod_rewrite.so 디렉토리에 대한 Options 항목에 FollowSymLinks가 포함되거나 All이어야 합니다. Options FollowSymLinks AllowOverride FileInfo Options Indexes FollowSymLinks AllowOverride FileInfo 설정 후에 httpd 을 restart한다. 2009. 8. 13.
Fedora XDMCP 접속 설정 /etc/gdm/custom.conf 을 아래와 같이 수정합니다. [xdmcp] Enable=true Port=177 [security] DisallowTCP=false /etc/hosts.allow 파일에 gdm:* 을 추가 리부팅 2009. 8. 12.
728x90