ref. http://www.haruair.com/blog/2210



Item

CMD

 Hint 찾기

 # git grep -l <keyword>

 keyword만 아는경우

 # git log -S<keyword>

 keyword만 아는경우 # git log -S<keyword> -p

 의심가는 file의 History를  보고 싶을 때

 # git log -p <filename>

 짬뽕

 # git log -p <filename> | grep '2011070102\|commit \|Author:\|Date:'


'잘좀하자 개발 > Git' 카테고리의 다른 글

Branch creation date (Branch 생성일)  (0) 2018.11.07
Posted by kissuu
,

[Form]

소소한 Tip/Form 2018. 1. 25. 09:13








1. Suspend2란?






공유 라이브러리(shared library)


dynamic loader



Code
#include <stdio.h>
int main(int argc, char** argv)
{
    printf("Hello World\n");
    return 0;
}


https://colorscripter.com/



file a.out

a.out: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, not stripped

 

Table form

운영체제환경 변수비고
WindowsPATH

Linux

LD_LIBRARY_PATH
Mac OS X

DYLD_LIBRARY_PATH

DYLD_FALLBACK_LIBRARY_PATH

 




Category

Monitor program

 CPU

 top, ps, uptime, vmstat, pstree, iostat, sar

 Memory

 free, vmstat, sar

 Disk I/O df, du, quota, iostat, sar 
 Network

 ping, netstat, traceroute, tcpdump, nmap, netcat, ntop 

 File (include socket)

 Lsof 



Posted by kissuu
,

ref. : https://www.suspend2.net/


1. Suspend2란?

Suspend 2 is most easily described as the Linux equivalent of Windows’ hibernate functionality. It saves the contents of memory to disk and powers down. When the computer is started up again, it reloads the contents and the user can continue from where they left off. No documents need to be reloaded or applications reopened and the process is much faster than a normal shutdown and start up.


Windows의 hibernate functionality와 유사함. disk와 memory contents를 저장하고, startup시 그 contents를 reload. [fast cold boot를 생가할 때, 고려해볼만한 가치가 있음]

Posted by kissuu
,