
linux环境配置
文章平均质量分 54
nieyibin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux解压rar文件
1、下载安装包: http://www.rarlab.com 或 http://www.rarsoft.com/download.htm 2、使用命令进行安装: #tar -zxvf rarlinux-3.9.b3.tar.gz #cd rar #make #make install 3、运行 rar --help 可以看到帮助信息,如果出现下列信息: #rar: /lib/t转载 2012-03-06 16:04:58 · 830 阅读 · 0 评论 -
emacs中用gdb调试
在emacs中用gdb调试c/c++还是很方便的,不过一直以来用惯了vc6,按起gud默认的按键来说确实不很方便,所以就作了一些按键映射来模仿vc6的调试: (setq gdb-many-windows t) (global-set-key [f5] 'gdb) (global-set-key [C-f5] 'gud-run) (global-set-key [S-f5] 'gud-cont转载 2012-05-27 21:55:10 · 3485 阅读 · 0 评论 -
fedora 17 安装打印机
1、保证samba server 是处于工作状态,这里不详述。 2、下载PPD和驱动,网址:http://foo2zjs.rkkda.com/foo2zjs.tar.gz 3、 入foo2zjs文件夹,输入下列命令: # cd foo2zjs # make # make install # make install-hotplug 完成ppd封装,这时打印机已经可以使用了 4、得到转载 2012-04-19 18:29:45 · 2751 阅读 · 0 评论 -
ubuntu 12.04系统托盘不显示ibus输入法图标的解决方法
ubuntu 12.04系统托盘不显示ibus输入法图标的解决方法 很简单,在终端运行下述命令即可 1 2 3 gconftool --type boolean -s /desktop/ibus/panel/show_icon_on_systray true gconftool --type boolean -s /desktop/ibus/p转载 2012-04-28 10:20:25 · 2020 阅读 · 0 评论 -
The dynamic.12306.cn certificate is not valid - you should install a valid certificate
The dynamic.12306.cn certificate is not valid - you should install a valid certificate on dynamic.12306.cn. If I try to open https://dynamic.12306.cn/otsweb/ in Firefox, Firefox will reject the c转载 2012-04-28 09:05:43 · 3148 阅读 · 0 评论 -
Rythmbox
1)音频rhythmbox(mp3等常见格式): # rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm # rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-原创 2012-04-26 13:18:55 · 663 阅读 · 0 评论 -
fedoraan install emacs
今天凑热闹把Fedora升级到了17,emacs升级到了24,但是悲剧了,显示cedet罢工,重新编译1.1后,ecb又罢工。现在修复好了,记录下来与大家分享。 emacs24启动cedet1.0会报Forgot to expand macro eieio-object-p错误,从官网http://cedet.sourceforge.net/下载最新版本安装,make安装以下。cedet修复成功转载 2012-04-23 12:29:54 · 1146 阅读 · 0 评论 -
firefox插件
先说的:本文只是简要说了一下我用的火狐插件,具体使用参考具体插件的介绍,插件下载地址均为火狐官方,放心下载。 本文不是复制粘贴互联网资源,转载说明一下出处,O(∩_∩)O谢谢,火星-大象 Adblock Plus https://addons.mozilla.org/zh-cn/firefox/addon/adblock-plus/?src=search 主要用来过滤网页上烦人的广转载 2012-03-22 14:11:25 · 1249 阅读 · 0 评论 -
UBUNTU11.10 卸载Unity,使用Gnome3
转的文章。UBUNTU11.10 卸载Unity,使用Gnome3 |------------------------------------| |作者:罗树鹏 | |博客:http://转载 2012-04-10 10:20:39 · 788 阅读 · 0 评论 -
fedora16 MYSQL登录错误:mysqladmin: connect to server at ‘localhost’ failed
mysqladmin:connect to server at 'localhost' failed 修改密码错误 mysqladmin -u root password 'newpassword' #service mysqld stop #mysqld_safe --skip-grant-tables & #mysql -u root -p password:直接回车 mysql>原创 2012-03-20 18:18:49 · 876 阅读 · 0 评论 -
fedora 16 其他配置
1.配置163,sohu,上海交大的YUM源 yum makecache(生成缓存) yum install yum-fastestmirror(自动选择最快的源) yum update(会有很多要更新的软件 ) 2.安装五笔输入法 在ibus中安装极点五笔 yum install ibus-table ibus-table-wubi 安装小企鹅输入法(自带拼音和五笔等各原创 2012-04-01 10:38:26 · 501 阅读 · 0 评论 -
fedora 16安装gnochm阅读器
1.下载安装包 gnome-xxx.tar.gz chmlib-0.37.4.tgz,pychm-0.8.4.tar.gz 2.安装chmlib-0.37.4.tgz #tar zxvf chmlib-0.37.4.tgz #cd chmlib-0.37.4 #./configure #make #make install 3.安装pychm-0.8.4.tar.g原创 2012-03-14 14:40:35 · 1137 阅读 · 0 评论 -
fedora 16下eamcs配置php
1.#yum install php-manual-en 2.从http://php-mode.sourceforge.net/下载最新版php-mode 3.载后解压到某个位置,进入emacs,修改php-mode.el文件 php-mode设置的自动补全的功能键是M-tab,这有两个问题:a、M可以用ALT或者ESC输入,如果按ALT+tab就与系统设置的窗口切换键相同;b、即使用ESC原创 2012-03-13 14:50:09 · 1375 阅读 · 0 评论 -
fedora16安装qt
fedora 16安装qt 1.#yum intall qt qt-devel qt-x11 qt-doc qt-demos qt-examples qt-asssistant qt-creator qt-config 2.安装完后命令为qmake-qt4 测试成功与否 建立一个hello文件夹,在其中建立hello.cpp,代码如下: #include #include int原创 2012-03-13 10:38:08 · 5216 阅读 · 0 评论 -
fedora 16安装Apache ,mysql,php
1.安装mysql # yum install mysql* 自动安装完后 #service mysqld start 设定mysql密码 #mysqladmin -u root password -p 'new password' 2.安装apache 下载httpd-xxx.tar.gz (xxx是版本号) #tar -zxvf httpd-xxx.tar.gz #cd h原创 2012-03-09 13:12:21 · 1722 阅读 · 0 评论 -
fedora安装autotools
GNU autotools安装 1、下载软件包,在linux嵌入式开发过程中有很多的工具其实都在GNU的官方网站可以下载到 http://www.gnu.org/software/software.html 2、要安装autotools需要如下几个文件 automake autoconf M4 安装顺序是M4-> autoconf ->automake (很重要!!!!转载 2012-04-20 17:26:51 · 1928 阅读 · 0 评论