摘要:相比pdf, CHM电子书在Windows系统下不需要安装额外的浏览器即可进行阅读,其内容是基于浏览器的风格,更容易被用户所接受。而且, 具有更强大的功能配置,比如可提供强大的全文搜索、索引、书签等的功能。 那么如何将pdf转chm格式的电子书呢? 具体实现方法如下: 1. 用 convert 命令
阅读全文
摘要:命令行的方法:1.要下载pptp的客户端 sudo apt-get install pptp-linux2.创建连接 sudo pptpsetup –createvpn001 –server 192.168.1.8 –username username –passwordpassword –enc...
阅读全文
摘要:通过visudo 来编辑/etc/sudoers来实现 在该文件 末尾 中追加一下记录即可 username ALL=(ALL) NOPASSWD:ALL ——-下面文章转载自网络———– # User privilege specification root ALL=(ALL) ALL # Mem
阅读全文
摘要:安装xdebug: 1 sudo apt-get install php-pear2 sudo apt-get install php5-dev3 pecl install xdebug创建配置文件: echo ‘zend_extension=”/usr/lib/php5/20090626/xdeb...
阅读全文
摘要:Usage: start-stop-daemon [ ...] Commands:-S|–start — … start a program and pass to it-K|–stop stop a program-T|–status get the program status-H|–hel...
阅读全文
摘要:1 #!/bin/bash 2 mkdir ~/build 3 cd ~/build 4 wget http://download.oracle.com/berkeley-db/db-5.1.19.tar.gz 5 tar xzf db-5.1.19.tar.gz 6 cd db-5.1.19/b...
阅读全文
摘要:The correct format of repository source line is For example, a repo line can be like this onedeb http://archive.ubuntu.com/ubuntu precise mainHere, ...
阅读全文
摘要:加了export:jackyyu@ubuntu:~$ cat 1.sh#!/bin/dashtest=testecho ${test}echo ${TERM}TERM=dumbexport test=test2./2.shjackyyu@ubuntu:~$ cat 2.sh#!/bin/bashec...
阅读全文
摘要:cmd 2>/tmp/stderr.logcat /tmp/stderr.log | grep -v “要过滤信息的关键字” >&2rm /tmp/stderr.log
阅读全文
摘要:cmd >a 2>a 和 cmd >a 2>&1 为什么不同?cmd >a 2>a :stdout和stderr都直接送往文件 a ,a文件会被打开两遍,由此导致stdout和stderr互相覆盖。cmd >a 2>&1 :stdout直接送往文件a ,stderr是继承了FD1的管道之后,再被送往...
阅读全文
摘要:一个shell脚本,直接执行能成功,但是加在crontab后确怎么也执行不成功。问题的原因是:crontab的环境变量与直接执行用户的环境变量不一样。export PATH=$PATH:/sbin使用全路径,或者把包含路径在环境变量加上即可。
阅读全文
摘要:执行sudo命令时候,总是提示sudo: unable to resolve host xxx解决方法:法1. 在/etc/hosts/添加hosts映射, 如127.0.0.1 xxx法2. 修改/etc/hostname 为有效host
阅读全文
摘要:mac系统下apache 和 mysql 命令:启动apachesudo /usr/sbin/apachectl start重启apachesudo /usr/sbin/apachectl restart停止apachesudo /usr/sbin/apachectl stop启动mysqlsudo...
阅读全文
摘要:服务器间歇性的负载飙升问题服务器负载飙升时,内存耗光。查看apache日志,有如下记录:[Fri Nov 09 10:55:12 2012] [error] server reached MaxClients setting, consider raising the MaxClients sett...
阅读全文
摘要:1.安装lamp环境sudo apt-get install apache2 php5 mysql2.获取php源码sudo apt-get install dpkg-devsudo apt-get source php53.编译步骤cd /path/ext/./ext_skel –extname=...
阅读全文
摘要:1. apt-get install samba 2. sudo vi /etc/samba/smb.conf 在【global】下添加 usershare owner only = false 重启 sudo service smbd restart 3. 采用usershare设置共享目录 ne
阅读全文
摘要:amp环境:sudo apt-get install apache2 php5-mysql libapache2-mod-php5 mysql-server -y 安装postgres:sudo apt-get install php5-pgsqlsudo dpkg-reconfigure php5
阅读全文
摘要:1. Sed简介 1. Sed简介 sed是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有
阅读全文
摘要:chkconfig命令用法 语法: chkconfig –list [name] chkconfig –add name chkconfig –del name chkconfig [--level levels] name chkconfig [--level levels] name 说明: c
阅读全文
摘要:安装ImageMagick后,执行convert命令,出现以下错误: no decode delegate for this image format。 从网上搜索了一些资料,知道是图片库缺失。 系统是centos 5.6,无界面的。安装以下图片库可以正常转换: yum -y install lib
阅读全文