上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 61 下一页
摘要: ffplay "http://172.16.177.52:7000 /R|8|" 阅读全文
posted @ 2019-07-23 15:32 MoonXu 阅读(369) 评论(0) 推荐(0) 编辑
摘要: ./configure --host=arm --prefix=/home/xpy/six CC=arm-none-linux-gnueabi-gcc --libdir=/home/xpy/six --includedir=/home/xpy/six 阅读全文
posted @ 2019-07-23 10:22 MoonXu 阅读(2586) 评论(0) 推荐(0) 编辑
摘要: vmci0="FALSE" 阅读全文
posted @ 2019-07-22 21:40 MoonXu 阅读(148) 评论(0) 推荐(0) 编辑
摘要: egrep "12" 1.txt == grep -E "12" 1.txt fgrep "23" 1.txt == grep -F "12" 1.txt tee 3.txt //读取标准输入,输出成文件 cmp 1.txt 2.txt cut -c1-1 1.txt 显示每列的第几到第几的字符 阅读全文
posted @ 2019-07-22 17:55 MoonXu 阅读(112) 评论(0) 推荐(0) 编辑
摘要: /usr/include/x86_64-linux-gnu/bits/fcntl-linux.h 阅读全文
posted @ 2019-07-19 18:04 MoonXu 阅读(306) 评论(0) 推荐(0) 编辑
摘要: int main(){ int a = 1; int c = 2; int b; __asm { MOV EAX, a; MOV EBX, c; ADD EAX, EBX; MOV b, EAX; } cout << "b = " << b << endl; cout << "a = " << a 阅读全文
posted @ 2019-07-18 20:30 MoonXu 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #在PATH中找到可执行文件程序的路径。export PATH =$PATH:$HOME/bin在文件/etc/profile中加入#gcc找到头文件的路径C_INCLUDE_PATH=/usr/include/libxml2:/MyLibexport C_INCLUDE_PATH#g++找到头文件 阅读全文
posted @ 2019-07-18 16:46 MoonXu 阅读(2625) 评论(0) 推荐(0) 编辑
摘要: 黑客工具 hacker disassembler engine download IDApro 阅读全文
posted @ 2019-07-17 17:24 MoonXu 阅读(214) 评论(0) 推荐(0) 编辑
摘要: sudo apt install nasm 64bit: nasm -f elf64 test.asm ld -s -o test test.o 32bit: nasm -f elf32 test.asm ld -m elf_i386 -s -o test test.o 阅读全文
posted @ 2019-07-17 16:58 MoonXu 阅读(285) 评论(0) 推荐(0) 编辑
摘要: /usr/include/x86_64-linux-gnu/asm 阅读全文
posted @ 2019-07-17 15:40 MoonXu 阅读(728) 评论(0) 推荐(0) 编辑
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 61 下一页