Archive for 08月, 2008
ubuntu 安装Intel PRO100/1000系列网卡驱动
1、 下载相应的驱动程序压缩包 e1000xxxxx.tar.gz
2、 解压包文件 tar zxvf e1000xxxxx.tar.gz
3、 切换目录 cd e1000xxxxx/src
4、 编译make install //在目录 src下. 二进制驱动程序的位置/ /lib/modules/2.6.xx.xx.../kernel /drivers/net。
5、 加载模块 modprobe e1000
6、 修改文件 /etc/modprobe.d/alias, 添加 alias eth0 e1000 alias eth1 e1000
Tags: ubuntu linux driver 网卡
VIM taglist 配置
只显示当前文件 function list
""""""""""""
" taglist
""""""""""""
let Tlist_Auto_Open = 0
let Tlist_Auto_Update = 1
let Tlist_Hightlight_Tag_On_BufEnter = 1
let Tlist_Show_One_File = 1 " 只显示当前文件
let Tlist_Enable_Fold_Column = 0
let Tlist_File_Fold_Auto_Close = 0
let Tlist_Process_File_Always = 1
let Tlist_Display_Prototype = 0
let Tlist_Compact_Format = 1
let Tlist_Use_Right_Window = 1
let tlist_php_settings = 'php;c:classes;i:interfaces;d:const;f:func'
Tags: vim taglist
