site : alpine linux
부팅후 아래와 같이 설치 진행
ip link set eth0 up
setup-alpine
layout [none] >> us
variant[] >> us
... [eth] >> [enter]
... [dhcp]>> [enter]
... network configuration? [no] >> [enter]
root password >>
Retype password >>
Timezone >>
proxy [none] >> [enter]
...
disk [noe] >> sda
use it .. >> sys
...
reboot
... booting after ..
setup-xorg-base
vi /etc/apk/repositories
..community enable
apk update
apk add dbus
rc-service dbus start
rc-update add dbus
apk add openbox tint2 xf86-video-intel xf86-video-vesa xf86-video-vmware xf86-input-synaptics xrandr xterm
vi ${HOME}/.xinitrc
exec openbox-session
apk add firefox-esr ( ttf font setup first )
## xterm
vi ${HOME}/.Xdefaults
xterm*foreground: white
xterm*background: black
# nabi
apk add build-base gtk+2.0-dev gtk+3.0-dev
libhangul & nabi build
configure --prefix=/usr
make install
imhangul-2.1.1 ( gtk+2.0 ) configure --prefix=/usr --with-gtk-im-module-dir=/usr/lib/gtk-2.0/2.10.0/immodules
imhangul-3.1.1 ( gtk+3.0 ) configure --prefix=/usr --with-gtk-im-module-dir=/usr/lib/gtk-3.0/3.0.0/immodules
vi ${HOME}/.xinitrc
export LANG=ko_KR.UTF-8
export XIM=nabi
export XIM_PROGRAM=/usr/bin/nabi
export XMODIFIERS="@im=nabi"
export QT_IM_MODULE=xim
export GTK_IM_MODULE=xim
# terminal sakura
( Dependency vte, gtk+2.0 ) install : cd / ; tar xvzf sakura-2.4.2.tar.gz
( Dependency vte3, gtk+3.0 ) install : cd / ; tar xvzf sakura-2.4.2.tar.gz
# sound
echo snd-pcm-oss >> /etc/modules
modprobe snd-pcm-oss
apk add aumix
aumix (set volume settings)
또는
apk add alsa-utils alsa-utils-doc alsa-lib alsaconf
# X ( dpi modify )
vi /etc/X11/xinit/xserverrc
#exec /usr/bin/X -nolisten tcp "$@"
exec /usr/bin/X -dpi 96 -nolisten tcp "$@"
vi ~/.Xdefaults
Xft.dpi: 96
# timezone
echo "Asia/Seoul" > /etc/timezone
apk add tzdata
cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
apk del tzdata