10 2019 档案

摘要:Bcompare 提示 “这个授权密钥已被吊销” 解决方法 打开文件夹 %appdata%\Scooter Software 找到相应的版本,例如 Beyond Compare 3 删除里面的 BCState.xml 和 BCState.xml.bak (注意不要整个 Beyond Compare 阅读全文
posted @ 2019-10-30 10:51 ibingshan 阅读(3382) 评论(0) 推荐(0)
摘要:git 获取 remote 的 url git ls-remote --get-url [remote] 例如: git ls-remote --get-url origin 阅读全文
posted @ 2019-10-29 11:29 ibingshan 阅读(7075) 评论(0) 推荐(0)
摘要:git daemon 安装和使用 系统:Cent OS 8 安装 git 和 git daemon(不同系统有不同的安装命令) yum install -y git yum install -y git-daemon git daeom 不是 git 命令,git daemon 为用户提供TCP协议 阅读全文
posted @ 2019-10-28 15:02 ibingshan 阅读(3476) 评论(0) 推荐(0)
摘要:linux systemd 从简单的例子入门 网上很多相关链接,一上来就给一大堆命令和讲解,让人头都大。 我们希望有一个service(服务),让它在开机启动的时候就执行。 用 root 登陆以后: 新建service vim /etc/systemd/system/my-test-daemon.s 阅读全文
posted @ 2019-10-28 14:40 ibingshan 阅读(1256) 评论(0) 推荐(1)
摘要:linux 用户,密码,用户组 在root登陆的情况下: 用户密码: useradd <username> passwd <username> <提示输入密码>: userdel <username> rm -rf <username> #删除用户的文件夹 用户组: groupadd <groupn 阅读全文
posted @ 2019-10-23 15:09 ibingshan 阅读(377) 评论(0) 推荐(0)