참고 링크...

http://forum.falinux.com/zbxe/?document_srl=461805


ppm 만들기 요약 

sudo apt-get install netpbm

1. $pngtopnm source.png | pnmtoplainpnm > source.ppm
2. $pnmquant -fs 223 source.ppm > source_256.ppm
3. $pnmnoraw source_256.ppm > source_logo.ppm

끝. 
patch -p0 -i file.path
 


        BSTR sUrl;
CHAR* pbstr;
USES_CONVERSION; //convert를 위한 매크로
pbstr=OLE2A(sUrl); //bstr을 char로 convert

CString s(pbstr);
AfxMessageBox(s);
 
explorer down


활성화 regsvr32 /u shmedia.dll

비활성 regsvr32 shmedia.dll

  어디선가 주워 들은 내용인데....기억이 안남..죄송
ACPI Compliant System Driver
 

VirtualBox 4.0.4 Oracle VM VirtualBox Extension Pack
 
USB2.0 Controller not found!.
라길래....Extension Pack 설치를 진행...



무시무시한 경고...
 


간단하게 설치는 끝남..

리부팅하면 무슨일이 발생될지...쩝

아직 리부팅전..


참고:

익스텐션 설치 후에 USB가 인식은 되는 마운트를 할 수가 없었다.
ReadOnly 상태로 리스트가 나타남...ㅠㅠ
일단 일을 해야 해서 uninstaller 실행....

나중에 자세히 알아봐야 될듯..








1. start diff mode

vimdiff file1 file2 [ file3 [ file4]]
or
vim -d file1 file2 [ file3 [ file4]]

 graphic mode

vim -d -g or gvimdiff

read only mode
viewdiff or gviewdiff

do - 현재 윈도우로
dp - 다른 윈도우로
]c - 다음
[c - 이전




 

http://kldp.org/node/119436


요 며칠간 마술같은 성능향상을 보여주는 리눅스 커널 패치(200자 정도)가
화제인데요.

https://patchwork.kernel.org/patch/326472/

2.6.38 커널에 포함이 예정되어 있습니다.


kldp.org 에서 펌..

 

VMSTAT(8)                                              Linux Administrator's Manual                                              VMSTAT(8)



NAME
       vmstat - Report virtual memory statistics

SYNOPSIS
       vmstat [-a] [-n] [delay [ count]]
       vmstat [-f] [-s] [-m]
       vmstat [-S unit]
       vmstat [-d]
       vmstat [-D]
       vmstat [-p disk partition]
       vmstat [-V]

DESCRIPTION
       vmstat reports information about processes, memory, paging, block IO, traps, disks and cpu activity.

       The first report produced gives averages since the last reboot.  Additional reports give information on a sampling period of length
       delay.  The process and memory reports are instantaneous in either case.


   Options
       The -a switch displays active/inactive memory, given a 2.5.41 kernel or better.

       The -f switch displays the number of forks since boot.  This includes the fork, vfork, and clone system calls, and is equivalent to
       the  total number of tasks created. Each process is represented by one or more tasks, depending on thread usage.  This display does
       not repeat.

       The -m displays slabinfo.

       The -n switch causes the header to be displayed only once rather than periodically.

       The -s switch displays a table of various event counters and memory statistics. This display does not repeat.

       delay is the delay between updates in seconds.  If no delay is specified, only one report is printed with the average values  since
       boot.

       count is the number of updates.  If no count is specified and delay is defined, count defaults to infinity.

       The -d reports disk statistics (2.5.70 or above required)

       The -D reports some summary statistics about disk activity.

       The -p followed by some partition name for detailed statistics (2.5.70 or above required)

       The -S followed by k or K or m or M switches outputs between 1000, 1024, 1000000, or 1048576 bytes

       The -V switch results in displaying version information.

FIELD DESCRIPTION FOR VM MODE
   Procs
       r: The number of processes waiting for run time.
       b: The number of processes in uninterruptible sleep.

   Memory
       swpd: the amount of virtual memory used.
       free: the amount of idle memory.
       buff: the amount of memory used as buffers.
       cache: the amount of memory used as cache.
       inact: the amount of inactive memory. (-a option)
       active: the amount of active memory. (-a option)

   Swap
       si: Amount of memory swapped in from disk (/s).
       so: Amount of memory swapped to disk (/s).

   IO
       bi: Blocks received from a block device (blocks/s).
       bo: Blocks sent to a block device (blocks/s).

   System
       in: The number of interrupts per second, including the clock.
       cs: The number of context switches per second.

   CPU
       These are percentages of total CPU time.
       us: Time spent running non-kernel code. (user time, including nice time)
       sy: Time spent running kernel code. (system time)
       id: Time spent idle. Prior to Linux 2.5.41, this includes IO-wait time.
       wa: Time spent waiting for IO. Prior to Linux 2.5.41, included in idle.
       st: Time stolen from a virtual machine. Prior to Linux 2.6.11, unknown.


FIELD DESCRIPTION FOR DISK MODE
   Reads
       total: Total reads completed successfully
       merged: grouped reads (resulting in one I/O)
       sectors: Sectors read successfully
       ms: milliseconds spent reading

   Writes
       total: Total writes completed successfully
       merged: grouped writes (resulting in one I/O)
       sectors: Sectors written successfully
       ms: milliseconds spent writing

   IO
       cur: I/O in progress
       s: seconds spent for I/O


FIELD DESCRIPTION FOR DISK PARTITION MODE
       reads: Total number of reads issued to this partition
       read sectors: Total read sectors for partition
       writes : Total number of writes issued to this partition
       requested writes: Total number of write requests made for partition



FIELD DESCRIPTION FOR SLAB MODE
       cache: Cache name
       num: Number of currently active objects
       total: Total number of available objects
       size: Size of each object
       pages: Number of pages with at least one active object


NOTES
       vmstat does not require special permissions.

       These reports are intended to help identify system bottlenecks.  Linux vmstat does not count itself as a running process.

       All linux blocks are currently 1024 bytes. Old kernels may report blocks as 512 bytes, 2048 bytes, or 4096 bytes.

       Since procps 3.1.9, vmstat lets you choose units (k, K, m, M) default is K (1024 bytes) in the default mode

       vmstat uses slabinfo 1.1    FIXME

FILES
       /proc/meminfo
       /proc/stat
       /proc/*/stat


SEE ALSO
       iostat(1), sar(1), mpstat(1), ps(1), top(1), free(1)

BUGS
       Does not tabulate the block io per device or count the number of system calls.

AUTHORS
       Written by Henry Ware <al172@yfn.ysu.edu>.
       Fabian Frédérick <ffrederick@users.sourceforge.net> (diskstat, slab, partitions...)



Throatwobbler Ginkgo Labs                                       2009 Jan 9                                                       VMSTAT(8)
이 포스팅의 이유라면...
윈도우즈 새로 설치한 후에 네이트온 설치하는 중에...주소창 검색 프로그램이 보여서..포스팅..

1. 다운 받은 설치 파일 실행 하면 제일 먼저 나타나는 화면. 네이트 주소창 검색 프로그램을 설치할것이라는 경고(?)를 보여주고 있음..

2.빨간 네모 박스..ㅠㅠ..너무나 잘보이는 ...

3. 전체 설치 VS 사용자 정의 설치 차이는 설치될 디렉토리를 변경할 수 있는것 외에 특별한건 없다.

4. 사용자 정의 설치를 선택하고 진행.

5. 변경하지는 않고 그냥 다음..클릭..

6.기능 선택하고 자시고 할것 없이 그냥 다음 ㄱㄱ

7. 엄청 어려운 설정(?) 이 끝나고 설치 준비가 되었다고 알려줌..

8. 설치중...순간적으로 캡쳐했는데..nateon.exe가 잡혔네요..ㅎㅎ

9. 사용자의 선택에 따라 선택하고 다음..ㄱㄱ...

10. 드디어 길고 긴 설치과정 완료...ㅠㅠ..


완료...채팅이나 하러..ㄱㄱ..

+ Recent posts