homebrew & brew cask使用技巧及Mac软件安装

匿名 (未验证) 提交于 2019-12-03 00:20:01

homebrew

安装

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 

命令

安装软件:brew install 软件名,例:brew install wget 搜索软件:brew search 软件名,例:brew search wget 卸载软件:brew uninstall 软件名,例:brew uninstall wget 更新所有软件:brew update 更新具体软件:brew upgrade 软件名 ,例:brew upgrade git 显示已安装软件:brew list 查看软件信息:brew info/home 软件名 ,例:brew info git / brew home git 显示包依赖:brew reps 显示安装的服务:brew services list 安装服务启动、停止、重启:brew services start/stop/restart serverName

homebrew cask

安装

brew tap phinze/homebrew-cask brew install brew-cask

软件列表

可视化homebrew安装工具

brew cask install cakebrew

图形化管理Homebrew安装的服务软件

brew tap jimbojsb/launchrocket brew cask install launchrocket

全局搜索工具

brew cask install alfred //快捷键option+space //command+回车打开文件所在文件夹 //把/usr/local/Caskroom增加到 alfred 的search目录中,偏好设置->Features->Default Results->Search Scope  //百度搜索添加设置 1.Features->Web Search->Add Custom Search 2.Search Url->https://www.baidu.com/s?wd={query} Title->Search Baidu for '{query}' Keywords->baidu Validation:alfredpp  //国人必备的30个Alfred Workflow https://www.waerfa.com/alfred-workflow
brew cask install google-chrome //chrome://components

终端工具

brew cask install iterm2 //配色https://github.com/mbadolato/iTerm2-Color-Schemes

mac chm阅读工具

brew cask install ichm

shadowsocks客户端

brew cask install shadowsocksx-ng

redis客户端

brew cask install rdm
brew install macvim --with-override-system-vim brew install emacs --with-cocoa --with-gnutls brew install adminer

mac环境工具

brew install mysql brew install httpd24 brew install php56 --with-httpd24 brew install redis brew install php56-redis //redis可视化管理工具 redis-desktop-manager brew install php56-yaf brew install php56-swoole brew install mongodb brew install php56-mongodb brew install nginx brew install memcached brew install php56-memcached //mongodb可视化管理工具 robomongo

浏览器插件

HTTP Status IPvFoo Proxy SwitchyOmega WEB前端助手(FeHelper) 二维码生成器 译库网页翻译 购物比价助手

httpd22配置文件

<IfModule alias_module>     Alias /workspace "/Users/redraiment/workspace/"     <Directory "/Users/redraiment/workspace/">         AllowOverride All         Options Indexes MultiViews FollowSymLinks ExecCGI         Order allow,deny         Allow from all         DirectoryIndex index.html index.php     </Directory> </IfModule>  //升级到2.4版本之后:Order allow,deny和Allow from all要改成Require all granted,如下所示:  <IfModule alias_module>     Alias /workspace "/Users/redraiment/workspace/"     <Directory "/Users/redraiment/workspace/">         AllowOverride All         Options Indexes MultiViews FollowSymLinks ExecCGI         Require all granted         DirectoryIndex index.html index.php     </Directory> </IfModule>

虚拟目录

<VirtualHost *:80>     DocumentRoot "/www/test"     ServerName localhost     ErrorLog "/private/var/log/apache2/localhost-error_log"     CustomLog "/private/var/log/apache2/localhost-access_log" common     <Directory "/www/test">         Options FollowSymLinks Multiviews         MultiviewsMatch Any         AllowOverride None         Require all granted     </Directory> </VirtualHost>

虚拟机

brew cask install virtualbox brew cask install vagrant

前端工具

brew install node

转载于:https://www.cnblogs.com/51fx/p/7004429.html


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!