自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

九遍斋的专栏

行成于思

  • 博客(2)
  • 资源 (9)
  • 收藏
  • 关注

原创 Linux配置无线网卡

#启用无线网卡的网络,必须先用ifconfig命令打开wlan,否则接下来的iwconfig操作会出现“SET failed on device wlan0 ; Operation not permitted.”的错误。ifconfig wlan0 up#打开无线网卡电源iwconfig wlan0 txpower on #列出区域内的无线网络iwlist wlan0 scan #

2013-04-25 17:52:08 3099

原创 移植DHCP-4.1到ARM平台(交叉编译)

一、从https://www.isc.org/software/dhcp/下载最新的dhcp源码包。二、解压源码包,进入解压后的目录,输入./configure命令。三、输入make "CC=/usr/local/arm/4.3.2/bin/arm-linux-gcc -static"命令,编译后在client目录下可得到dhclient可执行文件。四、将client目录下编译好的dh

2013-04-25 10:04:20 4727

Using the POSIX API - Threads, real-time and IPC

In Linux, when a new process is created, it already contains a thread, used to execute the main() function Additional threads can be created using the pthread library, which is part of the C library Of course all threads inside a given process will share the same address space, the same set of open files, etc. The pthread library also provide thread synchronization primitives: mutexes and conditions This pthread library has its own header : pthread.h Applications using pthread function calls should be explicitly linked with the pthread library gcc ­o app app.c ­lpthread

2013-03-24

New features in Linux-2.6

虽然Linux早已到了3.8时代,但是2.6内核非常经典,在嵌入式行业依然被广泛应用。这部slides专为嵌入式开发人员而写。

2013-03-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除