随笔分类 -  随笔

摘要:一、暂时解决方案 sudo softwareupdate --ignore "macOS big sur" defaults write com.apple.systempreferences AttentionPrefBundleIDs 0 重启终端 killall Dock 添加hosts屏蔽 阅读全文
posted @ 2020-12-31 10:55 ColaIce 阅读(327) 评论(0) 推荐(0)
摘要:Git Git的配置 1.初始化配置文件 git config --global user.name "用户名" git config --global user.email "邮箱" 2. 初始化秘钥 检查是否有秘钥 cd ~/.ssh检查文件夹是否为空,秘钥文件名为id_rsa.pub 生成秘钥 阅读全文
posted @ 2020-10-22 22:08 ColaIce 阅读(195) 评论(0) 推荐(0)
摘要:使用修改启动服务参数的方式来更新user表,达到无密码登陆的目的。 1.关闭系统下运行的mysql服务 (1)杀掉进程号达到关闭目的 先使用ps -ef|grep mysql查找进程号,然后使用kill+ PID的方式杀掉进程。 (2)使用systemctl工具来关闭mysql服务 systemct 阅读全文
posted @ 2019-07-13 12:49 ColaIce 阅读(4434) 评论(0) 推荐(0)