
BaclTrack
yangshuolll
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
backTrack 基本操作命令学习
if interface 接口config 配置-a allifconfig -aifconfig -eth0ifconfig eth0 up //打开eth0 网卡接口ifconfig eth0 down //关闭eth0 网卡接口//重启网络关闭网络后可能会造成 network unreachable 所以要键入以下命令/etc/原创 2013-08-08 23:03:27 · 1540 阅读 · 0 评论 -
linux下构建静态库的方法
1.编写.c 和.h 文件我写了4个add.c#include "add.h"int add(int a,int b){ return a+b;}add.h#ifndef __ADD_H__#define __ADD_H__int add(int, int);#endifsub.c#include"sub.h"int sub(int a,i原创 2014-04-01 01:09:28 · 942 阅读 · 0 评论