zoukankan      html  css  js  c++  java
  • Mac下brew/memcached/nginx/iterm/zsh的安装

    brew  https://www.cnblogs.com/fireworld/p/8609190.html

    memcached https://blog.csdn.net/whereismatrix/article/details/50485570

    memcached https://www.cnblogs.com/fengwenit/p/6381100.html

    nginx  https://www.cnblogs.com/meng1314-shuai/p/8335140.html

    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    cd "$(brew --repo)"   //这个命令会进入到相应目录,可以pwd查看下
      cd "$(brew --repo)" git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
    
      echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
      source ~/.bash_profile
    brew install memcached
    brew services start memcached 或者 memcached -d

    在mac中低于1024的端口不能用非root用户启动

    brew update
    brew search nginx 
    brew info nginx
    brew install nginx

    iterm/zsh的安装

    https://blog.csdn.net/lihao21/article/details/69055932

    https://blog.csdn.net/kebing1011/article/details/46934533

    iterm进行下载安装app

    brew install zsh
    chsh -s /bin/zsh
    git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
    cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc 
  • 相关阅读:
    单元测试
    python gdb
    圣诞树
    网络是怎样连接的 读书笔记
    POJ2104 K-th Number(整体二分)
    [SDOI2011]消耗战
    [HNOI2011]XOR和路径
    [HNOI2013]游走
    [JSOI2008]球形空间产生器
    POJ2728 Desert King
  • 原文地址:https://www.cnblogs.com/stono/p/9729100.html
Copyright © 2011-2022 走看看