发布时间:2014-07-28 09:44:48
os: centos 6.5 x64yum install glibc.i686yum install glibc-devel.i686yum install libgcc.i686over......【阅读全文】
发布时间:2014-07-16 10:43:11
系统环境:centos 6.5 x64 1. 获取内核源码yum install yum-utilsyum provides /boot/vmlinuz-2.6.32-431 # 获取包名yumdownloader --source kernel-2.6.32-431 #根据包名获取源码 要想下载源码包,我们就必须先配置.........【阅读全文】
发布时间:2014-07-16 10:42:10
系统环境:centos 6.5 x64 1. 安装rpmbuild 工具# yum install rpm-build 2. 创建 .spec 文件# vi test.spec //会自动生成spec文件模板 保存退出即可 3. 运行 rpmbuild -b.........【阅读全文】
发布时间:2014-04-14 16:57:42
1. 设置字符编码为gb2312export LC_ALL=zh_CN.gb2312export LANG=zh_CN.gb2312或dpkg-reconfigure locales //选择zh_cn.gb2312为默认 然后重启2. 指字xterm 默认使用的字体vi ~/.Xdefaults内容为:*VT100.font: 9x15*VT100.utf8Fonts.font: -misc-fixed-medium-r-normal--18-120-100-100-c-90-iso10646-1.........【阅读全文】
发布时间:2014-04-11 11:33:53
linux下的自解压打包工具在网上搜了一下发现主要就是两种, makeself 和 制作.bin 文件 这里面主要是讲讲 makeself主页:http://www.megastep.org/makeself/source code: https://github.com/megastep/makeself目前新的版本是2.1.5从主页下载 makeself-2.1.5.run 然后 chmod +x makese.........【阅读全文】