2014년 4월 30일 수요일

freebsd consol screen size change

    280 (0×118) 0x0000001f G 1024x768x32 D   8×16  0xa0000 64k 64k 0xf3000000 3072k

(mode 280 is 1024 x 768 in 32-bit colour and uses a 8×16 font)

This is the mode I want to use, and I want to increase my geometry from 80×25 to 132×60, so I can type the following command to one-time set it:

    vidcontrol -g 132×60 MODE_280 < /dev/console

 /etc/rc.conf file:

    allscreens_flags="-g 132×60 MODE_280"

 /boot/loader.conf file:

    vesa_load="YES"

FreeBSD 10 color csh shell [컬러쉘사용 위한 설정]

 /etc$ cat profile


#csh
setenv LANG ko_KR.UTF-8
setenv LC_ALL ko_KR.UTF-8

#bash
#export LANG=ko_KR.UTF-8
#export LC_ALL=ko_KR.UTF-8

export LSCOLORS=hxgxbxBxHxfxDxHxHxhxhx

root@hostname :/etc # cat csh.cshrc

# $FreeBSD: release/10.0.0/etc/csh.cshrc 50472 1999-08-27 23:37:10Z peter $
#
# System-wide .cshrc file for csh(1).
setenv LANG ko_KR.UTF-8
setenv LC_ALL ko_KR.UTF-8

set prompt="%{\e[32;1m%}%n%{\e[37m%}@%{\e[33m%}%m%{\e[37m%}:%{\e[36m%}%~%{\e[37m%}"\$"%{\e[0m%} "

alias ls        ls -FG

2014년 4월 29일 화요일

/usr/ports 의 make clean 진행


/usr/ports 의 make clean 진행
#!/bin/sh
#
# Search for ports that contain a "work" subdirectory,
# then go into that port directory and perform a
# make clean

for i in `find /usr/ports -name work -type d`
 do
  cd `echo "$i" | sed 's/\/[^\/]*$/\//'`
  make clean
 done



아래는 모두클린
cd /usr/ports && make clean