学无止境……
发布时间:2014-07-04 14:21:06
Q:什么是linux多任务间通信,为什么需要通信?A:由于linux中运行的进程是工作在独立的内存空间中,不同的进程之间是无法直接访问到对方的内存空间。但由于程序功能上的需求,常常需要不同进程协作完成一项任务。于是乎矛盾就产生啦,linux下解决办法之一就是 “信号”,当然还有相当多的方法比如:“管道” ,“消息列队” .........【阅读全文】
发布时间:2014-10-23 15:38:38
LVM图解LVM = Logic Volume ManagerPE = Physical Extent (默认为4M)PV = Physical VolumeVG = Volume GroupLV = Logic Volume +------------PV----------------+ +-------------PV---------------+ /dev/sda <--- | ____ ____ ____ ____ | | ____ _.........【阅读全文】
发布时间:2014-10-15 13:23:30
原文地址: http://blog.csdn.net/openme_openwrt/article/details/7348452Wiki导航:http://wiki.openwrt.org/doc/start编译OpenWRT0早期的openwrt编译文档:http://downloads.openwrt.org/docs/buildroot-documentation.html#about1工具链:http://wiki.openwrt.org/about/toolchain2编译.........【阅读全文】
发布时间:2014-10-14 09:45:47
为了生成IPK文件,OpenWRT定制了一套自己的makefile规则.其目录位于软件源码目录之上.集成OpenWRT的非官方包之Makefile规则include $(TOPDIR)/rules.mk Name and release number of this package etc...PKG_NAME:=helloworld -- 软件包名字(和文件夹名称一样) PKG_VERSION:=1.0 -- 软件包版本 PKG_RELEASE:=1.........【阅读全文】
发布时间:2014-10-09 11:04:26
原文地址:openwrt中luci学习笔记 作者:apple_guet 最近在学习OpenWrt,需要在OpenWrt的WEB界面增加内容,本文将讲述修改OpenWrt的过程和其中遇到的问题。一、WEB界面开发 LuCI是OpenW.........【阅读全文】
发布时间:2014-09-26 17:52:51
Shell支持作用控制,有以下命令实现前后台切换: 1. command& 让进程在后台运行 2. jobs 查看后台运行的进程 3. fg %n 让后台运行的进程n到前台来 4. bg %n 让进程n到后台去 5. kill %n 杀死job PS:"n"为jobs命令查看到的job编号,不是进程编.........【阅读全文】
发布时间:2014-08-26 21:15:41
linux 命令行界面安装 vboxaddtions 之前需要先安装好 kernel否者会报错 “Creating udev rule for the Guest Additions kernel module./tmp/vbox.0/Makefile.include.header:97: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. St.........【阅读全文】