
常用软件使用中所遇问题的解决方案
headool
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vim cscope E567: no cscope connections
在 ~/.vimrc里加上一句:cs add cscope.out顺便提醒:输入cscope -Rbkq能在当前目录下建索引。原创 2012-10-25 13:14:53 · 6912 阅读 · 0 评论 -
git 恢复文件
在写代码时,可能会误删改文件,这时就需要恢复最近一次提交的版本。sudo git checkout filename_or_directory_name原创 2013-11-01 10:52:16 · 496 阅读 · 0 评论 -
mysql 导出导入数据
在数据少时,mysql可以使用mysqldump工具来导出和导入数据导出mysqldump -uuser_name -ppasswd databasename > output.backup导入mysql -uuser_name -ppasswd databasename原创 2013-10-31 11:04:09 · 526 阅读 · 0 评论 -
mongodb导出和导入数据
mongodb导出和导入数据导出mongodump -h hostname_or_ip -d database_name -o output_directory导入mongorestore -h hostname_or_ip --directoryperdb data_directory原创 2013-10-31 12:01:08 · 636 阅读 · 0 评论 -
ubuntu 64位 链接 v8出错 undefined reference to icu_46
debian, ubuntu, linux mint 64位 链接 libv8 出错 undefined reference to icu_46==================================================出错情形:使用google document自带的例子g++ -Iinclude hello_world.cc -o hello_wor原创 2013-10-30 14:26:58 · 1972 阅读 · 0 评论 -
linux ssh自动登录服务器
linux 使用tcl脚本自动ssh登录服务器,不必每次都输入密码。=============================================首先要安装expect包(ubuntu)sudo aptitude install expect登录脚本(名为Ssh):#!/usr/bin/expect -fset password 111111se原创 2013-10-30 11:45:41 · 660 阅读 · 0 评论 -
ubuntu 安装 lamp
debian,ubuntu,linux mint 安装 lamp=============================================有一个tasksel的工具专门安装各种服务sudo aptitude install tasksel运行:sudo tasksel得到:上下键移动,空格键选择,回车键确认安装原创 2013-10-30 10:46:38 · 533 阅读 · 0 评论 -
linux mint 系统快捷键设置
linux mint 15 设置系统快捷键========================================================="System Tool" => "System Settings" =>原创 2013-10-30 10:00:17 · 9691 阅读 · 0 评论 -
centos 安装输入法
centos 安装输入法ibus--------------------------------------------------------------------------------------------------原创 2013-10-28 15:45:05 · 591 阅读 · 0 评论 -
centos 安装 nginx
centos 安装 nginx-1.3.5-------------------------------------------cd /tmpwget http://nginx.org/download/nginx-1.3.5.tar.gztar xvf nginx-1.3.5.tar.gzcd nginx-1.3.5./configuremake -j4sudo原创 2013-10-28 00:12:18 · 531 阅读 · 0 评论 -
nginx configure error: the HTTP rewrite module requires the PCRE library
nginx-1.3.5 configure:./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by using --without-http_rewrite_moduleoption, or install the PCRE原创 2013-10-27 11:14:44 · 1533 阅读 · 0 评论 -
ubuntu emacs 输入法失效问题解决办法
首先安装ibus-el:sudo aptitude install ibus-el编辑emacs配置文件,在~/.emacs中加入:(add-hook 'after-init-hook 'ibus-mode-on)重启emacs就能见效原创 2012-10-25 18:10:56 · 564 阅读 · 0 评论 -
ubuntu 重启网络
debian ubuntu linuxmint 重启网络sudo service networking restart原创 2013-11-01 10:19:03 · 1085 阅读 · 0 评论