
Linux Application
voice_shen
这个作者很懒,什么都没留下…
展开
-
Cross Compile zlib as static and dynamic library
dynamic zlib library 1. download zlib source code from the following website for new version of it. http://www.zlib.net/2. uncompress it (tar -zxvf zlib-x.x.x.tgz)3. configure it ./c原创 2009-09-12 10:17:00 · 1493 阅读 · 0 评论 -
关于GCC对cpu类型的支持
Q:如何获取gcc对cpu类型的支持呢?A:从下面的内容信息可获知。http://gcc.gnu.org/ml/gcc-patches/2010-09/msg00824.html--------------------------------------------------------------------------------2010-09-09 Ramana Ra翻译 2012-06-12 11:01:06 · 6362 阅读 · 0 评论 -
[转]Vim 复制粘贴探秘
[转]Vim 复制粘贴探秘 Vim作为最好用的文本编辑器之一,使用vim来编文档,写代码实在是很惬意的事情。每当学会了vim的一个新功能,就会很大地提高工作效率。有人使用vim几十年,还没有完全掌握vim的功能,这也说明了vim的强大。而这样何尝不是一件好事呢,只要有的学习,就有的提高。最近使用Vim来写博客,发现在Vim中粘贴Python代码后,缩进就全乱了。仔细研究了以下,原来转载 2012-12-10 13:21:04 · 865 阅读 · 0 评论 -
i2c tools usage
1. get the source code of i2c toolsreference: http://lm-sensors.org/wiki/I2CTools$ wget http://dl.lm-sensors.org/i2c-tools/releases/i2c-tools-3.1.0.tar.bz22. compile the source code$ tar -原创 2013-04-03 19:52:14 · 4120 阅读 · 7 评论 -
ffmpeg convert audio
The ffmpeg option for audio is as following----------------------------------------------------------Audio options:-aframes number set the number of audio frames to record-aq quality原创 2013-10-16 11:52:12 · 2586 阅读 · 0 评论 -
Cross Compile lmbench
[Author: Bo Shen ]Original Page: http://www.bitmover.com/lmbench/1. get the source code $ wget http://www.bitmover.com/lmbench/lmbench3.tar.gz2. cross compile it $ tar -zxvf lmbench原创 2013-10-28 18:21:24 · 3693 阅读 · 0 评论 -
静态编译fbv --测试LCD
静态编译fbv原创 2013-12-30 17:45:41 · 1860 阅读 · 0 评论 -
Busybox中的free命令
busybox free命令,Linux kernel sysinfo原创 2014-04-21 21:53:01 · 5340 阅读 · 0 评论 -
cross compile the libusb and examples
Cross compile libusb and examples for ARM SoC原创 2014-12-02 17:28:13 · 2410 阅读 · 0 评论 -
从源码编译mtd-utils工具
The mtd-utils include mkfs.ubifs, and ubi utilities. 在ubuntu下面编译mtd-utils的两种方法(相信也可以用于其它发行版下):方法一: 从git repository获取源代码,此编译为最近更新1. get the source code of mtd-utils git clone git://git.i原创 2009-11-26 22:52:00 · 11488 阅读 · 2 评论 -
用hexdump获取event的输出信息
当我们在调试输入设备时,如:键盘,触摸屏会使用到hexdump工具。其内容如下:1. 键盘:# cat /dev/input/event0 | hexdump0000000 f6a6 4e15 154b 0006 0001 0004 0001 00000000010 f6a6 4e15 1557 0006 0000 0000 0000 00000000020 f6a6 4e原创 2011-11-17 11:15:21 · 7401 阅读 · 0 评论 -
Ubuntu 下的gmake
gmake is GNU make, so Ubuntu use gmake as make. In order to solve the "gmake: command not found" problem, it is only to make a soft link with make. take the following command as a reference. ln -原创 2009-11-09 22:43:00 · 2946 阅读 · 0 评论 -
设置samba权限
configure one share directory, take following information as a reference. In order to write to this directory, it is need to "chmod 777 /home/share" [share]path = /home/share;public原创 2009-11-17 22:09:00 · 1292 阅读 · 0 评论 -
Linux Boot Logo Making
Ubuntu 下制作生成PPM文件。Method 1:1. apt-get install netpbm2. convert the jpeg, bmp, and etc to ppm. (taking the jpeg as an example) jpegtoppm *.jpeg > temp1.pnm (generating the pnm file) ppm原创 2010-04-02 11:39:00 · 1036 阅读 · 0 评论 -
VNC configuration scripts
<br />The VNC configuration scripts as following:<br /> <br />#! /bin/sh<br />vnc4server :5 -geometry 1680x1050 -alwaysshared -depth 24原创 2010-09-25 14:22:00 · 615 阅读 · 0 评论 -
Calculate the code run time
<br />1. using the time() to calculate the code run time. This function is include in <time.h> header file.<br />2. Take the following test code as a reference.<br /> <br />------------------------------------------------------<br />#include <stdio.h><br /原创 2010-10-15 09:43:00 · 702 阅读 · 0 评论 -
C编程题目分享
1. 原贴:http://topic.youkuaiyun.com/u/20110812/18/5ab14fa1-0e13-42cf-9071-fb9fbfd02577.html /* 在学校小卖部买了十瓶啤酒.美女老板说三个空酒瓶可换一瓶啤酒,请编程计算本人最终可喝多少瓶啤酒?*/转载 2011-08-17 20:54:55 · 789 阅读 · 0 评论 -
Ubuntu中screen应用程序配置文件
Linux screen configuration file.原创 2011-08-30 11:17:36 · 2718 阅读 · 0 评论