摘要:there are some output difference in the result compiled by G++ and Microsoft cpp compiler.
阅读全文
摘要:1. install jdkhttp://www.2cto.com/os/201111/110060.htmlhttp://hi.baidu.com/pj1990zp/item/7c9e9795681c65835814618ehttp://www.wikihow.com/Install-Oracle...
阅读全文
摘要:ghostli123@ghostli123-HP-Pro-3380-MT:~/Yang/12.29/tcpdump-4.3.0$ tcpdump -r ../2012.udp.pcap port 53 -w pureDNS.pcapreading from file ../2012.udp.pcap, link-type EN10MB (Ethernet)tcpdump: pcap_loop: bogus savefile headerghostli123@ghostli123-HP-Pro-3380-MT:~/Yang/12.29/tcpdump-4.3.0$ tcpdump -r pure
阅读全文
摘要:This link certainly solved my problem.https://help.ubuntu.com/community/Boot-Repair#A2nd_option_:_install_Boot-Repair_in_Ubuntu
阅读全文
摘要:首先需安装jdk并配置环境变量1、下载sdkforlinuxhttp://developer.android.com/sdk/index.html2、解压缩,并更新cd ~/android-sdk-linux/tools./andirod3、配置环境变量sudo gedit ~/.bashrc#set path for android sdk toolsexport PATH=$PATH:~/android-sdk-linux/tools/export PATH=$PATH:~/android-sdk-linux/platform-tools/4、保存后,同步更新source ~/.bashr
阅读全文
摘要:add LD_PRELOAD commend: $ export LD_PRELOAD="./hack.so"delete LD_PRELOAD commend: $ unset LD_PRELOAD在Unix操作系统的动态链接库的世界中,LD_PRELOAD就是这样一个环境变量,它可以影响程序的运行时的链接(Runtime linker),它允许你定义在程序运行前优先加载的动态链接库。这个功能主要就是用来有选择性的载入Unix操作系统不同动态链接库中的相同函数。通过这个环境变量,我们可以在主程序和其动态链接库的中间加载别 的动态链接库,甚至覆盖正常的函数库。一方面,我们可
阅读全文