08 2013 档案
摘要:1. 安装好Linux的32位运行库(有部分软件是32位的) sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install ia32-libs2. 安装编译Android4.2.2及以上所依赖的环境 sudo apt-get install git-core gnupg flex bison python rar original-awk gawk p7zip-full gperf libsdl1.2-dev libesd0-dev squashfs-tools build-ess...
阅读全文
摘要:1. 安装依赖的包sudo apt-get install -y ffmpeg oss-compat alsa-oss2. 录制桌面视频并录音aoss ffmpeg -f oss -i /dev/dsp -f x11grab -s wxga -r 25 -i :0.0 -sameq /tmp/out.mpg3. 使用脚本在后台进行录像#!/bin/bash - #===============================================================================## FILE: recordscreen.sh# # ...
阅读全文
摘要:cmd="/home/scue/bin/ipclient $ipclient"exist=$(ps aux | grep -v 'grep' | grep "$cmd" | awk '{print $2}')kill_process(){ kill -9 $exist}if [[ "$1" != "" ]] ; then kill_processelse if [[ "$exist" != "" ]]; then kill_process fi
阅读全文
摘要:#!/bin/bash - #===============================================================================## FILE: fin.sh# # USAGE: ./fin.sh # # DESCRIPTION: # # OPTIONS: ---# REQUIREMENTS: ---# BUGS: ---# NOTES: ---# AUTHOR: linkscue (scue), linkscue@gmail.com#...
阅读全文
摘要:1 /* 2 * ===================================================================================== 3 * 4 * Filename: proc_more.c 5 * 6 * Description: 7 * 8 * Version: 1.0 9 * Created: 2013年08月07日 11时34分40秒 10 * Revision: none 11 * Compiler: g...
阅读全文
摘要:#!/bin/bash - #===============================================================================## FILE: boot_test.sh# # USAGE: ./boot_test.sh # # DESCRIPTION: # # OPTIONS: ---# REQUIREMENTS: ---# BUGS: ---# NOTES: ---# AUTHOR: linkscue(scue),# ORGANI...
阅读全文
摘要:--------- beginning of /dev/log/mainI/installd( 1377): installd firing upI/DEBUG ( 1370): debuggerd: Aug 3 2013 18:29:43D/STMD ( 1371): STMD STATE: BOOTD/STMD ( 1371): value_to_int() - No numeric value foundV/STMD ( 1371): read_config_file: modem reset enable = 1V/STMD ( 1371): read_c...
阅读全文
摘要:1. 编译和安装vim74b(参考:http://t.cn/zQa8R7h)sudo apt-get install -y hgsvn libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev python-dev ruby-dev mercurial cscope exuberant-ctagssudo apt-get remove vim vim-runtime gvim #这一
阅读全文
摘要:1. 安装ctags和cscopesudo apt-get install -y exuberant-ctags cscope2. vimrc中的配置"""""""""""""""""""""""""""""""""""""&qu
阅读全文