分类

链接

2024 年 11 月
 123
45678910
11121314151617
18192021222324
252627282930  

近期文章

热门标签

新人福利,免费薅羊毛

LINUX下PHP开启短标签short_open_tag支持

LINUX下PHP开启短标签short_open_tag支持 以CENTOS为例: 找到php.ini #find / -name php.ini #/etc/php.ini 编辑php.ini #vim php.ini 找到short_open_tag 设置short_open_tag = On 重启APACHE #/etc/init.d/httpd restart 即可!

LINUX 暂无评论 阅读(6,026)

could not configure a cxx compiler configure 解决办法

ubuntu下安装node.js error could not configure a cxx compiler configure 需要安装g++/c++ 命令行中输入: sudo apt-get install build-essential libssl-dev curl git-core 再输入下面的命令就可以了 ./configure make sudo make install

LINUX 暂无评论 阅读(2,391)

ubuntu安装配置redis

ubuntu安装配置redis 1、下载安装 ? cd /tmp wget http://redis.googlecode.com/files/redis-2.2.13.tar.gz tar -zxf redis-2.2.13.tar.gz cd redis-2.2.13 make sudo make install 这时Redis 的可执行文件被放到了/usr/local/bin 2、下载配置文件和init启动脚本: ? wget https://github.com/ijonas/dotfiles/raw/master/etc/init.d/redis-server wget https://github.com/ijonas/dotfiles/raw/master/etc/redis.conf sudo mv redis-server /etc/init.d/redis-server sudo chmod +x /etc/i...

LINUX, Redis 暂无评论 阅读(2,955)

secureCRT中文乱码解决办法

解决secureCRT显示中文为乱码 -学院-黑基网.

LINUX 暂无评论 阅读(2,528)

15个精典SHELL编程例子

1.输出  1      1 2      1 2 3     1 #!/bin/bash     2 echo "Please type your number:"     3 read a     4 for ((i=1;i<=a;i++))     5     do     6     for ((p=1;p<=i;p++))     7         do     8         echo  -n " $p "     9         done    10     echo    11     done    12 echo       2.九九乘法表     1 #!/bin/bash     2 for ((i=1;i<10;i++))     3     do     4     for ((p=1;p<=i;p++))     5         do     6         echo -ne " $p x $i= "`expr $i \* $p`     7      ...

LINUX 暂无评论 阅读(2,356)

Linux下MySQL 5.5安装详解

一.下载说明  MySQL 分为Community Server 和 Enterprise Edition。 其中Community Server 可以直接从mysql 的官网下载。Enterprice Edition 只能从Oracle edelivery上下载,不过Edelivery 现在已经屏蔽了中国的IP,如果国内的用户一般不能从edelivery上下载,需要翻_墙出去才能下载。 前期的一些准备说明,参考: MySQL 发展史 http://blog.csdn.net/tianlesoftware/article/details/6999245 Mysql 不同版本 说明 http://blog.csdn.net/tianlesoftware/article/details/6723117 1.1 官方文档上有关MySQL安装文件...

LINUX, MySQL 暂无评论 阅读(4,172)