블로그 이미지
훅크선장

카테고리

분류 전체보기 (362)
사진이야기 (23)
펭귄컴퓨팅 (121)
컴퓨터보안 (84)
절름발이 프로그래머 (59)
하드웨어개조 (23)
멀알려줄까 (35)
홈베이킹&홈쿠킹 (2)
잡다한것들 (15)
Total
Today
Yesterday

달력

« » 2024.5
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

공지사항

태그목록

최근에 올라온 글

머 대단한 기술도 아니고, 대단한 지식도 아닌데,
BackTrack 4 버전들(beta, pre, final 버전까지)의 한글화를 했다고 사람들의 주목을 받는 것이 나름 기뻤습니다만,

이제는 만드는 방법도 공유해야 할 것 같습니다. 그래야 많은 사람들이 한국어 관련 내용을 좀 더 많은 CD Booting Linux (Linux Live CD)에 적용할 수 있을 거 같군요.

아래의 내용은 제가 한글화를 하면서 사용한 명령어와 과정을 출력과 함께 수록한 것입니다.

시간을 내서 차근차근 설명을 더 붙여 볼려고 합니다.

BackTrack 4 등을 비롯한 Ubuntu 리눅스 환경에서 추가적인 작업을 하실 분들이 참고하셨으면 좋겠습니다.
(다만, 퍼가거나 참고후 도움이 되었다면, 제 글을 참고했다는 정도만 써주시면 감사하겠고요~, 저도 늘 그렇게 하기 때문에...)

현재는 단순히 과정만 수록한 것이라서, 아는 사람만 알 수 있는 내용입니다.

참고: BackTrack 4 Final 한글판 버전의 VMware 상에서 작업한 것입니다.

부팅후, 준비과정
미리 bt4-final.iso 파일을 복사해놓는다.(부팅과는 별도로)

dhclient eth0 명령어로 네트워크도 접속해 놓아야 한다. (업데이트를 위해서는 반드시 필요)
--------------------------------------------------

root@bt:~# cd
root@bt:~# pwd
/root
root@bt:~# mkdir -p /root/BUILD
root@bt:~# mv bt4-final.iso /root/BUILD/
root@bt:~# cd /root/BUILD
root@bt:~/BUILD# ls
bt4-final.iso
root@bt:~/BUILD# mkdir mnt
root@bt:~/BUILD# mount -o loop bt4-final.iso mnt/
root@bt:~/BUILD# mkdir extract-cd
root@bt:~/BUILD# rsync --exclude=/casper/filesystem.squashfs -a mnt/ extract-cd
root@bt:~/BUILD# mkdir squashfs
root@bt:~/BUILD# mount -t squashfs -o loop mnt/casper/filesystem.squashfs squashfs
root@bt:~/BUILD# mkdir edit
root@bt:~/BUILD# cp -a squashfs/* edit/

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

압축된 파일시스템을 모두 하드디스크로 복사 완료

추가적인 수정을 위해서는, 여기서부터 시작하면 된다.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

root@bt:~/BUILD# cat edit/etc/resolv.conf
nameserver 4.2.2.2
root@bt:~/BUILD# cat edit/etc/hosts
127.0.0.1       localhost
127.0.1.1       bt

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
root@bt:~/BUILD# cat edit/etc/fstab
cat: edit/etc/fstab: No such file or directory
root@bt:~/BUILD# cp /etc/resolv.conf edit/etc/
root@bt:~/BUILD# cp /etc/hosts edit/etc/
root@bt:~/BUILD# cp /etc/fstab edit/etc/
root@bt:~/BUILD# mount --bind /dev/ edit/dev
root@bt:~/BUILD# mount --bind /proc edit/proc
root@bt:~/BUILD# chroot edit

------------------------------------------------------

압축해제된 파일시스템으로 진입

패키지 업데이트 와 설정 수정 하기
---------------------------------------------------------

root@bt:~# apt-get update
Get:1 http://archive.offensive-security.com pwnsauce Release.gpg [489B]
Get:2 http://archive.offensive-security.com pwnsauce Release [9106B]
Get:3 http://archive.offensive-security.com pwnsauce/main Packages [1526kB]
Get:4 http://archive.offensive-security.com pwnsauce/microverse Packages [75.7kB]
Get:5 http://archive.offensive-security.com pwnsauce/macroverse Packages [20.2kB]
Get:6 http://archive.offensive-security.com pwnsauce/restricted Packages [11.9kB]
Get:7 http://archive.offensive-security.com pwnsauce/universe Packages [4562kB]
Get:8 http://archive.offensive-security.com pwnsauce/multiverse Packages [194kB]
Fetched 6400kB in 16s (396kB/s)
Reading package lists... Done
root@bt:~# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be upgraded:
  airoscript exploitdb gerix-wifi-cracker-ng hydra libapache2-mod-php5 libssl-dev libssl0.9.8 mdk3 openssl php-pear php5 php5-cli php5-common php5-mysql
  php5-pgsql php5-sqlite sslstrip
17 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 18.4MB of archives.
After this operation, 53.2kB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://archive.offensive-security.com pwnsauce/main libssl-dev 0.9.8g-10.1ubuntu2.6 [1981kB]
Get:2 http://archive.offensive-security.com pwnsauce/main libssl0.9.8 0.9.8g-10.1ubuntu2.6 [2921kB]
Get:3 http://archive.offensive-security.com pwnsauce/microverse airoscript 2.1-bt5 [79.4kB]
Get:4 http://archive.offensive-security.com pwnsauce/microverse exploitdb 1.0-bt1 [6689kB]
Get:5 http://archive.offensive-security.com pwnsauce/microverse gerix-wifi-cracker-ng 2.0-bt7 [184kB]
Get:6 http://archive.offensive-security.com pwnsauce/microverse hydra 5.40-bt5 [78.7kB]
Get:7 http://archive.offensive-security.com pwnsauce/macroverse php5-cli 5.2.6-4-bt0 [2489kB]
Get:8 http://archive.offensive-security.com pwnsauce/macroverse php5-mysql 5.2.6-4-bt0 [65.9kB]
Get:9 http://archive.offensive-security.com pwnsauce/macroverse php5-sqlite 5.2.6-4-bt0 [34.6kB]
Get:10 http://archive.offensive-security.com pwnsauce/macroverse php5-pgsql 5.2.6-4-bt0 [52.9kB]
Get:11 http://archive.offensive-security.com pwnsauce/macroverse libapache2-mod-php5 5.2.6-4-bt0 [2496kB]
Get:12 http://archive.offensive-security.com pwnsauce/macroverse php5-common 5.2.6-4-bt0 [377kB]
Get:13 http://archive.offensive-security.com pwnsauce/microverse mdk3 6.0-bt0 [207kB]
Get:14 http://archive.offensive-security.com pwnsauce/main openssl 0.9.8g-10.1ubuntu2.6 [399kB]
Get:15 http://archive.offensive-security.com pwnsauce/macroverse php-pear 5.2.6-4-bt0 [337kB]
Get:16 http://archive.offensive-security.com pwnsauce/macroverse php5 5.2.6-4-bt0 [1114B]
Get:17 http://archive.offensive-security.com pwnsauce/microverse sslstrip 0.7-bt0 [32.3kB]
Fetched 18.4MB in 24s (745kB/s)
Preconfiguring packages ...
(Reading database ... 225591 files and directories currently installed.)
Preparing to replace libssl-dev 0.9.8g-10.1ubuntu2.5 (using .../libssl-dev_0.9.8g-10.1ubuntu2.6_i386.deb) ...
Unpacking replacement libssl-dev ...
Preparing to replace libssl0.9.8 0.9.8g-10.1ubuntu2.5 (using .../libssl0.9.8_0.9.8g-10.1ubuntu2.6_i386.deb) ...
Unpacking replacement libssl0.9.8 ...
Preparing to replace airoscript 2.1-bt3 (using .../airoscript_2.1-bt5_all.deb) ...
Unpacking replacement airoscript ...
Preparing to replace exploitdb 1.0-bt0 (using .../exploitdb_1.0-bt1_all.deb) ...
Unpacking replacement exploitdb ...
Preparing to replace gerix-wifi-cracker-ng 2.0-bt5 (using .../gerix-wifi-cracker-ng_2.0-bt7_i386.deb) ...
Unpacking replacement gerix-wifi-cracker-ng ...
Preparing to replace hydra 5.40-bt4 (using .../hydra_5.40-bt5_all.deb) ...
Unpacking replacement hydra ...
Preparing to replace php5-cli 5.2.6-2ubuntu4.5 (using .../php5-cli_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement php5-cli ...
Preparing to replace php5-mysql 5.2.6-2ubuntu4.5 (using .../php5-mysql_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement php5-mysql ...
Preparing to replace php5-sqlite 5.2.6-2ubuntu4.5 (using .../php5-sqlite_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement php5-sqlite ...
Preparing to replace php5-pgsql 5.2.6-2ubuntu4.5 (using .../php5-pgsql_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement php5-pgsql ...
Preparing to replace libapache2-mod-php5 5.2.6-2ubuntu4.5 (using .../libapache2-mod-php5_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement libapache2-mod-php5 ...
Preparing to replace php5-common 5.2.6-2ubuntu4.5 (using .../php5-common_5.2.6-4-bt0_i386.deb) ...
Unpacking replacement php5-common ...
Preparing to replace mdk3 1.0-bt1 (using .../archives/mdk3_6.0-bt0_all.deb) ...
Unpacking replacement mdk3 ...
Preparing to replace openssl 0.9.8g-10.1ubuntu2.5 (using .../openssl_0.9.8g-10.1ubuntu2.6_i386.deb) ...
Unpacking replacement openssl ...
Preparing to replace php-pear 5.2.6-2ubuntu4.5 (using .../php-pear_5.2.6-4-bt0_all.deb) ...
Unpacking replacement php-pear ...
Preparing to replace php5 5.2.6-2ubuntu4.5 (using .../php5_5.2.6-4-bt0_all.deb) ...
Unpacking replacement php5 ...
Preparing to replace sslstrip 0.2-bt0 (using .../sslstrip_0.7-bt0_i386.deb) ...
Unpacking replacement sslstrip ...
Processing triggers for man-db ...
Setting up libssl0.9.8 (0.9.8g-10.1ubuntu2.6) ...

Setting up libssl-dev (0.9.8g-10.1ubuntu2.6) ...
Setting up airoscript (2.1-bt5) ...
Setting up exploitdb (1.0-bt1) ...
Setting up gerix-wifi-cracker-ng (2.0-bt7) ...

Setting up hydra (5.40-bt5) ...
Setting up php5-common (5.2.6-4-bt0) ...
Setting up php5-cli (5.2.6-4-bt0) ...

Setting up libapache2-mod-php5 (5.2.6-4-bt0) ...
Reloading web server config: apache2
Setting up php5-mysql (5.2.6-4-bt0) ...

Setting up php5-sqlite (5.2.6-4-bt0) ...

Setting up php5-pgsql (5.2.6-4-bt0) ...

Setting up mdk3 (6.0-bt0) ...
Setting up openssl (0.9.8g-10.1ubuntu2.6) ...

Setting up php-pear (5.2.6-4-bt0) ...
Installing new version of config file /etc/pear/pear.conf ...
Setting up php5 (5.2.6-4-bt0) ...
Setting up sslstrip (0.7-bt0) ...
Processing triggers for libc6 ...
ldconfig deferred processing now taking place
root@bt:~# apt-get clean
root@bt:~# 

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


한글판에서 진행했더니, 계속적으로 LANG 타입에 관한 문제 에러가 출력되었음.
영문판에서 진행하는 것이 맞는 듯.....

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

root@bt:/# wget http://www.hsd.or.kr/~hook7346/ttf-nanum_1.0-1_all.deb
--2010-01-22 11:16:21--  http://www.hsd.or.kr/~hook7346/ttf-nanum_1.0-1_all.deb
Resolving www.hsd.or.kr... 222.122.72.34
Connecting to www.hsd.or.kr|222.122.72.34|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5410516 (5.2M) [text/plain]
Saving to: `ttf-nanum_1.0-1_all.deb'

100%[==================================================================================================================>] 5,410,516   --.-K/s   in 0.1s

2010-01-22 11:16:23 (37.4 MB/s) - `ttf-nanum_1.0-1_all.deb' saved [5410516/5410516]

root@bt:/# ls
bin  boot  cdrom  dev  etc  home  initrd.img  lib  media  mnt  opt  pentest  proc  root  sbin  srv  sys  tmp  ttf-nanum_1.0-1_all.deb  usr  var  vmlinuz
root@bt:/# dpkg -i ttf-nanum_1.0-1_all.deb
Selecting previously deselected package ttf-nanum.
(Reading database ... 225677 files and directories currently installed.)
Unpacking ttf-nanum (from ttf-nanum_1.0-1_all.deb) ...
Setting up ttf-nanum (1.0-1) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Updating fontconfig cache for /usr/share/fonts/truetype/nanum
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.

root@bt:/# rm -f ttf-nanum_1.0-1_all.deb
root@bt:/# sync
root@bt:/# apt-get install language-pack-ko scim-hangul language-support-ko language-pack-kde-ko language-support-input-ko language-pack-kde-ko-base language-support-fonts-ko language-support-translations-ko language-pack-ko-base language-support-extra-ko kde-i18n-ko ttf-wqy-zenhei ttf-kochi-mincho-naga10 ttf-kochi-gothic-naga10 libarts1c2a libartsc0
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  espeak espeak-data gimp-help-common gimp-help-en gimp-help-ko im-switch kdelibs4c2a libespeak1 libestools1.2 libhangul0 libportaudio0 libscim8c2a nabi
  openoffice.org-help-ko openoffice.org-l10n-common openoffice.org-l10n-ko scim scim-bridge-agent scim-bridge-client-gtk scim-gtk2-immodule
  scim-modules-socket stardict stardict-common stardict-gtk stardict-plugin stardict-plugin-espeak stardict-plugin-festival thunderbird-locale-ko ttf-alee
  ttf-unfonts-extra
Suggested packages:
  kde libarts1-akode imhangul hunspell-dictionary-ko myspell-dictionary-ko openoffice.org-hyphenation-ko openoffice.org2-thesaurus-ko scim-uim scim-pinyin
  scim-chewing scim-m17n scim-prime scim-anthy scim-skk scim-canna scim-tables-additional scim-tables-ja scim-tables-ko scim-tables-zh scim-thai
  ttf-unfonts ttf-arphic-uming
The following NEW packages will be installed:
  espeak espeak-data gimp-help-common gimp-help-en gimp-help-ko im-switch kde-i18n-ko kdelibs4c2a language-pack-kde-ko language-pack-kde-ko-base
  language-pack-ko language-pack-ko-base language-support-extra-ko language-support-fonts-ko language-support-input-ko language-support-ko
  language-support-translations-ko libarts1c2a libartsc0 libespeak1 libestools1.2 libhangul0 libportaudio0 libscim8c2a nabi openoffice.org-help-ko
  openoffice.org-l10n-common openoffice.org-l10n-ko scim scim-bridge-agent scim-bridge-client-gtk scim-gtk2-immodule scim-hangul scim-modules-socket
  stardict stardict-common stardict-gtk stardict-plugin stardict-plugin-espeak stardict-plugin-festival thunderbird-locale-ko ttf-alee
  ttf-kochi-gothic-naga10 ttf-kochi-mincho-naga10 ttf-unfonts-extra ttf-wqy-zenhei
0 upgraded, 46 newly installed, 0 to remove and 0 not upgraded.
Need to get 65.8MB of archives.
After this operation, 164MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://archive.offensive-security.com pwnsauce/main language-pack-kde-ko-base 1:8.10+20081107 [1625kB]
Get:2 http://archive.offensive-security.com pwnsauce/main language-pack-kde-ko 1:8.10+20081107 [2028B]
Get:3 http://archive.offensive-security.com pwnsauce/main language-pack-ko-base 1:8.10+20081107 [945kB]
Get:4 http://archive.offensive-security.com pwnsauce/main language-pack-ko 1:8.10+20081107 [2022B]
Get:5 http://archive.offensive-security.com pwnsauce/main openoffice.org-l10n-common 1:2.4.1-9ubuntu1 [287kB]
Get:6 http://archive.offensive-security.com pwnsauce/main openoffice.org-l10n-ko 1:2.4.1-9ubuntu1 [1325kB]
Get:7 http://archive.offensive-security.com pwnsauce/main thunderbird-locale-ko 1:2.0.0.14+1-0ubuntu2 [182kB]
Get:8 http://archive.offensive-security.com pwnsauce/main gimp-help-common 2.4.1-1 [14.9MB]
Get:9 http://archive.offensive-security.com pwnsauce/main gimp-help-ko 2.4.1-1 [625kB]
Get:10 http://archive.offensive-security.com pwnsauce/main language-support-translations-ko 1:8.10+20081017 [2106B]
Get:11 http://archive.offensive-security.com pwnsauce/main openoffice.org-help-ko 1:2.4.1-9ubuntu1 [8136kB]
Get:12 http://archive.offensive-security.com pwnsauce/main ttf-wqy-zenhei 0.6.26-2ubuntu1 [5738kB]
Get:13 http://archive.offensive-security.com pwnsauce/main libportaudio0 18.1-6 [15.1kB]
Get:14 http://archive.offensive-security.com pwnsauce/main espeak-data 1.39-0ubuntu1 [475kB]
Get:15 http://archive.offensive-security.com pwnsauce/main libespeak1 1.39-0ubuntu1 [128kB]
Get:16 http://archive.offensive-security.com pwnsauce/main espeak 1.39-0ubuntu1 [69.7kB]
Get:17 http://archive.offensive-security.com pwnsauce/main gimp-help-en 2.4.1-1 [878kB]
Get:18 http://archive.offensive-security.com pwnsauce/main im-switch 1.16ubuntu1 [15.4kB]
Get:19 http://archive.offensive-security.com pwnsauce/main kdelibs4c2a 4:3.5.100~0ubuntu1 [1136B]
Get:20 http://archive.offensive-security.com pwnsauce/universe kde-i18n-ko 4:3.5.9-0ubuntu2 [285kB]
Get:21 http://archive.offensive-security.com pwnsauce/universe stardict-common 3.0.1-4ubuntu1 [176kB]
Get:22 http://archive.offensive-security.com pwnsauce/universe stardict-gtk 3.0.1-4ubuntu1 [298kB]
Get:23 http://archive.offensive-security.com pwnsauce/universe stardict 3.0.1-4ubuntu1 [13.5kB]
Get:24 http://archive.offensive-security.com pwnsauce/universe language-support-extra-ko 8.10+20080703 [1804B]
Get:25 http://archive.offensive-security.com pwnsauce/main ttf-unfonts-extra 1.0.1-7ubuntu1 [9679kB]
Get:26 http://archive.offensive-security.com pwnsauce/main ttf-alee 11.5 [751kB]
Get:27 http://archive.offensive-security.com pwnsauce/main language-support-fonts-ko 8.10+20080703 [1808B]
Get:28 http://archive.offensive-security.com pwnsauce/main libscim8c2a 1.4.7-3ubuntu10 [292kB]
Get:29 http://archive.offensive-security.com pwnsauce/main scim-modules-socket 1.4.7-3ubuntu10 [74.5kB]
Get:30 http://archive.offensive-security.com pwnsauce/main scim-gtk2-immodule 1.4.7-3ubuntu10 [86.8kB]
Get:31 http://archive.offensive-security.com pwnsauce/main scim 1.4.7-3ubuntu10 [722kB]
Get:32 http://archive.offensive-security.com pwnsauce/main libhangul0 0.0.8-3 [4081kB]
Get:33 http://archive.offensive-security.com pwnsauce/main scim-hangul 0.3.2-1 [49.7kB]
Get:34 http://archive.offensive-security.com pwnsauce/main nabi 0.99.2-2 [502kB]
Get:35 http://archive.offensive-security.com pwnsauce/main language-support-input-ko 8.10+20080703 [1944B]
Get:36 http://archive.offensive-security.com pwnsauce/main language-support-ko 1:8.10+20080703 [1864B]
Get:37 http://archive.offensive-security.com pwnsauce/main libartsc0 1.5.10-0ubuntu1 [16.7kB]
Get:38 http://archive.offensive-security.com pwnsauce/main libarts1c2a 1.5.10-0ubuntu1 [1060kB]
Get:39 http://archive.offensive-security.com pwnsauce/universe libestools1.2 1:1.2.96~beta-2 [1348kB]
Get:40 http://archive.offensive-security.com pwnsauce/main scim-bridge-agent 0.4.14-2ubuntu5 [85.6kB]
Get:41 http://archive.offensive-security.com pwnsauce/main scim-bridge-client-gtk 0.4.14-2ubuntu5 [50.6kB]
Get:42 http://archive.offensive-security.com pwnsauce/universe stardict-plugin 3.0.1-4ubuntu1 [93.2kB]
Get:43 http://archive.offensive-security.com pwnsauce/universe stardict-plugin-espeak 3.0.1-4ubuntu1 [5572B]
Get:44 http://archive.offensive-security.com pwnsauce/universe stardict-plugin-festival 3.0.1-4ubuntu1 [448kB]
Get:45 http://archive.offensive-security.com pwnsauce/multiverse ttf-kochi-gothic-naga10 1.0.20030809-4 [4772kB]
Get:46 http://archive.offensive-security.com pwnsauce/multiverse ttf-kochi-mincho-naga10 1.0.20030809-4 [5581kB]
Fetched 65.8MB in 1min32s (715kB/s)
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Extracting templates from packages: 100%
Selecting previously deselected package language-pack-kde-ko-base.
(Reading database ... 225688 files and directories currently installed.)
Unpacking language-pack-kde-ko-base (from .../language-pack-kde-ko-base_1%3a8.10+20081107_all.deb) ...
Selecting previously deselected package language-pack-kde-ko.
Unpacking language-pack-kde-ko (from .../language-pack-kde-ko_1%3a8.10+20081107_all.deb) ...
Selecting previously deselected package language-pack-ko-base.
Unpacking language-pack-ko-base (from .../language-pack-ko-base_1%3a8.10+20081107_all.deb) ...
Selecting previously deselected package language-pack-ko.
Unpacking language-pack-ko (from .../language-pack-ko_1%3a8.10+20081107_all.deb) ...
Selecting previously deselected package openoffice.org-l10n-common.
Unpacking openoffice.org-l10n-common (from .../openoffice.org-l10n-common_1%3a2.4.1-9ubuntu1_all.deb) ...
Selecting previously deselected package openoffice.org-l10n-ko.
Unpacking openoffice.org-l10n-ko (from .../openoffice.org-l10n-ko_1%3a2.4.1-9ubuntu1_all.deb) ...
Selecting previously deselected package thunderbird-locale-ko.
Unpacking thunderbird-locale-ko (from .../thunderbird-locale-ko_1%3a2.0.0.14+1-0ubuntu2_all.deb) ...
Selecting previously deselected package gimp-help-common.
Unpacking gimp-help-common (from .../gimp-help-common_2.4.1-1_all.deb) ...
Selecting previously deselected package gimp-help-ko.
Unpacking gimp-help-ko (from .../gimp-help-ko_2.4.1-1_all.deb) ...
Selecting previously deselected package language-support-translations-ko.
Unpacking language-support-translations-ko (from .../language-support-translations-ko_1%3a8.10+20081017_all.deb) ...
Selecting previously deselected package openoffice.org-help-ko.
Unpacking openoffice.org-help-ko (from .../openoffice.org-help-ko_1%3a2.4.1-9ubuntu1_all.deb) ...
Selecting previously deselected package ttf-wqy-zenhei.
Unpacking ttf-wqy-zenhei (from .../ttf-wqy-zenhei_0.6.26-2ubuntu1_all.deb) ...
Selecting previously deselected package libportaudio0.
Unpacking libportaudio0 (from .../libportaudio0_18.1-6_i386.deb) ...
Selecting previously deselected package espeak-data.
Unpacking espeak-data (from .../espeak-data_1.39-0ubuntu1_i386.deb) ...
Selecting previously deselected package libespeak1.
Unpacking libespeak1 (from .../libespeak1_1.39-0ubuntu1_i386.deb) ...
Selecting previously deselected package espeak.
Unpacking espeak (from .../espeak_1.39-0ubuntu1_i386.deb) ...
Selecting previously deselected package gimp-help-en.
Unpacking gimp-help-en (from .../gimp-help-en_2.4.1-1_all.deb) ...
Selecting previously deselected package im-switch.
Unpacking im-switch (from .../im-switch_1.16ubuntu1_all.deb) ...
Selecting previously deselected package kdelibs4c2a.
Unpacking kdelibs4c2a (from .../kdelibs4c2a_4%3a3.5.100~0ubuntu1_all.deb) ...
Selecting previously deselected package kde-i18n-ko.
Unpacking kde-i18n-ko (from .../kde-i18n-ko_4%3a3.5.9-0ubuntu2_all.deb) ...
Selecting previously deselected package stardict-common.
Unpacking stardict-common (from .../stardict-common_3.0.1-4ubuntu1_all.deb) ...
Selecting previously deselected package stardict-gtk.
Unpacking stardict-gtk (from .../stardict-gtk_3.0.1-4ubuntu1_i386.deb) ...
Selecting previously deselected package stardict.
Unpacking stardict (from .../stardict_3.0.1-4ubuntu1_all.deb) ...
Selecting previously deselected package language-support-extra-ko.
Unpacking language-support-extra-ko (from .../language-support-extra-ko_8.10+20080703_all.deb) ...
Selecting previously deselected package ttf-unfonts-extra.
Unpacking ttf-unfonts-extra (from .../ttf-unfonts-extra_1.0.1-7ubuntu1_all.deb) ...
Selecting previously deselected package ttf-alee.
Unpacking ttf-alee (from .../archives/ttf-alee_11.5_all.deb) ...
Selecting previously deselected package language-support-fonts-ko.
Unpacking language-support-fonts-ko (from .../language-support-fonts-ko_8.10+20080703_all.deb) ...
Selecting previously deselected package libscim8c2a.
Unpacking libscim8c2a (from .../libscim8c2a_1.4.7-3ubuntu10_i386.deb) ...
Selecting previously deselected package scim-modules-socket.
Unpacking scim-modules-socket (from .../scim-modules-socket_1.4.7-3ubuntu10_i386.deb) ...
Selecting previously deselected package scim-gtk2-immodule.
Unpacking scim-gtk2-immodule (from .../scim-gtk2-immodule_1.4.7-3ubuntu10_i386.deb) ...
Selecting previously deselected package scim.
Unpacking scim (from .../scim_1.4.7-3ubuntu10_i386.deb) ...
Selecting previously deselected package libhangul0.
Unpacking libhangul0 (from .../libhangul0_0.0.8-3_i386.deb) ...
Selecting previously deselected package scim-hangul.
Unpacking scim-hangul (from .../scim-hangul_0.3.2-1_i386.deb) ...
Selecting previously deselected package nabi.
Unpacking nabi (from .../nabi_0.99.2-2_i386.deb) ...
Selecting previously deselected package language-support-input-ko.
Unpacking language-support-input-ko (from .../language-support-input-ko_8.10+20080703_all.deb) ...
Selecting previously deselected package language-support-ko.
Unpacking language-support-ko (from .../language-support-ko_1%3a8.10+20080703_all.deb) ...
Selecting previously deselected package libartsc0.
Unpacking libartsc0 (from .../libartsc0_1.5.10-0ubuntu1_i386.deb) ...
Selecting previously deselected package libarts1c2a.
Unpacking libarts1c2a (from .../libarts1c2a_1.5.10-0ubuntu1_i386.deb) ...
Selecting previously deselected package libestools1.2.
Unpacking libestools1.2 (from .../libestools1.2_1%3a1.2.96~beta-2_i386.deb) ...
Selecting previously deselected package scim-bridge-agent.
Unpacking scim-bridge-agent (from .../scim-bridge-agent_0.4.14-2ubuntu5_i386.deb) ...
Selecting previously deselected package scim-bridge-client-gtk.
Unpacking scim-bridge-client-gtk (from .../scim-bridge-client-gtk_0.4.14-2ubuntu5_i386.deb) ...
Selecting previously deselected package stardict-plugin.
Unpacking stardict-plugin (from .../stardict-plugin_3.0.1-4ubuntu1_i386.deb) ...
Selecting previously deselected package stardict-plugin-espeak.
Unpacking stardict-plugin-espeak (from .../stardict-plugin-espeak_3.0.1-4ubuntu1_i386.deb) ...
Selecting previously deselected package stardict-plugin-festival.
Unpacking stardict-plugin-festival (from .../stardict-plugin-festival_3.0.1-4ubuntu1_i386.deb) ...
Selecting previously deselected package ttf-kochi-gothic-naga10.
Unpacking ttf-kochi-gothic-naga10 (from .../ttf-kochi-gothic-naga10_1.0.20030809-4_all.deb) ...
Selecting previously deselected package ttf-kochi-mincho-naga10.
Unpacking ttf-kochi-mincho-naga10 (from .../ttf-kochi-mincho-naga10_1.0.20030809-4_all.deb) ...
Processing triggers for man-db ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
/usr/bin/mandb: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
manconv: can't set the locale; make sure $LC_* and $LANG are correct
Processing triggers for menu ...
Setting up openoffice.org-l10n-common (1:2.4.1-9ubuntu1) ...
Setting up gimp-help-common (2.4.1-1) ...
Setting up gimp-help-ko (2.4.1-1) ...

Setting up ttf-wqy-zenhei (0.6.26-2ubuntu1) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Updating fontconfig cache for /usr/share/fonts/truetype/wqy
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
Regenerating fonts cache... done.

Setting up libportaudio0 (18.1-6) ...

Setting up espeak-data (1.39-0ubuntu1) ...
Setting up libespeak1 (1.39-0ubuntu1) ...

Setting up espeak (1.39-0ubuntu1) ...
Setting up gimp-help-en (2.4.1-1) ...

Setting up im-switch (1.16ubuntu1) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

Setting up kdelibs4c2a (4:3.5.100~0ubuntu1) ...
Setting up stardict-common (3.0.1-4ubuntu1) ...

Setting up stardict-gtk (3.0.1-4ubuntu1) ...
Setting up stardict (3.0.1-4ubuntu1) ...
Setting up language-support-extra-ko (8.10+20080703) ...
Setting up ttf-unfonts-extra (1.0.1-7ubuntu1) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Updating fontconfig cache for /usr/share/fonts/truetype/unfonts
No CIDSupplement specified for Bom-Regular, defaulting to 0.
No CIDSupplement specified for JamoSora-Regular, defaulting to 0.
No CIDSupplement specified for Yetgul-Regular, defaulting to 0.
No CIDSupplement specified for Penheulim-Regular, defaulting to 0.
No CIDSupplement specified for Gungseo-Regular, defaulting to 0.
No CIDSupplement specified for Taza-Regular, defaulting to 0.
No CIDSupplement specified for Pen-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for Pilgi-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for Graphic-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for Graphic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for Shinmun-Regular, defaulting to 0.
No CIDSupplement specified for JamoNovel-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for Pilgi-Bold, defaulting to 0.
No CIDSupplement specified for JamoDotum-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for JamoBatang-Regular, defaulting to 0.

Setting up ttf-alee (11.5) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
No CIDSupplement specified for Bom-Regular, defaulting to 0.
No CIDSupplement specified for JamoSora-Regular, defaulting to 0.
No CIDSupplement specified for Yetgul-Regular, defaulting to 0.
No CIDSupplement specified for Penheulim-Regular, defaulting to 0.
No CIDSupplement specified for Gungseo-Regular, defaulting to 0.
No CIDSupplement specified for Taza-Regular, defaulting to 0.
No CIDSupplement specified for Pen-Regular, defaulting to 0.
No CIDSupplement specified for Bandal, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for Pilgi-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for Graphic-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for EunjinNakseo, defaulting to 0.
No CIDSupplement specified for Graphic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for Shinmun-Regular, defaulting to 0.
No CIDSupplement specified for Guseul, defaulting to 0.
No CIDSupplement specified for JamoNovel-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for Pilgi-Bold, defaulting to 0.
No CIDSupplement specified for JamoDotum-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for Eunjin, defaulting to 0.
No CIDSupplement specified for JamoBatang-Regular, defaulting to 0.
Updating fontconfig cache for /usr/share/fonts/truetype/alee
Regenerating fonts cache... done.

Setting up language-support-fonts-ko (8.10+20080703) ...
Setting up libscim8c2a (1.4.7-3ubuntu10) ...

Setting up scim-modules-socket (1.4.7-3ubuntu10) ...
Setting up libhangul0 (0.0.8-3) ...

Setting up nabi (0.99.2-2) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

Setting up libartsc0 (1.5.10-0ubuntu1) ...

Setting up libarts1c2a (1.5.10-0ubuntu1) ...

Setting up libestools1.2 (1:1.2.96~beta-2) ...

Setting up stardict-plugin (3.0.1-4ubuntu1) ...
Setting up stardict-plugin-espeak (3.0.1-4ubuntu1) ...
Setting up stardict-plugin-festival (3.0.1-4ubuntu1) ...
Setting up ttf-kochi-gothic-naga10 (1.0.20030809-4) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
/usr/bin/defoma-font -vt reregister-all /etc/defoma/hints/ttf-kochi-gothic-naga10.hints
Registering /usr/share/fonts/truetype/kochi/kochi-gothic-subst.ttf..
Registering -kochi-gothic-medium-r-normal--0-0-0-0-c-0-iso10646-1..
Registering -kochi-gothic-medium-r-normal--0-0-0-0-c-0-jisx0212.1990-0..
Registering -kochi-gothic-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0..
Registering -kochi-gothic-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0..
Registering -kochi-gothic-medium-r-normal--0-0-0-0-c-0-iso8859-1..
Updating fontconfig cache for /usr/share/fonts/truetype/kochi
No CIDSupplement specified for Bom-Regular, defaulting to 0.
No CIDSupplement specified for JamoSora-Regular, defaulting to 0.
No CIDSupplement specified for Yetgul-Regular, defaulting to 0.
No CIDSupplement specified for Penheulim-Regular, defaulting to 0.
No CIDSupplement specified for Gungseo-Regular, defaulting to 0.
No CIDSupplement specified for Taza-Regular, defaulting to 0.
No CIDSupplement specified for Pen-Regular, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular, defaulting to 0.
No CIDSupplement specified for Bandal, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for Pilgi-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for Graphic-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for EunjinNakseo, defaulting to 0.
No CIDSupplement specified for Graphic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for Shinmun-Regular, defaulting to 0.
No CIDSupplement specified for Guseul, defaulting to 0.
No CIDSupplement specified for JamoNovel-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for Pilgi-Bold, defaulting to 0.
No CIDSupplement specified for JamoDotum-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for Eunjin, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular-JaH, defaulting to 0.
No CIDSupplement specified for JamoBatang-Regular, defaulting to 0.

Setting up ttf-kochi-mincho-naga10 (1.0.20030809-4) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
/usr/bin/defoma-font -vt reregister-all /etc/defoma/hints/ttf-kochi-mincho-naga10.hints
Registering /usr/share/fonts/truetype/kochi/kochi-mincho-subst.ttf..
Registering -kochi-mincho-medium-r-normal--0-0-0-0-c-0-iso10646-1..
Registering -kochi-mincho-medium-r-normal--0-0-0-0-c-0-jisx0212.1990-0..
Registering -kochi-mincho-medium-r-normal--0-0-0-0-c-0-jisx0201.1976-0..
Registering -kochi-mincho-medium-r-normal--0-0-0-0-c-0-jisx0208.1983-0..
Registering -kochi-mincho-medium-r-normal--0-0-0-0-c-0-iso8859-1..
Updating fontconfig cache for /usr/share/fonts/truetype/kochi
No CIDSupplement specified for Bom-Regular, defaulting to 0.
No CIDSupplement specified for JamoSora-Regular, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular-JaH, defaulting to 0.
No CIDSupplement specified for Yetgul-Regular, defaulting to 0.
No CIDSupplement specified for Penheulim-Regular, defaulting to 0.
No CIDSupplement specified for Gungseo-Regular, defaulting to 0.
No CIDSupplement specified for Taza-Regular, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular, defaulting to 0.
No CIDSupplement specified for Pen-Regular, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular, defaulting to 0.
No CIDSupplement specified for Bandal, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for Pilgi-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for Graphic-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for EunjinNakseo, defaulting to 0.
No CIDSupplement specified for Graphic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for Shinmun-Regular, defaulting to 0.
No CIDSupplement specified for Guseul, defaulting to 0.
No CIDSupplement specified for JamoNovel-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for Pilgi-Bold, defaulting to 0.
No CIDSupplement specified for JamoDotum-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for Eunjin, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular-JaH, defaulting to 0.
No CIDSupplement specified for JamoBatang-Regular, defaulting to 0.

Setting up scim-gtk2-immodule (1.4.7-3ubuntu10) ...

Setting up language-pack-kde-ko (1:8.10+20081107) ...
Setting up language-pack-kde-ko-base (1:8.10+20081107) ...

Setting up language-pack-ko (1:8.10+20081107) ...
Setting up language-pack-ko-base (1:8.10+20081107) ...
Generating locales...
  ko_KR.UTF-8... done
Generation complete.

Setting up thunderbird-locale-ko (1:2.0.0.14+1-0ubuntu2) ...
Setting up language-support-translations-ko (1:8.10+20081017) ...
Generating locales...
  ko_KR.UTF-8... up-to-date
Generation complete.

Setting up openoffice.org-l10n-ko (1:2.4.1-9ubuntu1) ...

Setting up kde-i18n-ko (4:3.5.9-0ubuntu2) ...
Setting up scim (1.4.7-3ubuntu10) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

Setting up scim-hangul (0.3.2-1) ...
Setting up language-support-input-ko (8.10+20080703) ...
Generating locales...
  ko_KR.UTF-8... up-to-date
Generation complete.

Setting up language-support-ko (1:8.10+20080703) ...
Setting up scim-bridge-agent (0.4.14-2ubuntu5) ...
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "ko_KR.EUC-KR"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

Setting up scim-bridge-client-gtk (0.4.14-2ubuntu5) ...
Setting up openoffice.org-help-ko (1:2.4.1-9ubuntu1) ...

Processing triggers for libc6 ...
ldconfig deferred processing now taking place
Processing triggers for menu ...
root@bt:/#          

< 2010년 11월 현재 최신 버전은 nateon 1.1.0-307 인데, backtrack 4는 우분투 8.10 기반이므로, 설치할 수 있는 패키지는 8.04 버전 hardy용을 설치한다. >

root@bt:/# wget http://www.hsd.or.kr/~hook7346/nateon_1.1.0-307-hardy0_i386.deb
--2010-01-22 11:22:36--  http://www.hsd.or.kr/~hook7346/nateon-1.0_204-1_i386.deb
Resolving www.hsd.or.kr... 222.122.72.34
Connecting to www.hsd.or.kr|222.122.72.34|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1945256 (1.9M) [text/plain]
Saving to: `nateon-1.0_204-1_i386.deb'

100%[==================================================================================================================>] 1,945,256   --.-K/s   in 0.06s

2010-01-22 11:22:37 (31.7 MB/s) - `nateon-1.0_204-1_i386.deb' saved [1945256/1945256]


< 신버전 linux용 nateon 메신저는 libao2 라이브러리를 필요로 한다. >

root@bt:/# apt-get install libao2

< 한글 pdf 파일을 읽기 위해서 필요한 패키지>
root@bt:/# apt-get install poppler-data

root@bt:/# dpkg -i nateon-1.0_204-1_i386.deb
Selecting previously deselected package nateon-1.0.
(Reading database ... 229791 files and directories currently installed.)
Unpacking nateon-1.0 (from nateon-1.0_204-1_i386.deb) ...
Setting up nateon-1.0 (204-1) ...
root@bt:/# sync

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

아리 폰트 제거 필수
폰트가 별로 안 이쁘게 나오는 것 같음.

은폰트는 일단 제거했다가 다시 설치하는 것이 좋음.

apt-get remove ttf-alee ttf-unfonts-extra
명령어로 반드시 제거 바람

root@bt:/# apt-get remove ttf-alee ttf-unfonts-extra
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  language-support-translations-ko openoffice.org-l10n-common openoffice.org-help-ko thunderbird-locale-ko
  openoffice.org-l10n-ko
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  language-support-fonts-ko language-support-ko ttf-alee ttf-unfonts-extra
0 upgraded, 0 newly installed, 4 to remove and 0 not upgraded.
After this operation, 23.7MB disk space will be freed.
Do you want to continue [Y/n]? y
(Reading database ... 229791 files and directories currently installed.)
Removing language-support-ko ...
Removing language-support-fonts-ko ...
Removing ttf-alee ...
No CIDSupplement specified for Bom-Regular, defaulting to 0.
No CIDSupplement specified for JamoSora-Regular, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular-JaH, defaulting to 0.
No CIDSupplement specified for Yetgul-Regular, defaulting to 0.
No CIDSupplement specified for Penheulim-Regular, defaulting to 0.
No CIDSupplement specified for Gungseo-Regular, defaulting to 0.
No CIDSupplement specified for Taza-Regular, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular, defaulting to 0.
No CIDSupplement specified for Pen-Regular, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for Pilgi-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for Graphic-Bold, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for Graphic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for Shinmun-Regular, defaulting to 0.
No CIDSupplement specified for JamoNovel-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for Pilgi-Bold, defaulting to 0.
No CIDSupplement specified for JamoDotum-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular-JaH, defaulting to 0.
No CIDSupplement specified for JamoBatang-Regular, defaulting to 0.
Updating fontconfig cache for /usr/share/fonts/truetype/alee
Removing ttf-unfonts-extra ...
Updating fontconfig cache for /usr/share/fonts/truetype/unfonts
No CIDSupplement specified for KochiGothic-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei-CNS, defaulting to 0.
No CIDSupplement specified for NanumGothic-Regular, defaulting to 0.
No CIDSupplement specified for NanumGothic-Bold, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular, defaulting to 0.
No CIDSupplement specified for ZenHei, defaulting to 0.
No CIDSupplement specified for KochiGothic-Regular-JaH, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Regular, defaulting to 0.
No CIDSupplement specified for NanumMyeongjo-Bold, defaulting to 0.
No CIDSupplement specified for KochiMincho-Regular-JaH, defaulting to 0.
root@bt:/#  


은폰트 다시 설치
root@bt:/# apt-get install ttf-unfonts-core ttf-unfonts-extra

은폰트를 전체를 다시 설치해주어야, KDE 화면과 기타 한글 출력이 깔끔함.
아리폰트는 추천하지 않음.

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


root@bt:/# apt-get clean
root@bt:/# locale-gen ko_KR.EUC-KR
Generating locales...
  ko_KR.EUC-KR... done
Generation complete.
root@bt:/# dpkg-reconfigure locales
Generating locales...
  en_AU.UTF-8... done
  en_BW.UTF-8... done
  en_CA.UTF-8... done
  en_DK.UTF-8... done
  en_GB.UTF-8... done
  en_HK.UTF-8... done
  en_IE.UTF-8... done
  en_IN.UTF-8... done
  en_NG.UTF-8... done
  en_NZ.UTF-8... done
  en_PH.UTF-8... done
  en_SG.UTF-8... done
  en_US.UTF-8... done
  en_ZA.UTF-8... done
  en_ZW.UTF-8... done
  ko_KR.EUC-KR... up-to-date
  ko_KR.UTF-8... up-to-date
Generation complete.
root@bt:/# echo "LANG=ko_KR.EUC-KR" >> /etc/environment
root@bt:/# cat /etc/environment
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
LANG=ko_KR.EUC-KR
root@bt:/# cat /root/.profile
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

mesg n
# Installed by Debian Installer:
#  no localization for root because C
#  cannot be properly displayed at the Linux console
LANG=C
LANGUAGE=C
root@bt:/# nano /root/.profile
root@bt:/# cat /root/.profile
# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

mesg n
# Installed by Debian Installer:
#  no localization for root because C
#  cannot be properly displayed at the Linux console
#LANG=C
LANG="ko_KR.EUC-KR"
LANGUAGE=C
root@bt:/# nano /root/.bashrc
root@bt:/# cat /root/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

# don't put duplicate lines in the history. See bash(1) for more options
#export HISTCONTROL=ignoredups

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize

# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" -a -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color)
    #PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
    ;;
*)
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
    ;;
esac

# Comment in the above and uncomment this below for a color prompt
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
    ;;
*)
    ;;
esac

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

#if [ -f ~/.bash_aliases ]; then
#    . ~/.bash_aliases
#fi

# enable color support of ls and also add handy aliases
if [ "$TERM" != "dumb" ]; then
    eval "`dircolors -b`"
    alias ls='ls --color=auto'
    #alias dir='ls --color=auto --format=vertical'
    #alias vdir='ls --color=auto --format=long'
fi

# some more ls aliases
alias ll='ls -la'
#alias la='ls -A'
#alias l='ls -CF'

# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
#if [ -f /etc/bash_completion ]; then
#    . /etc/bash_completion
#fi
export PATH=$PATH:/opt/oracle/instantclient_10_2
export SQLPATH=/opt/oracle/instantclient_10_2
export TNS_ADMIN=/opt/oracle/instantclient_10_2
export LD_LIBRARY_PATH=/opt/oracle/instantclient_10_2
export ORACLE_HOME=/opt/oracle/instantclient_10_2
root@bt:/#   
root@bt:/# sync
root@bt:/# nano /root/.kde3/share/config/kxkbrc
root@bt:/# cat /root/.kde3/share/config/kxkbrc
[Layout]
DisplayNames=
EnableXkbOptions=false
IncludeGroups=
LayoutList=kr,us
Model=pc105
Options=
ResetOldOptions=false
ShowFlag=true
ShowSingle=false
StickySwitching=false
StickySwitchingDepth=2
SwitchMode=Global
Use=true

< BT4 R2 버전에서는 scim 이 디폴트 입력기로 등록되어 있지 않으므로, 수동으로 등록하고, 자동실행되도록 해준다. >

root@bt:/# nano /etc/X11/xinit/xinput.d/default
root@bt:/# cat /etc/X11/xinit/xinput.d/default
#
# This configuration provides default IM setting (user edittable)
# See im-switch(8) and /usr/share/doc/im-switch/README.Debian .

#
# Define IM for traditional X application with XIM
#
#  XIM server name used for XMODIFIERS="@im=$XIM"
#  XIM program /path/filename
#  XIM program command line arguments
#
#  These were traditional setting before uim and scim for CJK languages
#  Language   LC_CTYPE     XIM server XMODIFIERS              Start key
#  Japanese   ja_JP*       kinput2    "@im=kinput2"           Shift-Space
#  Korean     ko_KR*       ami        "@im=Ami"               Shift-Space
#  Chinese(T) zh_TW.Big5   xcin       "@im=xcin-zh_TW.big5"   Ctrl-Space
#  Chinese(S) zh_CN.GB2312 xcin       "@im=xcin-zh_CN.GB2312" Ctrl-Space
#
XIM=SCIM
XIM_PROGRAM=/usr/bin/scim
XIM_ARGS='-d'
XIM_PROGRAM_XTRA=
# Set following variable to non-zero string if program set itself as deamon
XIM_PROGRAM_SETS_ITSELF_AS_DAEMON=
#
# Define GTK and QT IM module
#   They may or may not be using xim as the IM.
#
GTK_IM_MODULE=scim
QT_IM_MODULE=scim

#
# Define lists of packages neded for above IM to function
#
DEPENDS=

#
# Define X start up hook script to update IM environment
#

XMODIFIERS=@im=SCIM


root@bt:/# 
root@bt:/# sync
root@bt:/# ls
bin  boot  cdrom  dev  etc  home  initrd.img  lib  media  mnt  nateon-1.0_204-1_i386.deb  opt  pentest  proc  root  sbin  srv  sys  tmp  usr  var  vmlinuz
root@bt:/# rm -f nateon-1.0_204-1_i386.deb
root@bt:/# sync
root@bt:/# cat /etc/default/locale
LANG="en_US.UTF-8"
root@bt:/#  
root@bt:/# rm -f /etc/fstab
root@bt:/# nano /etc/hosts
root@bt:/# nano /etc/resolv.conf
root@bt:/# sync
root@bt:/# sync
root@bt:/# cat /etc/hosts
127.0.0.1       localhost
127.0.1.1       backtrack bt

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
root@bt:/# cat /etc/resolv.conf
domain localdomain
search localdomain
root@bt:/# sync
root@bt:/# exit
exit

------------------------------------------------------

압축해제된 파일시스템에 수정을 완료하고,

파일시스템을 압축하는 과정
---------------------------------------------------------
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
먼저 작업한 내용이 들어있는 history 내용을 지워주는 것을 잊었군요.

root@bt:~/BUILD# rm -f edit/root/.bash_history
root@bt:~/BUILD# touch edit/root/.bash_history

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


root@bt:~/BUILD# umount edit/dev
root@bt:~/BUILD# umount edit/proc
root@bt:~/BUILD# chmod +w extract-cd/casper/filesystem.manifest
root@bt:~/BUILD# chroot edit dpkg-query -W --showformat='${Package} ${Version}n' > extract-cd/casper/filesystem.manifest
root@bt:~/BUILD# REMOVE='ubiquity casper live-initramfs user-setup discover xresprobe os-prober libdebian-installer4'
root@bt:~/BUILD# for i in $REMOVE; do sed -i "/${i}/d" extract-cd/casper/filesystem.manifest-desktop; done
root@bt:~/BUILD# cp extract-cd/casper/filesystem.manifest extract-cd/casper/filesystem.manifest-desktop
root@bt:~/BUILD# sed -i '/ubiquity/d' extract-cd/casper/filesystem.manifest-desktop
root@bt:~/BUILD# rm -rf extract-cd/casper/filesystem.squashfs
root@bt:~/BUILD# mksquashfs edit extract-cd/casper/filesystem.squashfs
Parallel mksquashfs: Using 1 processor
Creating 4.0 filesystem on extract-cd/casper/filesystem.squashfs, block size 131072.
[=====================================================================================================================================\] 273997/273997 100%
Exportable Squashfs 4.0 filesystem, data block size 131072
        compressed data, compressed metadata, compressed fragments
        duplicates are removed
Filesystem size 1581705.08 Kbytes (1544.63 Mbytes)
        33.98% of uncompressed filesystem size (4655181.28 Kbytes)
Inode table size 2837985 bytes (2771.47 Kbytes)
        28.55% of uncompressed inode table size (9939712 bytes)
Directory table size 2866694 bytes (2799.51 Kbytes)
        40.84% of uncompressed directory table size (7018545 bytes)
Number of duplicate files found 61157
Number of inodes 299439
Number of files 256693
Number of fragments 13459
Number of symbolic links  12258
Number of device nodes 6
Number of fifo nodes 0
Number of socket nodes 6
Number of directories 30476
Number of ids (unique uids + gids) 45
Number of uids 22
        unknown (1000)
        root (0)
        daemon (1)
        clamav (115)
        lp (7)
        polkituser (106)
        smmta (112)
        postgres (118)
        smmsp (113)
        unknown (500)
        stunnel4 (110)
        mysql (108)
        unknown (1002)
        messagebus (104)
        nstxd (116)
        man (6)
        libuuid (100)
        www-data (33)
        arpalert (119)
        dhcpd (114)
        ntop (117)
        news (9)
Number of gids 38
        unknown (1000)
        root (0)
        daemon (1)
        dip (30)
        adm (4)
        lp (7)
        fuse (106)
        smmsp (121)
        mysql (118)
        postgres (127)
        ssl-cert (123)
        dialout (20)
        messagebus (113)
        kmem (15)
        shadow (42)
        src (40)
        unknown (500)
        tty (5)
        crontab (107)
        mail (8)
        lpadmin (110)
        mlocate (108)
        plugdev (46)
        utmp (43)
        ssh (109)
        scanner (104)
        polkituser (116)
        staff (50)
        libuuid (101)
        www-data (33)
        stunnel4 (119)
        arpalert (128)
        clamav (124)
        dhcpd (122)
        news (9)
        nogroup (65534)
        winbindd_priv (126)
        smmta (120)
root@bt:~/BUILD#       
root@bt:~/BUILD# rm extract-cd/md5sum.txt
root@bt:~/BUILD# find /boot /usr/lib/grub/ -iname 'stage2_eltorito' -exec cp -v {} extract-cd/boot/grub \;
`/usr/lib/grub/i386-pc/stage2_eltorito' -> `extract-cd/boot/grub/stage2_eltorito'
root@bt:~/BUILD# cd extract-cd/
root@bt:~/BUILD/extract-cd# mkisofs -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table -V "BT4R2-KR" -cache-inodes -r -J -l -o ~/bt4-r2-kr.iso .
I: -input-charset not specified, using euc-kr (detected in locale settings)
Size of boot image is 4 sectors -> No emulation
  0.62% done, estimate finish Sat Jan 23 02:02:56 2010
  1.24% done, estimate finish Sat Jan 23 02:02:56 2010
  1.86% done, estimate finish Sat Jan 23 02:02:56 2010
  2.48% done, estimate finish Sat Jan 23 02:03:36 2010
  3.10% done, estimate finish Sat Jan 23 02:03:28 2010
  3.72% done, estimate finish Sat Jan 23 02:03:22 2010
  4.34% done, estimate finish Sat Jan 23 02:03:42 2010
  4.96% done, estimate finish Sat Jan 23 02:03:36 2010
  5.58% done, estimate finish Sat Jan 23 02:03:31 2010
  6.20% done, estimate finish Sat Jan 23 02:03:28 2010
  6.82% done, estimate finish Sat Jan 23 02:03:39 2010
  7.44% done, estimate finish Sat Jan 23 02:03:49 2010
  8.06% done, estimate finish Sat Jan 23 02:03:58 2010
  8.68% done, estimate finish Sat Jan 23 02:04:05 2010
  9.30% done, estimate finish Sat Jan 23 02:04:00 2010
  9.93% done, estimate finish Sat Jan 23 02:03:56 2010
 10.54% done, estimate finish Sat Jan 23 02:04:02 2010
 11.17% done, estimate finish Sat Jan 23 02:03:58 2010
 11.78% done, estimate finish Sat Jan 23 02:04:03 2010
 12.41% done, estimate finish Sat Jan 23 02:04:00 2010
 13.03% done, estimate finish Sat Jan 23 02:04:05 2010
 13.65% done, estimate finish Sat Jan 23 02:04:01 2010
 14.27% done, estimate finish Sat Jan 23 02:04:06 2010
 14.89% done, estimate finish Sat Jan 23 02:04:03 2010
 15.51% done, estimate finish Sat Jan 23 02:04:06 2010
 16.13% done, estimate finish Sat Jan 23 02:04:04 2010
 16.75% done, estimate finish Sat Jan 23 02:04:01 2010
 17.37% done, estimate finish Sat Jan 23 02:04:05 2010
 17.99% done, estimate finish Sat Jan 23 02:04:02 2010
 18.61% done, estimate finish Sat Jan 23 02:04:05 2010
 19.23% done, estimate finish Sat Jan 23 02:04:03 2010
 19.85% done, estimate finish Sat Jan 23 02:04:06 2010
 20.47% done, estimate finish Sat Jan 23 02:04:04 2010
 21.09% done, estimate finish Sat Jan 23 02:04:07 2010
 21.71% done, estimate finish Sat Jan 23 02:04:05 2010
 22.33% done, estimate finish Sat Jan 23 02:04:07 2010
 22.95% done, estimate finish Sat Jan 23 02:04:10 2010
 23.57% done, estimate finish Sat Jan 23 02:04:08 2010
 24.19% done, estimate finish Sat Jan 23 02:04:06 2010
 24.81% done, estimate finish Sat Jan 23 02:04:08 2010
 25.43% done, estimate finish Sat Jan 23 02:04:06 2010
 26.05% done, estimate finish Sat Jan 23 02:04:08 2010
 26.67% done, estimate finish Sat Jan 23 02:04:10 2010
 27.29% done, estimate finish Sat Jan 23 02:04:09 2010
 27.91% done, estimate finish Sat Jan 23 02:04:11 2010
 28.53% done, estimate finish Sat Jan 23 02:04:09 2010
 29.15% done, estimate finish Sat Jan 23 02:04:08 2010
 29.77% done, estimate finish Sat Jan 23 02:04:09 2010
 30.39% done, estimate finish Sat Jan 23 02:04:08 2010
 31.01% done, estimate finish Sat Jan 23 02:04:10 2010
 31.63% done, estimate finish Sat Jan 23 02:04:08 2010
 32.25% done, estimate finish Sat Jan 23 02:04:07 2010
 32.87% done, estimate finish Sat Jan 23 02:04:09 2010
 33.49% done, estimate finish Sat Jan 23 02:04:10 2010
 34.11% done, estimate finish Sat Jan 23 02:04:09 2010
 34.73% done, estimate finish Sat Jan 23 02:04:10 2010
 35.35% done, estimate finish Sat Jan 23 02:04:09 2010
 35.98% done, estimate finish Sat Jan 23 02:04:11 2010
 36.59% done, estimate finish Sat Jan 23 02:04:09 2010
 37.22% done, estimate finish Sat Jan 23 02:04:08 2010
 37.84% done, estimate finish Sat Jan 23 02:04:10 2010
 38.46% done, estimate finish Sat Jan 23 02:04:08 2010
 39.08% done, estimate finish Sat Jan 23 02:04:10 2010
 39.70% done, estimate finish Sat Jan 23 02:04:09 2010
 40.32% done, estimate finish Sat Jan 23 02:04:10 2010
 40.94% done, estimate finish Sat Jan 23 02:04:09 2010
 41.56% done, estimate finish Sat Jan 23 02:04:10 2010
 42.18% done, estimate finish Sat Jan 23 02:04:09 2010
 42.80% done, estimate finish Sat Jan 23 02:04:13 2010
 43.42% done, estimate finish Sat Jan 23 02:04:14 2010
 44.04% done, estimate finish Sat Jan 23 02:04:13 2010
 44.66% done, estimate finish Sat Jan 23 02:04:12 2010
 45.28% done, estimate finish Sat Jan 23 02:04:13 2010
 45.90% done, estimate finish Sat Jan 23 02:04:12 2010
 46.52% done, estimate finish Sat Jan 23 02:04:11 2010
 47.14% done, estimate finish Sat Jan 23 02:04:10 2010
 47.76% done, estimate finish Sat Jan 23 02:04:09 2010
 48.38% done, estimate finish Sat Jan 23 02:04:10 2010
 49.00% done, estimate finish Sat Jan 23 02:04:09 2010
 49.62% done, estimate finish Sat Jan 23 02:04:10 2010
 50.24% done, estimate finish Sat Jan 23 02:04:09 2010
 50.86% done, estimate finish Sat Jan 23 02:04:08 2010
 51.48% done, estimate finish Sat Jan 23 02:04:09 2010
 52.10% done, estimate finish Sat Jan 23 02:04:08 2010
 52.72% done, estimate finish Sat Jan 23 02:04:09 2010
 53.34% done, estimate finish Sat Jan 23 02:04:09 2010
 53.96% done, estimate finish Sat Jan 23 02:04:08 2010
 54.58% done, estimate finish Sat Jan 23 02:04:09 2010
 55.20% done, estimate finish Sat Jan 23 02:04:08 2010
 55.82% done, estimate finish Sat Jan 23 02:04:09 2010
 56.44% done, estimate finish Sat Jan 23 02:04:08 2010
 57.06% done, estimate finish Sat Jan 23 02:04:07 2010
 57.68% done, estimate finish Sat Jan 23 02:04:08 2010
 58.30% done, estimate finish Sat Jan 23 02:04:08 2010
 58.92% done, estimate finish Sat Jan 23 02:04:07 2010
 59.54% done, estimate finish Sat Jan 23 02:04:08 2010
 60.16% done, estimate finish Sat Jan 23 02:04:07 2010
 60.79% done, estimate finish Sat Jan 23 02:04:06 2010
 61.40% done, estimate finish Sat Jan 23 02:04:06 2010
 62.03% done, estimate finish Sat Jan 23 02:04:06 2010
 62.64% done, estimate finish Sat Jan 23 02:04:06 2010
 63.27% done, estimate finish Sat Jan 23 02:04:07 2010
 63.89% done, estimate finish Sat Jan 23 02:04:06 2010
 64.51% done, estimate finish Sat Jan 23 02:04:05 2010
 65.13% done, estimate finish Sat Jan 23 02:04:06 2010
 65.75% done, estimate finish Sat Jan 23 02:04:07 2010
 66.37% done, estimate finish Sat Jan 23 02:04:06 2010
 66.99% done, estimate finish Sat Jan 23 02:04:06 2010
 67.61% done, estimate finish Sat Jan 23 02:04:06 2010
 68.23% done, estimate finish Sat Jan 23 02:04:06 2010
 68.85% done, estimate finish Sat Jan 23 02:04:07 2010
 69.47% done, estimate finish Sat Jan 23 02:04:06 2010
 70.09% done, estimate finish Sat Jan 23 02:04:07 2010
 70.71% done, estimate finish Sat Jan 23 02:04:06 2010
 71.33% done, estimate finish Sat Jan 23 02:04:07 2010
 71.95% done, estimate finish Sat Jan 23 02:04:08 2010
 72.57% done, estimate finish Sat Jan 23 02:04:07 2010
 73.19% done, estimate finish Sat Jan 23 02:04:07 2010
 73.81% done, estimate finish Sat Jan 23 02:04:07 2010
 74.43% done, estimate finish Sat Jan 23 02:04:08 2010
 75.05% done, estimate finish Sat Jan 23 02:04:07 2010
 75.67% done, estimate finish Sat Jan 23 02:04:08 2010
 76.29% done, estimate finish Sat Jan 23 02:04:08 2010
 76.91% done, estimate finish Sat Jan 23 02:04:08 2010
 77.53% done, estimate finish Sat Jan 23 02:04:08 2010
 78.15% done, estimate finish Sat Jan 23 02:04:07 2010
 78.77% done, estimate finish Sat Jan 23 02:04:08 2010
 79.39% done, estimate finish Sat Jan 23 02:04:07 2010
 80.01% done, estimate finish Sat Jan 23 02:04:08 2010
 80.63% done, estimate finish Sat Jan 23 02:04:07 2010
 81.25% done, estimate finish Sat Jan 23 02:04:08 2010
 81.87% done, estimate finish Sat Jan 23 02:04:08 2010
 82.49% done, estimate finish Sat Jan 23 02:04:07 2010
 83.11% done, estimate finish Sat Jan 23 02:04:08 2010
 83.73% done, estimate finish Sat Jan 23 02:04:07 2010
 84.35% done, estimate finish Sat Jan 23 02:04:08 2010
 84.97% done, estimate finish Sat Jan 23 02:04:07 2010
 85.59% done, estimate finish Sat Jan 23 02:04:08 2010
 86.21% done, estimate finish Sat Jan 23 02:04:07 2010
 86.84% done, estimate finish Sat Jan 23 02:04:08 2010
 87.45% done, estimate finish Sat Jan 23 02:04:08 2010
 88.08% done, estimate finish Sat Jan 23 02:04:08 2010
 88.69% done, estimate finish Sat Jan 23 02:04:08 2010
 89.32% done, estimate finish Sat Jan 23 02:04:07 2010
 89.94% done, estimate finish Sat Jan 23 02:04:08 2010
 90.56% done, estimate finish Sat Jan 23 02:04:07 2010
 91.18% done, estimate finish Sat Jan 23 02:04:07 2010
 91.80% done, estimate finish Sat Jan 23 02:04:06 2010
 92.42% done, estimate finish Sat Jan 23 02:04:07 2010
 93.04% done, estimate finish Sat Jan 23 02:04:08 2010
 93.66% done, estimate finish Sat Jan 23 02:04:07 2010
 94.28% done, estimate finish Sat Jan 23 02:04:09 2010
 94.90% done, estimate finish Sat Jan 23 02:04:08 2010
 95.52% done, estimate finish Sat Jan 23 02:04:09 2010
 96.14% done, estimate finish Sat Jan 23 02:04:08 2010
 96.76% done, estimate finish Sat Jan 23 02:04:08 2010
 97.38% done, estimate finish Sat Jan 23 02:04:07 2010
 98.00% done, estimate finish Sat Jan 23 02:04:08 2010
 98.62% done, estimate finish Sat Jan 23 02:04:07 2010
 99.24% done, estimate finish Sat Jan 23 02:04:07 2010
 99.86% done, estimate finish Sat Jan 23 02:04:07 2010
Total translation table size: 2048
Total rockridge attributes bytes: 1910
Total directory bytes: 6746
Path table size(bytes): 48
Max brk space used 0
806136 extents written (1574 MB)
root@bt:~/BUILD/extract-cd#    

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

squashfs 마운트 해제
loop 디바이스, bt4 dvd 원본 마운트 해제

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Posted by 훅크선장
, |