macos 禁用 brew update --auto-update
时间: 2023-08-15 18:06:41 浏览: 126
要禁用MacOS上的Brew自动更新,可以使用以下命令:
```
brew update --disable-auto-update
```
这将禁用Brew的自动更新功能,因此在以后的更新中,您将需要手动运行 `brew update` 命令来更新您的软件包。
相关问题
diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 fatal: Could not read from remote repository.中文回答这个在config配置文件中如何解决
在Git的`.git/config`文件中遇到`diffie-hellman-group14-sha1` 或 `diffie-hellman-group1-sha1` 这样的错误,通常是由于仓库的SSH密钥协商算法版本过旧,不再支持。要解决这个问题,可以按照以下步骤操作:
1. **更新SSH客户端**:
- 如果您正在使用Linux,确保您的OpenSSH客户端是最新的,可以通过运行`sudo apt-get update && sudo apt-get upgrade openssh-client`(对于Ubuntu系统)或`brew upgrade ssh`(Homebrew用户)来升级。
2. **检查并修改 SSH 配置**:
打开终端,找到SSH配置文件,通常位于`~/.ssh/config`(Unix/Linux)或`%USERPROFILE%\.ssh\config`(Windows)。检查`Host *`下是否有关于Diffie-Hellman参数的设置。如果存在,请将其更改为现代的标准,例如`diffie-hellman-group-exchange-sha256`或`diffie-hellman-group16-sha512`。
```ini
Host *
# 更改为现代标准,例如
Ciphers = aes256-gcm@openssh.com,aes128-gcm@openssh.com,混沌(cipher@showkey)
KexAlgorithms = curve25519-sha256@libssh2,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256
```
3. **禁用旧的协议**:
在SSH配置文件中添加或修改`HostKeyAlgorithms`选项,排除旧版本的DH算法,如下面的例子所示:
```ini
HostKeyAlgorithms +ssh-dss,rsa,ecdsa,ssh-ed25519
```
4. **重启SSH服务**:
为了应用新更改,需要重启SSH服务。在Linux上执行`sudo service ssh restart`,在macOS上则执行`launchctl unload -w /Library/LaunchDaemons/com.apple.ssh.plist && launchctl load -w /Library/LaunchDaemons/com.apple.ssh.plist`。
5. **确认更改**:
使用新命令行尝试克隆或推送到远程仓库,看看是否能成功连接。
如果以上步骤无法解决问题,可能是服务器端的问题,建议联系仓库管理员检查他们的配置。同时,
阅读全文