2022年3月

一般这种情况都是因为项目分支过多,导致你要下载的东西太多,从而引起这个问题。网上有一个流传比较多的修改方案:

git config --global core.compression -1

使用上述命令,来修改压缩模式,我尝试过了没有用。

引起这个问题的根源是文件过多,所以我们可以分批次下载文件,先下载一部分,再下载剩下的。以下就是我的解决方案:

首先关闭 core.compression

git config --global core.compression 0

然后使用depth这个指令来下载最近一次提交

git clone --depth 1 url

然后获取完整库

git fetch --unshallow 

最后pull一下查看状态,问题解决

git pull --all

实例-子网-安全组,加上规则。

删除多余附件

systemctl stop oracle-cloud-agent
systemctl disable oracle-cloud-agent
systemctl stop oracle-cloud-agent-updater
systemctl disable oracle-cloud-agent-updater

停止firewall

systemctl stop firewalld.service

禁止firewall开机启动

systemctl disable firewalld.service

比如SSID为KELE_5GHz
密码为123456@kele

第一次连接SSID,需要使用密码:

nmcli device wifi connect KELE_5GHz password 123456@kele

保存了多个SSID的时候,切换SSID:

nmcli connection up KELE_5GHz

删除某个SSID:

nmcli connection delete KELE_5GHz

开机自动连接SSID:

nmcli connection modify KELE_5GHz connection.autoconnect yes

查看当前连接状态,已连接的SSID是绿色显示,保存的其他SSID为白色:

nmcli connection show

已经保存的SSID,放在这个目录里面:
/etc/NetworkManager/system-connections/KELE_5GHz.nmconnection

closure): unexpected EOF > proxy/vmess/encoding: invalid user: VMessAEAD is enforced and a non VMessAEAD connection is received. You can still disable this security feature with environment variable v2ray.vmess.aead.forced = false 

解决办法:
1,alterId都改成0就行了。服务端,客户端都要改。

其他办法要改环境变量。,麻烦。

参考:
https://github.com/Jrohy/multi-v2ray/issues/561
https://www.51vps.info/v2ray-invalid-user-vmessaead-is-enforced-and-a-non-vmessaead-connection-is-received/