면도기 샀음

일상사 2012. 7. 17. 14:54



질레트 5중날 하나로 4개월을 버티다가 드디어 면도기와 면도날을 셋트로 샀음. 


질레트에서 도루코로 바꾼 이유는?


1. 자게인이 추천해 줘서

2. 싸서


'일상사' 카테고리의 다른 글

[글로스브로] 버블밤 후기  (0) 2014.10.19
놀러 가는거  (0) 2014.08.12
애기 이름 공모중  (14) 2012.02.17
우리 제이 돌잔치  (0) 2011.11.06
관악산  (0) 2011.10.31
블로그 이미지

김유석0

,

Table of contents

  1. initrd ? initramfs ?

  2. initrd, initramfs 구분 방법

  3. initrd 편집하기

  4. initramfs 편집하기 



1. initrd ? initramfs ?

  압축 방법의 차이가 있다는 것은 알겠는데 정확한 차이점은 잘 모르겠음. 이건 나중에 업데이트 할 것임. 


2. initrd, initramfs 구분 방법

image name : initrd-2.4.19.img.gz


아래와 같이 입력시 


  gunzip -c /boot/initrd-2.4.19.img.gz | file -


아래와 같이 나오면 initrd


  "/dev/stdin: Linux rev 1.0 ext2 filesystem data"


아래와 같이 나오면 initramfs 임. 


"/dev/stdin: ASCII cpio archive (SVR4 with no CRC)"



3. initrd 편집하기

3-1. 압출 풀기 & 마운트

  step 1. mkdir temp

  step 2. gunzip -c /boot/initrd-2.4.19.img.gz > initrd.img

  step 3. mount -t ext2 -o loop initrd.img temp/


3-2. 다시 묶기

  step 1. umount temp

  step 2. gzip -9 -c initrd.img > /boot/initrd-2.4.19.img.gz-NEW


4. initramfs 편집하기

4-1. 압출 풀기 & 마운트

  step 1. mkdir temp

  step 2. cd temp

  step 3. gunzip -c /boot/initrd-2.4.19.img.gz | cpio -i


4-2. 다시 묶기

  step 1. pwd

            /root/temp

  step 2. find . | cpio -H newc -o | gzip -9 > /initrd-2.4.19.img.gz-NEW



이 내용은, http://backreference.org/2010/07/04/modifying-initrdinitramfs-files/  의 내용을 번역, 정리한 것임. 


'development' 카테고리의 다른 글

[kernel] __read_mostly?????  (0) 2013.05.08
[etc] Reglar expressions  (0) 2012.09.19
[u-boot] u-boot 사용법  (0) 2012.03.08
[etc] 네트웍 용어 정리  (0) 2012.03.06
[program] 2차원 배열 동적 할당  (0) 2012.02.10
블로그 이미지

김유석0

,

opensource 정보

linux 2012. 5. 18. 13:52

1. util-linux-ng

  - linux 의 각종 기본 util(fdisk, more, fask) 의 소스 코드입니다. 

  -  WEB PAGE : http://kernel.org/~kzak/util-linux-ng/

  - DOWNLOAD :  ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/


2. coreutils

  - linux 의 가장 기본적인 binary(cp, mv, tail) 의 소스 코드입니다.

  - WEB PAGE : http://gnu.org


3. netperf

  - 네트웍 성능 측정용 도구입니다.

 -  WEB PAGE :  http://www.netperf.org/netperf/NetperfPage.html

  - DOWNLOAD :  ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/


4. bsdmainutils

  - col, hexdump, write 등의 소스입니다.





'linux' 카테고리의 다른 글

virtualbox 사용법  (0) 2013.03.07
cpu clock(속도) 조절  (2) 2013.03.04
IPv4 packet forwarding  (0) 2012.05.03
리눅스 콘솔내용을 시리얼로 출력해서 보려면  (0) 2012.04.03
iproute2  (0) 2012.02.07
블로그 이미지

김유석0

,