2023年

容器管理: https://github.com/portainer/portainer
jupyter: https://jupyter-docker-stacks.readthe...
文档站: http://mrdoc.zmister.com/project-7/do...
vscode网页版: https://github.com/cdr/code-server
在线画图: https://github.com/jgraph/drawio
开源git: https://docs.gitea.io/zh-cn/install-w...
接口调试: https://github.com/hoppscotch/hoppscotch
爬虫调度框架: https://github.com/crawlab-team/crawlab
性能监控: https://hub.docker.com/r/netdata/netdata
可道云: https://kodcloud.com/download/
jetbrain全家桶: https://github.com/JetBrains/projecto...
镜像管理:https://hub.docker.com/_/registry
镜像管理web端: https://hub.docker.com/r/konradkleine...
网站导航: https://hub.docker.com/r/arvon2014/we...
为知笔记: https://www.wiz.cn/zh-cn/docker
nextcloud: https://nextcloud.com/install/#instru...
密码管理: https://github.com/bitwarden
webSSH工具: https://github.com/nirui/sshwifty
web数据库管理工具: https://github.com/OmniDB/OmniDB
mongodb管理工具:https://github.com/mrvautin/adminMongo
图床: https://github.com/chevereto/Cheveret...
下载工具: https://github.com/P3TERX/Aria2-Pro-D...
视频播放器:https://jellyfin.org/
电子书阅读: https://github.com/troyeguo/koodo-reader

阅读全文

利用两个命令:
1、shutdown
2、at
----------------------------------
主要命令:shutdown -s -f
该命令表示,-s关闭计算机,-f强制关闭正在运行的程序而不出现警告
为了实现定时关机,可使用at命令
组合起来之后应该是
at 00:15 shutdown -s -f
这表示在00:15分执行shutdown -s -f操作。如果当前时间大于任务执行时间,则默认为明日执行。
----------------------------------
如果要重复执行一个任务,则可以使用every参数。该参数支持日期和星期的表示方式
例如at 00:15 /every:M,T,W,Th,F,S,Su shutdown -s -f
该命令表示每个周一到周五都执行该命令
也可以使用/evert:1,3,5,7,9等日期方式
-----------------------------------
任务的查看
如果要查看已经设定的任务,可直接执行at命令不带任何参数。
该命令返回两个结果。
1、列表是空的

阅读全文

Robocopy命令实现文件服务器每日镜像备份/增量备份操作

Robocopy是微软推出的可靠文件复制服务,经过测试,比xcopy更加优秀,特别是在复制ACL及文件时间戳方面。
免费同步软件通常在ACL同步这一块比较薄弱,而付费软件复杂操作,我们可以使用robocopy结合任务程序做到日常备份和增量备份。

阅读全文