MacBook的一些问题与备忘

来自未知开发者

1
sudo xattr -rd com.apple.quarantine sesinetd

你没有权限打开应用程序

1
2
3
4
5
6
brew install upx

# 这里以xf-adsk软件来举例
# 把xf-adsk放到桌面,右键包内容进入到MacOS

sudo upx -d /Users/lingyunzhang/Desktop/xf-adsk20.app/Contents/MacOS/x-force

打开dmg资源忙

1.打开活动管理器
2.搜索disk的进程

3.随便退出几个进程就可以了(双击 - 强制退出)

Homebrew安装

1
2
3
4
5
# 官方安装
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# 国内源
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

今后安装的包,都会放在/usr/local中。(M1不是)

Homebrew走代理

1
2
3
4
5
6
7
# 临时环境
export ALL_PROXY=socks5://127.0.0.1:1089
export ALL_PROXY=https://127.0.0.1:8889

# 永久修改(根据不同的shell解释器)
echo export ALL_PROXY=socks5://127.0.0.1:1089 >> ~/.bash_profile
echo export ALL_PROXY=socks5://127.0.0.1:1089 >> ~/.zsh_profile