[nload] network monitoring tool simeple하게 현재 network interface의 bandwidth 사용률을 보여주는 cli 기반 프로그램 설치apt-get install nload 사용법nload R&D/OS 2014.05.15
tap interface create TAP 인터페이스 생성/삭제 ip tuntap add tap10 mode tapip tuntap del tap10 mode tap 기존의 tunctl 이 아닌 ip 명령어를 통해서 tap 인터페이스를 만드는 방법 R&D/OS 2014.04.24
Logical Volume 생성 Logical Volume 생성 관련 명령어1) pvcreate2) pvscan3) vgcreate4) vgscan5) lvcreate6) lvscan root@cnode25-m:~# pvcreate /dev/sdb1 Physical volume "/dev/sdb1" successfully createdroot@cnode25-m:~# pvscan PV /dev/sdb1 lvm2 [465.25 GiB] Total: 1 [465.25 GiB] / in use: 0 [0 ] / in no VG: 1 [465.25 GiB]root@cnode25-m:~# vgcreate DataVG /dev/sdb1 Volume group "DataVG" successfully createdroot@cnode25-m:~# vgs.. R&D/OS 2014.04.22
DMA offloading DMA Offloading 개요ㅇ Guest 의 DMA operation의 request만 처리하며, 실제적인 DMA operation은 Host에서 수행함ㅇ SR-IOV에 적용 (non IOMMU 환경에서) R&D/OS 2014.04.10
netperf 성능 측정 하기 netperf -H 192.168.2.1 -t TCP_STREAM -- -m 64 ㅇ UDP 를 보낼 때 -N 옵션은 반대편에 netserver 가 없어도 패킷을 전송함netperf -H 10.1.1.2 -t UDP_STREAM -N -- -m 64 R&D/OS 2014.03.31
kernel page 관련 page migration : https://www.kernel.org/doc/Documentation/vm/page_migration 커널이 free_page를 요청할 때는 __get_free_pages(gfp_mask, order) 함수를 호출하며, 2^order 의 continuous pages 가 할당된다. R&D/OS 2014.03.23
Linux Memory 관련 자료들 ㅇ 리눅스 Virtual Memory에 대해서 아주 상세하고 설명한 자료 ㅇ Memory Management in Linux (2.4) R&D/OS 2014.03.08
serial console 을 사용하고 싶을 때 http://2stech.ca/index.php/linux/linuxtutotials/tutorials/207-ubuntu-serial-console-login R&D/OS 2014.02.28