BLOG ARTICLE 리눅스 | 2 ARTICLE FOUND

  1. 2007.04.24 리눅스 비프(linux beep)음 제거 2
  2. 2007.04.24 우분투 (Ubuntu) 6.10 서버 (Server) - 네트워크 설정.

우분투 리눅스서 비프음을 없애려 노력하다가 찾은 방법.

아래 방법을 쓰면 모든 프로그램의 비프음이 사라진다고 한다 -.-zz

vi 나 vim 등으로 /etc/profile 파일을 열어서 다음을 추가한다.

echo -ne '\033[11;0]'

신경쓰이고 특히 주변사람들에게 눈치보이는 비프음.. 간단하게 제거되었습니다 -_-bb

'Computer > UNIX and LINUX' 카테고리의 다른 글

우분투 (Ubuntu) 6.10 서버 (Server) - 네트워크 설정.  (0) 2007.04.24
메일 포워딩 세팅  (1) 2006.10.10
Sound Programming  (0) 2006.09.15
AND

오늘은 우분투를 설치하였습니다

페도라나 레드햇 같은 것만 계속 쓰다가 데비안쪽을 쓰니 햇갈리는게 많이 있네요 -.-;;

특히, 서버 버전은 GUI가 없더러군요 -.-;;


고정아이피 설정입니다 :]

azki@ubuntu:~$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
       address xxx.xxx.xxx.78
       netmask 255.255.255.0
       network xxx.xxx.xxx.0
       broadcast xxx.xxx.xxx.255
       gateway xxx.xxx.xxx.1

물론 주소는 상황따라 다르겠지염 (ethX 도.)

DNS 설정은 다음과 같이 합니다 (/etc/resolv.conf 은 처음에 없어서 만들어서 사용하였음.)

azki@ubuntu:~$ cat /etc/resolv.conf
nameserver xxx.xxx.xxx.1
nameserver xxx.xxx.xxx.1

물론 상황에 따라 마음대로, 예를 들면 Kornet의 주소인 168.126.63.1 과 같은 주소.


참고로 DHCP 를 사용한다면.. (유동아이피.)

/etc/network/interfaces 는 이렇게..

auto lo
auto eth0
iface lo inet loopback
iface eth0 inet dhcp

/etc/resolv.conf 는 DHCP 클라이언트가 알아서 해주므로 안해두 된다.

DHCP 클라이언트 설치는

# apt-get 사용시 -
apt-get install dhcp-client
# aptitude 사용시 -
aptitude install dhcp-client

(dhcp-client 가 설치된 경우 실행가능한 명령 'dhclient' 가 부팅시 네트워크 데몬에 의해 실행됨)

기타:
1. 랜카드 감지 확인은 'dmesg' 로 가능.
2. 설정 적용은 '/etc/init.d/networking restart' 나 'ifdown' 후 'ifup' 으로 가능.

'Computer > UNIX and LINUX' 카테고리의 다른 글

리눅스 비프(linux beep)음 제거  (2) 2007.04.24
메일 포워딩 세팅  (1) 2006.10.10
Sound Programming  (0) 2006.09.15
AND