Docker使用命令
镜像打包(推荐名字打包):`docker save -o redis.tar redis:5.0.2``docker save [id] > image.tar`镜像导入:`docker load bash`重启docker`service docker restart`关闭docker`echo $$ > /sys/fs/cgroup/cpu/tasks`...
阅读全文>>[系统]作者:haden点击:72好评:0
git tips
# 提交修改```git push origin ```# 本地同步远端分支```git remote prune origin```# 分支重命名1. 本地分支重命名```git branch -m ```2. 重命名分支推送远端```git push origin ```3. 删除远端旧分支```git push -...
阅读全文>>[系统]作者:haden点击:72好评:0
Windows cmd 计算hash指令
Windows CMD 命令行计算文件hash值的指令:```certutil -hashfile filename MD5certutil -hashfile filename SHA1certutil -hashfile filename SHA256```...
阅读全文>>[系统]作者:haden点击:189好评:0
远程Linux无法访问外网时设置VSCode Remote SSH Serve
工欲善其事,必先利其器。因为经常要开发Linux平台程序,而工作环境只有Windows桌面端与Linux服务器,并且都是运行在内网环境下,无法直接访问外网。想要在这种环境下找到一个趁手的...
阅读全文>>[系统]作者:haden点击:94好评:0
Sytemd Units和 Unit文件
> https://www.digitalocean.com/community/tutorials/understanding-systemd-units-and-unit-files# 介绍Linux 发行版越来越多地采用`systemd`初始化系统。这套功能强大的软件可以管理服务器的许多方面,从服务到安...
阅读全文>>[系统]作者:haden点击:198好评:0