Directory /etc/sysconfig

From 탱이의 잡동사니
Revision as of 14:02, 22 May 2017 by Pchero (talk | contribs) (Created page with "== Overview == /etc/sysconfig 디렉토리 내용 정리. == Basic == Red hat 계열에서 사용하는 init script 디렉토리이다. /etc/init.d/* 혹은 service 명령어...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

/etc/sysconfig 디렉토리 내용 정리.

Basic

Red hat 계열에서 사용하는 init script 디렉토리이다. /etc/init.d/* 혹은 service 명령어로 실행하는 스크립트들은 기본적으로 여기 디렉토리에 위치한 프로그램 스크립트를 실행하고 프로그램을 시작한다. 즉, 프로그램마다 특별히 설정되어야 하는 기본 설정값들이 있다면 여기 스크립트에 설정하면 되는 것이다.

Debian/Ubuntu 계열에서는 /etc/default 디렉토리를 사용한다.

  • /etc/sysconfig/keyboard
$ cat /etc/sysconfig/keyboard 
KEYTABLE="dk"
MODEL="pc105"
LAYOUT="dk"
KEYBOARDTYPE="pc"
  • /etc/default/keyboard
$ cat /etc/default/keyboard 
# Check /usr/share/doc/keyboard-configuration/README.Debian for
# documentation on what to do after having modified this file.

# The following variables describe your keyboard and can have the same
# values as the XkbModel, XkbLayout, XkbVariant and XkbOptions options
# in /etc/X11/xorg.conf.

XKBMODEL="pc105"
XKBLAYOUT="dk"
XKBVARIANT=""
XKBOPTIONS=""

# If you don't want to use the XKB layout on the console, you can
# specify an alternative keymap.  Make sure it will be accessible
# before /usr is mounted.
# KMAP=/etc/console-setup/defkeymap.kmap.gz

See also