bash�� ����̷��� ������ ���� ���ϵ��� �����ؾ� �Ѵ�.
- /etc/bashrc���� �ý��� �Ը��� alias��� �Լ����� ����ִ�. - /etc/profile���� �ý��� �Ը��� ȯ�� ������ ���� ���α����� ����ִ�. - $HOME/.bashrc���� ����ڰ� ������ alias��� �Լ����� �ִ�. - $HOME/.bash_profile���� ����ڰ� ������ ȯ�� ������ ���� ���α����� ����ִ�. - $HOME/.bash_logout���� �α� �ƿ��� �� ����� �ൿ�� ����ִ�. - $HOME/.inputrc���� Ű ����(binding)�� ��Ÿ ������� �ִ�.���� ���ϵ��� �Ʒ��� ���� �ξ���. ù ��°�� ���� �߿��� /etc/profile �̴�. �� ������ �̾����� ���� ������ ���� �ǵ��� ������ �ý����� ���� Ư���� �����ϱ� ���� ���δ�.
# /etc/profile # �ý��� �Ը��� ȯ�� �� ���� ���α�. # �Լ��� alias�� /etc/bashrc�� ������ �Ѵ�. # �� ������ ������ ���� Ư���� ���Ѵ�. # # o �н� # o ������Ʈ # o �� ���� ȯ�� ������ # o �÷� ls # o less�� Ư�� # o Ű���� ���� # # ����ڵ��� ������ $HOME/.bash_profile�� �����ؼ� �� ������ # ������ �����ϰ� �� ���� �ְ�, �ٸ� Ư���� �߰��� ���� �ִ�. # �߰� �н� ����(set a decent path) echo $PATH | grep X11R6 > /dev/null if [ $? = 1 ] ; then # add entries to the path PATH="$PATH:/usr/X11R6/bin:$HOME/bin:." fi # ����ڿ��� �α��� ������ �ƴ��� �˷��ش�. �α��� ���̸� Ǫ�� ��, # �ƴϸ� ��ȫ�� ������Ʈ�� ����, ��Ʈ�� ���� ������Ʈ�� ����. USER=`whoami` if [ $LOGNAME = $USER ] ; then COLOUR=44 else COLOUR=45 fi if [ $USER = 'root' ] ; then COLOUR=41 fi # ^[ ��� ��¥ esc Ű�� ����. PS1='^[[$COLOUR;37;1m$HOSTNAME:^[[37;40;1m\w\$ ' PS2="Continue> " # core dump�� ������ �ʴ´�. ulimit -c 0 # umask ���� if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then umask 002 else umask 022 fi # �� ���� ������ USER=`id -un` LOGNAME=$USER MAIL="/var/spool/mail/$USER" EDITOR=jed HOSTNAME=`/bin/hostname` HISTSIZE=1000 HISTFILESIZE=1000 export PATH PS1 PS2 USER LOGNAME MAIL EDITOR HOSTNAME HISTSIZE HISTFILESIZE # �÷� ls�� ��� eval `dircolors /etc/DIR_COLORS -b` export LS_OPTIONS='-F -s -T 0 --color=tty' # less�� ��� �°� �ٲ۴�. LESS='-M-Q' LESSEDIT="%E ?lt+%lt. %f" LESSOPEN="| lesspipe.sh %s" VISUAL=jed LESSCHARSET=latin1 export LESS LESSEDIT LESSOPEN VISUAL LESSCHARSET # Ű���嵵 ��� �����. /sbin/kbdrate -s -r 16 -d 500 for i in /etc/profile.d/*.sh ; do if [ -x $i ]; then . $i fi done
������ /etc/bashrc ������ ����.
# /etc/bashrc # �ý��� �Ը��� �Լ���� alias�� # ȯ�� ������ ����� ������ /etc/profile�� �ξ�� �Ѵ�. alias which="type -path" alias d="ls" alias dir="d"
������ .bashrc �����̴�.
# $HOME/.bashrc # �ý��� �Ը�� ���ǵ� �͵��� �����Ѵ�. if [ -f /etc/bashrc ]; then . /etc/bashrc fi # �Ʒ��� ����ڿ��� ��-�α��� ���� �ִٰ� �˷��ֱ� ���� �ʿ��ϴ�. COLOUR=45 # ^[ ��� ��¥ Esc ���ڸ� ������ �Ѵ�. PS1='^[[$COLOUR;37m$USER:^[[37;40m\w\$ ' # alias�� alias cp='cp -i' alias l=less alias lyx='lyx -width 900 -height 700' alias mv='mv -i' alias rm='rm -i' alias x=startx # �� ���� ������ �Լ��� inst() # ���� ������ .tar.gz ���� ������ ��ġ�Ѵ�. { gzip -dc $1 | tar xvf - } cz() # .zip ���� ������ ���� ����� ����Ѵ�. { unzip -l $* } ctgz() # .tar.gz ���� ������ ���� ����� ����Ѵ�. { for file in $* ; do gzip -dc ${file} | tar tf - done } tgz() # gzip�� tar�� ���� ������ �����. { name=$1 ; tar -cvf $1 ; shift tar -rf ${name} $* gzip -S .tgz ${name} }
������ .bash_profile �����̴�.
# $HOME/.bash_profile # ����ڰ� ���� ȯ��� ���� ���α��� # �� ���Ͽ��� /etc/profile�� ���ǿ� �켱�ϴ� ����� ���� ������ �ִ�. # alias�� �Լ����� �����Ѵ�. if [ -f ~/.bashrc ]; then . ~/.bashrc fi # PS1 ������ �ٽ� �����Ѵ�. if [ $USER = 'root' ] ; then COLOUR=41 else COLOUR=44 fi # ^[ ��� ��¥ Esc�� ����. PS1='^[[$COLOUR;37;1m$HOSTNAME:^[[37;40;1m\w\$ ' export PS1
������ .bash_logout �����̴�.
# $HOME/.bash_logout clear
������ .inputrc �����̴�.
# $HOME/.inputrc # Ű ���� "\e[1~": beginning-of-line "\e[3~": delete-char "\e[4~": end-of-line # (F1 .. F5) are "\e[[A" ... "\e[[E" "\e[[A": "info \C-m" set bell-style visible # beep ���� ���� �ʴ´�. set meta-flag On # 8 ��Ʈ �Է��� ��� (i.e, accented set convert-meta Off # 8 ��Ʈ ���ڸ� ��ȯ���� �ʴ´�. set output-meta On # 8 ��Ʈ ���ڸ� ����� ǥ���Ѵ�. set horizontal-scroll-mode On set show-all-if-ambiguous On xterm�� ����� X11 ���� ���α����� �齺���̽��� delete Ű�� ����� �۵��ϵ��� �ϱ� ���ؼ��� �Ʒ��� �۾��� �ʿ��ϴ�. - �Ʒ��� ������ �ڽ��� .xinitrc�� �ִ´�. usermodmap=$HOME/.Xmodmap xmodmap $usermodmap - �Ʒ��� ������ �ڽ��� .Xmodmap�� ���Խ�Ų��. keycode 22 = BackSpace keycode 107 = Delete �̷��� �ؼ� �ܼ��� ����� ���� ��������, xterm�� �����Ѵ�. - �Ʒ��� ������ .Xdefaults�� �ִ´�. xterm*VT100.Translations: #override <Key>BackSpace: string(0x7F)\n\ <Key>Delete: string(0x1b) string("[3~")\n\ <Key>Home: string(0x1b) string("[1~")\n\ <Key>End: string(0x1b) string("[4~")\n\ Ctrl<Key>Prior: string(0x1b) string("[40~")\n\ Ctrl<Key>Next: string(0x1b) string("[41~") nxterm*VT100.Translations: #override <Key>BackSpace: string(0x7F)\n\ <Key>Delete: string(0x1b) string("[3~")\n\ <Key>Home: string(0x1b) string("[1~")\n\ <Key>End: string(0x1b) string("[4~")\n\ Ctrl<Key>Prior: string(0x1b) string("[40~")\n\ Ctrl<Key>Next: string(0x1b) string("[41~")
������ �� �ʿ��ϸ� bash(1)�� readline(3)�� �Ŵ��� �������� ���� �ٶ���. ��� ���� ���α��� ��Ȯ�� �۵��ϸ������ ������� ���ƾ� �Ѵ�. ���� ��� xterm���� joe�� �����Ű�� �� ���� Ű�� �ۿ����� ���� ���̴�. rxvt������ ����������. �̷� ���� termcap�� ������� �ҹ��� �ִ�.
���� �ٸ� ���� ������ �����ϱ� ����, �÷� ls�� ���� ����� ����� �� �ִ�. �̷��� �Ϸ��� �Ʒ��� ����� /etc/profile�� �߰��ؾ� �Ѵ�.
eval `dircolors /etc/DIR_COLORS -b` export LS_OPTIONS='-F -T 0 --color=tty'�� �� ���� /etc/DIR_COLORS�� �غ�� ����ǥ�� �����ϴ� LS_COLORS ȯ�� ������ �����ϴ� ���̴�. ����: �� ����� rxvt�� Ư�� ���������� ����� �۵����� �ʴµ�, ���ڵ� �� ����� ��. ��� xterm ���� ���� ������ ����. �Ƹ� rxvt ���� � ȯ�濡���� ȯ���� ��Ȯ�� �������� ���ϵ��� �ϴ� ���װ� �ִ� �� �ϴ�.
�� Ź���� ������(pager)�� �Ϲ� �ؽ�Ʈ ���� �� �ƴ϶� gzip���� ����� �����̳�, tar�� zip���� ������ ����, �Ŵ��� ������ � �� �� �ִ�. less�� ������ �� �ܰ�� �̷������.
- less���� �̵� Ű�� ������, �Ʒ��� ���� .lesskey��� �ƽ�Ű ������ �ڽ��� Ȩ ������ �־�� �Ѵ�. ^[[A back-line ^[[B forw-line ^[[C right-scroll ^[[D left-scroll ^[OA back-line ^[OB forw-line ^[OC right-scroll ^[OD left-scroll ^[[6~ forw-scroll ^[[5~ back-scroll ^[[1~ goto-line ^[[4~ goto-end ^[[7~ goto-line ^[[8~ goto-end �������� lesskey��� ������ �����Ѵ�. �� ������ Ű ������ ���� .less ��� ���� ������ ����� ����. - �Ʒ� ������ /usr/bin/lesspipe.sh�� ����.
#!/bin/sh # �� ������ 'less'�� ��ó�����̴�. # �� ������ LESSOPEN="|lesspipe.sh %s" ��� ȯ�� ������ �����Ǿ��� # �� ���ȴ�. lesspipe() { case "$1" in *.tar) tar tf $1 2>/dev/null ;; # .tar�� .tgz ������ ������ ����. *.tgz|*.tar.gz|*.tar.Z|*.tar.z) tar ztf $1 2>/dev/null ;; *.Z|*.z|*.gz) gzip -dc $1 2>/dev/null ;; # ���� ������ ����� ����. *.zip) unzip -l $1 2>/dev/null ;; # ���� ������ ����. *.arj) unarj -l $1 2>/dev/null ;; *.rpm) rpm -q -p -i -l $1 2>/dev/null ;; *.1|*.2|*.3|*.4|*.5|*.6|*.7|*.8|*.9|*.n|*.man) FILE=`file -L $1` FILE=`echo $FILE | cut -d ' ' -f 2` if [ "$FILE" = "troff" ]; then groff -s -p -t -e -Tascii -mandoc $1 fi ;; *) FILE=`file -L $1` ; # ���� ������ ��� ���� ���� �����Ѵ�. FILE1=`echo $FILE | cut -d ' ' -f 2` FILE2=`echo $FILE | cut -d ' ' -f 3` if [ "$FILE1" = "Linux/i386" -o "$FILE2" = "Linux/i386" \ -o "$FILE1" = "ELF" -o "$FILE2" = "ELF" ]; then strings $1 fi ;; esac } lesspipe $1
�������� chmod 755 lesspipe.sh�ؼ� ���� �����ϰ� �����.
- ���� �� ���� /etc/profile�� �߰��Ѵ�. LESS="-M-Q" # long prompt, silent LESSEDIT="%E ?lt+%lt. %f" # edit top line LESSOPEN="| lesspipe.sh %s" # filter VISUAL=jed # �⺻ ������-���ϴ� ������. LESSCHARSET=latin1 # �ʿ��ϸ� ���� ���ڸ� ����.���ڰ� ��Ż���ƿ� ��� �ְ� ISO 8859/1 ���� ������ ���� �ͱ� ������ LESSCHARSET ������ ��ƾ���� �ߴ�. �ٸ� ���� ������� �̷��� �������� �ʴ� ���� ����.
�� ���� �̸ƽ� ���������� ����� ���� ����(syntax highlighting)�� ���� ������ ���� ���� ���·� ��ġ�ȴ�. �� ��� �Ʒ��� ������ �ڱ� Ȩ ������ .emacs ���Ͽ� ��� �Ѵ�.
(global-font-lock-mode t) (setq font-lock-maximum-decoration t)�� ������ X11������ �۵��Ѵ�. �̸ƽ��� ������ �ʿ信 �°� ����̴� ����� ã�� ���ؼ��� ������ �̸ƽ� ���� �������� ã�ƺ��� �ٶ���. �̸ƽ��� ����� �����Ϸ��� ���� �� �ɸ� ���� �ִ�.
/usr/bin �ؿ� jmacs�� jstar, jpico ���� joe�� �ɺ��� ��ũ�Ǿ� �ִ��� �ƴϸ� ���� ���� ���Ϸ� �Ǿ� �ִ��� Ȯ���� ���ƾ� �Ѵ�. ������ ���� ���Ϸ� �Ǿ� �ִٸ�, �� ���ϵ� ��� �ɺ��� ��ũ�� �Ἥ ��ũ ������ �Ƴ� �� �ִ�.
~# cd /usr/bin /usr/bin# ln -sf joe jmacs ; ln -sf joe jstar ; ln -sf joe jpico�������� /usr/lib/joe/joerc�� �ڱ� Ȩ ������ .joerc��� �����ϰ�, ������ �����ϸ� �ȴ�.
���ڴ� �� ������ �����Ѵ�. ���ڰ� �ٶ�� ����� �ְ�, �̸ƽ��� ���� �۰� ������ ����. �� �ٸ� �����͵��� ����� ���� �䳻�� �� �ִ�. ���ڰ� �ٴϴ� ������ ���� ����ڵ��� VMS�� �ý��� �������� EDT ����ϰ� jed�� ���� �;��Ѵ�.
.jedrc�� /usr/lib/jed/lib/* �� ���� �����̴�. .jedrc�� /usr/lib/jed/lib�� jed.rc�� ����/�����ؼ� ���� �ȴ�. - jed�� �� ���� Ű�� ����� ������ �Ϸ��� /usr/lib/jed/lib/defaults.sl ������ ���� () = evalfile("linux"); ��� �� �� �� �־��ָ� �ȴ�. - /usr/lib/jed/lib/linux.sl�� �����Ѵ�. Info_Directory = "/usr/info" ��� ���� �ּ��� ǥ�ø� �����, /bin/mail�� UCB_Mailer = �ڿ� �߰��Ѵ�. - jed�� EDT(Ȥ�� �ٸ� ������)�� �䳻������ �����ϴ� ���� ����. .jedrc ���� �� �ٸ� �����ϸ� �ȴ�. ���� Ű �е��� '+'�� ���� �ϳ� ��� ���� ������ ���쵵�� �Ϸ���, �Ʒ� ������ .jedrc�� "() = evalfile("edt")"��� �� �Ʒ��� �߰��Ѵ�. unsetkey("\eOl"); unsetkey("\eOP\eOl"); setkey("edt_wdel", "\eOl"); setkey("edt_uwdel", "\eOP\eOl"); - xjed�� ���� Ű �е带 �Ἥ EDT�� �䳻������ �Ϸ��� �Ʒ��� ������ .Xmodmap�� �����Ѵ�. keycode 77 = KP_F1 keycode 112 = KP_F2 keycode 63 = KP_F3 keycode 82 = KP_F4 keycode 86 = KP_Separator �������� /etc/X11/XF86Config�� �Ʒ� �� ���� ���ԵǾ� �ִ��� Ȯ���ϵ��� �Ѵ�. # ServerNumLock # must be commented out XkbDisable �� ������ XFree 3.2�� ����ȴ�. ������ ǥ�� �̱��� Ű���带 ���� �ʴ´ٸ�, "XkbDisable"�� �������� ��� �� ���� ���� ������ �����. �� ������ ���� �ذ��ؾ� �Ѵ�. - xjed�� ������ ��� �°� �Ϸ��� �Ʒ��� ���� ���� .Xdefaults�� �߰��ϸ� �ȴ�. xjed*Geometry: 80x32+150+50 xjed*font: 10x20 xjed*background: midnight blue
�� ���� �������� ��Ű���� ���Ե� xjed.doc�� �ִ�.
TeTeX �������� ������ �ִٰ� �����ϵ��� ����. ���⼭�� �� ������ ����Ѵ�.
- �ڱⰡ ���� �� ���� ������ ��Ģ�� �����Ϸ���, /usr/lib/texmf/texmf/tex/generic/config/language.dat ������ �����ϰ�, ���� ������ �����Ų��. ~# texconfig init ; texconfig hyphen - LaTeX ��Ű���� �߰��Ϸ��� /usr/lib/texmf/texmf/tex/latex/ �Ʒ��� ������ �߰��� ������ texhash ������ �����ؼ� TeTeX�� ���ο� ��Ű���� �ν��� �� �ֵ��� �ؾ� �Ѵ�. - dvips ������ �ٲٷ��� /usr/lib/texmf/texmf/dvips/config/config.ps. ������ �����ؾ� �Ѵ�. �⺻ �ػ� ���� ���� xdvi���� ������ �شٴ� ���� ���ο� �α� �ٶ���. xdvi�� �����ų ������ ��Ʈ�� ����� ���� �����ٸ�, .Xdefault �ȿ� �Ʒ� �� ���� ������ �ȴ�. XDvi*mfmode:
Ŀ���� PPP + TCP/IP�� �����ϵ��� ������ �Ǿ� �ְ�, ������(loopback)�� �����ϸ�, pppd ��Ű���� ����� ��ġ�ߴٰ� ����. (�� �䱸������ �⺻������ �Ǿ� �־�� �Ѵ�) PPP�� �۵��ϵ��� �ϴ� ����� ��)�������� �����ϰų� ��)�ڵ� ���� ���α��� ���� �� ������ �ִ�. ���� ���� �ɼ��� ����.
�ڽ��� ISP(���ͳ� ���� ������)�� �Ʒ��� ���ٰ� ����.
- ��ȭ ��ȣ: 1234567 - ���� ����: 123.231.112.111 - ���� ����: mbox.supernet.edu - ������: supernet.edu - ���� ȣ��Ʈ �̸�:<url url="http://www.supernet.edu" name="www.supernet.edu"> - ����� �̸�: John - �н�����: _Loo%ny �� �������� �����ϱ� ���ؼ��� �Ʒ��� ���� ���� �ؾ� �Ѵ�. - �Ʒ� ������ ISP�� �����ϱ� ���� ���� /usr/local/bin/ppp-on ���Ϸ� �����Ѵ�. #!/bin/sh # ppp-on: #ISP�� �����ϴ� ��ũ��Ʈ INIT=ATX3 # �ڱ� �� �°� ����. PHONE=1234567 /usr/sbin/pppd connect "/usr/sbin/chat '' $INIT OK ATDP$PHONE CONNECT '' " user John �������� chmod 755 /usr/local/bin/ppp-on �ؼ� ���� �����ϰ� �Ѵ�.Ȥ�� �ڽ��� ISP�� PAP ���������� ���� �ʴ´ٸ�, �Ʒ��� ��ũ��Ʈ�� ��� �Ѵ�.
#!/bin/sh # ppp-on: #ISP�� �����ϴ� ��ũ��Ʈ INIT=atx3 # �ڱ� �� �°� ����. PHONE=1234567 /usr/sbin/pppd connect "/usr/sbin/chat '' $INIT OK ATDT$PHONE \ CONNECT '' 'ogin' John 'word' _Loo%ny ''" /dev/modem 38400 \ modem defaultroute - �Ʒ� ������ ppp ������ �����ϱ� ���� ���� /usr/local/bin/ppp-off ���Ͽ� ����. #!/bin/sh # ppp-off DEVICE=ppp0 if [ -r /var/run/$DEVICE.pid ]; then kill -INT `cat /var/run/$DEVICE.pid` if [ ! "$?" = "0" ]; then echo "removing stale $DEVICE pid file." rm -f /var/run/$DEVICE.pid ; exit 1 fi echo "$DEVICE link terminated" ; exit 0 fi # link not active echo "$DEVICE link is not active" ; exit 1 ���� chmod 755 /usr/local/bin/ppp-off�� ���� �����ϰ� �Ѵ�. - /etc/ppp/options�� �Ʒ��� ���� ����. # /etc/ppp/options /dev/modem 38400 lock crtscts modem asyncmap 0 remotename <url url="http://www.supernet.edu" name="www.supernet.edu"> defaultroute - ISP�� PAP ���������� ���� (��κ��� ����), /etc/ppp/pap-secrets ���Ͽ� �Ʒ��� ���� ����. # /etc/ppp/pap-secrets # username remotehost secret John <url url="http://www.supernet.edu" name="www.supernet.edu"> _Loo%ny - /etc/resolv.conf�� �����Ѵ�. # /etc/resolv.conf search supernet.edu nameserver 123.231.112.111 - /etc/sendmail.cf�� �����Ѵ�. DS�� �����ϴ� ���� ã�Ƽ� �Ʒ��� ���� �����. DSmbox.supernet.edu��! ���� ���ٸ�, �� ������ PPP�� �� �� �ִ�. ������ PPP-HOWTO�� ������ �غ� �صα� �ٶ���. ���� ������ �� ���� �ʹ� ����. ������, �� �°� ������ �ϵ��� �� �Ϸ� ���� �� �ִ� ���� ��Ű���� �ִ�. �Ʒ� �ּҿ��� ezppp ��Ű���� ���� �ٿ���� ����. www.serv.net/~cameron/ezppp/index.html
POP �������� ������ �ƿ����� fetchpop�� fetchmail ���� POP Ŭ���̾�Ʈ�� ��� �Ѵ�. �ڽ��� PPP ������ LAST ���ɿ� ������ ���δٸ� fetchmail�� ����� ���̴�. �� Ŭ���̾�Ʈ���� �����ϴ� ����� �Ʒ��� ����.
- fetchpop: ó�� �����ų �� �� ���� �ȳ��� �� �� �ִ�. ������ ����ϸ� ������ ������. - fetchmail: �Ʒ��� .fetchmailrc ������ ���� �ȴ�. # $HOME/.fetchmailrc poll mbox.supernet.edu with protocol pop3; user john there with password _Loo%ny is john here mda "/usr/bin/procmail -f fetchmail"������ ���� �ʿ� ���� ���� �ִ�. chmod 600 .fetchmailrc�� �㰡���� �־�� �ϸ�, �㰡���� �ٸ��� �Ǿ� ������ fetchmail�� ������� �ʴ´�.
���� ī�� ���� ���� ���ؼ� X �����찡 ����� �۵��ϰ� ����� ����, ������ ������ �����ϰ� �ȴ�. � ������ �������� ���� ����ϴ� ������ �Ŵ����� ���� �ٸ���. ��� ��쿡�� �ڽ��� Ȩ ������ �ִ� �ϳ��� �� �̻��� �ƽ�Ű ������ ���������ν�, ������ ��ġ�� �ȴ�. �� ���� ������ �Ŵ����� ��쿡�� �Ʒ��� ����.
- fvwm: /etc/X11/fvwm/system.fvwmrc�� Ȩ ������ .fvwmrc��� �����ϰ�, �� ������ ���캸�鼭 �ڱ�� ���� ������ �Ѵ�. �̸� ����ִ� system.fvwmrc�� �ణ ����ġ�� �ܼ��ؼ� fvwm�� ����� ����� Ȱ������ ���Ѵ�. - fvwm95-2: /etc/X11/fvwm95-2/fvwm2rc95�� �ڽ��� Ȩ ������ .fvwm2rc95��� ������ �� �����Ѵ�. �� ������ ����� �Ǹ��ϴ�. - TheNextLevel: �� �Ŵ����� �����ϱⰡ ���� ��ٷӴ�. /etc/X11/TheNextLevel/.*�� Ȩ ������ �����ϰ�, �����ؼ� ���캻 �ڿ� �ڱ�� �µ��� �ٲٵ��� �Ѵ�. ���� ���� ���캼 ������ .fvwm2rc.defines�̴�. �ƿ �ùٸ� .xinitrc�� ������ �־�� �Ѵ�. �Ʒ� ���� ����. #!/bin/sh # $HOME/.xinitrc # �� ���� Ű�� �����ϰ� �����Ѵ�. usermodmap=$HOME/.Xmodmap xmodmap $usermodmap xset s noblank # ��ũ�� ���̹��� ����. xset s 300 2 # 5�� �Ŀ� ��ũ�� ���̹��� �۵��Ѵ�. xsetroot -solid "medium blue" & # rxvt�� �� ���� ������, ���װ� �� ���� �ִ�. # - home, end Ű�� �νĵ��� �ʴ´�. # - backspace�� delete�� �ֿܼ��� ó�� �۵����� �ʴ´�. # - ȯ���� ������ ����� ��ӹ��� ���Ѵ�. # - �Ϲ������� ȯ�濡 ������ �ִ�. # ���� ���� ��쿡 xterm�� �� ����. ������ mc ���� �� ���� # �÷� ���� ���α��� �����Ű��� rxvt�� �ְ���. xterm -ls -bg black -fg white -sb -sl 500 -j -ls -fn 10x20 \ -fb 10x20bold -title "Color xterm" -geometry 80x25+150+0 & fvwm95-2
������ ���迡 ������, ��Ʈ���� �ʿ��ϴٸ� g77 ��� ��Ʈ��-C ���� ���α��� f2c�� ����Ʈ-������ yaf77�� ���� ���� ����.
yaf77�� ftp.unc.edu/pub/Linux/devel/languages/fortran/yaf77-1.4.tgz
�� �� �̷� ����Ʈ���� ���� �� �ִ�.
���ο� ����ڰ� ó�� �α��� ���� ���� ���� �� ���� ���� ���ϵ��� �غ��� �δ� ���� ����. bashrc, bash_profile, bash_logout, inputrc, less, xinitrc, fvwmrc, fvwm2rc95, Xmodmap, Xdefaults, jedrc, joerc, emacs ���ϵ��� /ect/skel�� �ε��� ����.
(����: ���� ���� ������ ���ڴ� �� ���� �̸� ���� ��('.')�� ����´�.) .pinerc�� ������ ������ ���� ���ٴ� �Ϳ� �����ؾ� �Ѵ�. �ּ��� user-domain, smtp-server, nntp-server ���� ����� �����Ǿ����� Ȯ���� ����.