Linux系统编程复习

@@@@cpu如何操作内存? ①通过地址总线告诉内存控制器。在什么地方操作数据 ②控制总线,发送读/写的信号 ③数据总线,传送数据 --------------------------------…

Socket PRGM: chat_1Vn

//client.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include &lt…

Socket PRGM: chat_p2p

//client_p2p #include <stdio.h> #include <stdlib.h> #include <string.h> #include &…

SimpleSniffer

/***************SimpelSniffer.c*************/ #include <stdio.h> #include <unistd.h> #in…

git学习

===================client端初始化===================: # git config --global user.name "willku"…

基于Linux的Tcp端口扫描器的实现

#include <stdio.h> #include <time.h> #include <stdlib.h> #include <string.h>…

鹅厂一面题目总结

1,将/tmp目录下的.sh结尾的文件所有改为.bash 原:find /tmp -name “*.sh” -exec mv {} {}.bash \; 改:find /tmp -name “*.sh…

Python 加 tab

#python add tab #python startup file import sys import readline import rlcompleter import atexit imp…

Python Hook

# -*- coding: utf-8 -*- # import pythoncom import pyHook def onMouseEvent(event): # 监听鼠标事件 p…

GCC 编译器分步生成

源文件经过预处理器,完成预编译,生成预编译.i文件 gcc -o hello.i -E hello.c 预编译文件经过编译器,完成编译,生成汇编.s文件 gcc -o hello.s -…