
Mac
一木扶苏
尘世间一个迷途小书童
展开
-
Mac 升级 Catalina 后根目录无法创建文件,提示 Read-only file system
sudo vim /etc/synthetic.conf添加一行记录(如果有两列需要使用 tab 进行分割,注意空格分割是无效的),然后重启即可举例bar System/Volumes/Data/bar将会在根目录下创建 bar 软连接到根目录下的 System/Volumes/Data/bar 目录具体可参考 man synthetic.conf...原创 2019-11-27 22:55:18 · 5176 阅读 · 0 评论 -
Mac Apache 配置二级域名
Mac Apache 配置二级域名sudo vim /etc/apache2/httpd.conf在最后加下面的配置:NameVirtualHost *:80# six<VirtualHost *:80> DocumentRoot /Library/WebServer/Documents/sixchat ServerName six.localhost ErrorLog原创 2017-12-11 15:11:59 · 725 阅读 · 0 评论 -
Mac Homebrew 切换源
Homebrew默认源为Github,国内访问很慢,故切换到国内源。切换到中科大源cd "$(brew --repo)"git remote set-url origin https://mirrors.ustc.edu.cn/brew.gitcd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote set-ur...原创 2019-05-21 16:13:21 · 2038 阅读 · 0 评论