https://www.kernel.org/doc/html/v4.14/admin-guide/kernel-parameters.html

 

The kernel’s command-line parameters — The Linux Kernel documentation

The kernel’s command-line parameters The following is a consolidated list of the kernel parameters as implemented by the __setup(), core_param() and module_param() macros and sorted into English Dictionary order (defined as ignoring all punctuation and sor

www.kernel.org

 

'System' 카테고리의 다른 글

Intel x86 Assembler Instruction Set Opcode Table  (0) 2018.09.13
python binary 데이터  (0) 2018.09.11
python으로 서버 시간 알아내는 방법  (2) 2018.09.10
qemu mips 실행  (0) 2018.08.20
환경변수 LD_PRELOAD를 이용한 후킹  (0) 2018.07.18


http://sparksandflames.com/files/x86InstructionChart.html



'System' 카테고리의 다른 글

The kernel’s command-line parameters  (0) 2020.02.01
python binary 데이터  (0) 2018.09.11
python으로 서버 시간 알아내는 방법  (2) 2018.09.10
qemu mips 실행  (0) 2018.08.20
환경변수 LD_PRELOAD를 이용한 후킹  (0) 2018.07.18


http://egloos.zum.com/nitraqu/v/3752315



response 메시지 헤더에 있는 서버 시간정보 값을 가져온다.



strptime() : 문자열을 날짜/시간으로 변환

mktime() : 일시를 초 단위 시간으로 변환


1
2
3
4
5
6
7
8
9
10
import urllib2
import time
 
date = urllib2.urlopen('http://www.google.com').headers['Date']
print date
 
time = int(time.mktime(time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z')))
print time
 
 
cs





'System' 카테고리의 다른 글

Intel x86 Assembler Instruction Set Opcode Table  (0) 2018.09.13
python binary 데이터  (0) 2018.09.11
qemu mips 실행  (0) 2018.08.20
환경변수 LD_PRELOAD를 이용한 후킹  (0) 2018.07.18
qemu arm 실행  (0) 2018.05.10

+ Recent posts