본문 바로가기
IT/Linux&Unix

Freebsd 초기설정

by 아키다 2018. 12. 26.

     Freebsd 초기설정








1. SSH로 접속해서 root 권한을 얻을 수 있도록 /etc/group 파일 수정하기

 # vi /etc/ssh/sshd.config

 

port 22     17번라인 #주석이 있다면 제거


PermitRootLogin yes 36번줄 #주석이 있다면 제거 no 라면 yes


PasswordAuthentication yes 61번줄 #주석이 있다면 제거 no 라면 yes



# vi /etc/group

# 아래와 같이 추가해 준다

wheel:*:0:root,[허용할 계정]

2. 시스템 업데이트

# freebsd-update fetch

# freebsd-update install

# reboot

# uname -a

3. pkg 설치 후 업데이트

# pkg

# pkg update

4. Ports Collection 업데이트

처음 실행하는 경우

# portsnap fetch

# portsnap extract

두번째 이후로 실행하는 경우

# portsnap fetch

# portsnap update

5. gnuls 설치

# pkg install gnuls

6. vim-lite 설치

# pkg install vim-lite

7. X윈도우 관련 패키지 설치 안하도록 설정

# vi /etc/make.conf

OPTIONS_UNSET=X11

8. 한글 설정 / ls 컬러 적용

# vi /etc/csh.cshrc

setenv LANG ko_KR.UTF-8

setenv LC_ALL ko_KR.UTF-8


alias ls gnuls -N --color=auto
alias l gnuls -l -N --color=auto
alias ll gnuls -al -N --color=auto
alias lld gnuls -ald -N --color=auto

 

alias vi vim

alias fn find / -name


set autolist

set autoexpand


set prompt = "%B`whoami`%b@`hostname`[%~]#"

9. Tab 키 누르면 관련 리스트 보여주기

# vi /.cshrc

set autolist

set autoexpand

10. vim 설정

# vi /root/.vimrc

set encoding=utf-8
set termencoding=euc-kr
set fileencodings=utf-8,euc-kr
set number
syntax on



출처: http://youmust.kr/index.php?mid=board_UZSA69&document_srl=2115

댓글