- 浏览: 268085 次
- 性别:
- 来自: 上海
最新评论
文章列表
http://savannah.gnu.org/projects/libiconv/
用gcc编译生成动态链接库*.so文件的方法
- 博客分类:
- linux
原文地址:/etc/ld.so.confhttp://blog.sina.com.cn/s/blog_4cce4f6a0100ms6f.html文件作者:方人也
Linux 共享库
Linux 系统上有两类根本不同的 Linux 可执行程序。第一类是静态链接的可执行程序。静态可执行程序包含执行所需的所有函数 ...
http://m.blog.csdn.net/blog/zjx2014430/41548991
linux makefile
- 博客分类:
- liunx
http://www.cs.colby.edu/maxwell/courses/tutorials/maketutor/
IDIR =include
CC=gcc
CFLAGS=-I$(IDIR) -g
ODIR = obj
LDIR = lib
LIBS=-lm
_DEPS = vcardparser.h
DEPS = $(patsubst %, $(IDIR)/%, $(_DEPS))
_OBJ = vcardparser_main.o vcardparser.o
OBJ = $(patsubst %, $(ODIR)/%, $(_OBJ))
...
http://www.linuxidc.com/Linux/2011-10/45523.htm
安装SSH服务
Ubuntu默认并没有安装ssh服务,如果通过ssh链接ubuntu,需要自己手动安装ssh-server。判断是否安装ssh服务,可以通过如下命令进行:
www.linuxidc.com@linuxidc:~$ ssh localhost
ssh: connect t ...
"自动缩进
set autoindent
"类似C语言风格的缩进
set cindent
"智能缩进:每一行都和前一行有相同的缩进量,
"同时这种缩进形式能正确的识别出花括号,当遇到右花括号(}),
"则取消缩进形式。此外还增加了识别C语言关键字的功能。
"如果一行是以#开头的(比如宏),那么这种格式将会被特殊对待而不采用缩进格式
set smartindent
"For Python Programmers
autocmd FileType python set textwidth=79 " PEP-8 Frien ...
1. LuaSocket library, developed by Diego Nehab
2. linux 查看 *.a *.so 符号表
objdump -tT libName.so | grep symbel symbolName
nm -D libName.so | grep symbel symbolName
lua调用C动态库:
#include <lua.h>
#include <string.h>
#include <lauxlib.h>
#include <lualib.h>
#include <std ...
python-pip
- 博客分类:
- python
$ sudo apt-get install python-pip python-dev build-essential
$ sudo pip install --upgrade pip
$ sudo pip install --upgrade virtualenv
use proxy to install
export https_proxy=http://web-proxy.mydomain.com
then
sudo -E pip install somepackage
http://www.scipy.org/scipylib/download.html
numpy, scipy, LAPACK, BLAS
ubuntu
sudo apt-get install liblapack3
http://packages.ubuntu.com/trusty/liblapack3
to uninstall files added by python setup.py install
To record list of installed files, you can use:
python setup.py install --record files.t ...
windows下软件校验md5或sha1
- 博客分类:
- tools
File Checksum Integrity Verifier
How to compute the MD5 or SHA-1 cryptographic hash values for a file
https://support.microsoft.com/en-us/kb/889768
https://support.microsoft.com/en-us/kb/841290
Windows-KB841290-x86-ENU.exe
tengine
LUA
yum安装:
yum install lua lua-devel
安装Lua或者LuaJIT都是可以的,但是出于效率的考虑,推荐安装LuaJIT。下面的源码例子就是安装LuaJIT
源码安装:
lua下载地址: http://luajit.org/
我这里下载的是:LuaJIT-2.0.1.tar.gz 下载在 /usr/local/src 目录下。
安装命令:
cd /usr/local/src
tar zxvf LuaJIT-2.0.1.tar.gz
cd LuaJIT-2.0.1
make
make install
因为安装在缺省路径,所以Lu ...
在终端输入: nmcli dev status查看网卡状态
我这边显示: eno16777736 状态为断开
打开网卡配置选项: sudo vim /etc/sysconfig/network-scripts/ifcfg-eno16777736
修改其中的一条配置保存并退出: ONBOOT=yes
重启网络服务: sudo service network restart
进过以上几部,网络配置就ok了
参考: http://www.cnblogs.com/smyhvae/p/3932903.html
Linux学习之CentOS(五)----网卡的配置
tcpdump port 80 -x -s 0 -nn -i eth0
tcpdump: verbose output suppressed, use -v or -vv for full protocol d
tcpdump port 80 -x -s 0 -nn -i eth0 > 1.txt 2>&1
c++ 官方文档: https://developers.google.com/protocol-buffers/docs/cpptutorial
下载地址: https://github.com/google/protobuf
使用三步骤:
1. Define message formats in a .proto file.
2. Use the protocol buffer compiler. (编译器: protoc.exe)
3. Use the C++ protocol buffer API to write and read messages.