16
08/12
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
16
08/12
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...