相关文章
【Ubuntu 18.04 安装截图软件 flameshot 】
安装命令:
sudo apt-get install flameshot
使用命令:
flameshot gui
创建快捷键:设备->键盘->>输入名字和快捷键
截完图后保存CtrlS,复制到剪贴板 CtrlC
建站知识
2024/11/23 15:19:57
Zookeeper分布式命名服务实战
目录
分布式命名服务
分布式API目录 分布式节点的命名
分布式的ID生成器
分布式的ID生成器方案:
基于Zookeeper实现分布式ID生成器
基于Zookeeper实现SnowFlakeID算法 分布式命名服务 命名服务是为系统中的资源提供标识能力。ZooKeeper的命名服务主要是利用Z…
建站知识
2024/11/23 15:16:28
【issue-环境】Windows安装Docker
启用Hyper-V以在 Windows 10上创建虚拟机
法一:使用 PowerShell 启用 Hyper-V 以管理员身份打开PowerShell控制台,运行以下命令: Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All法二:通过设置中/控…
建站知识
2024/11/23 15:39:52
Linux: config: DEBUG_FS
config DEBUG_FS bool “Debug Filesystem” help debugfs is a virtual file system that kernel developers use to put debugging files into. Enable this option to be able to read and write to these files. For detailed documentation on the debugfs API, see Docum…
建站知识
2024/10/21 21:14:52
mac配置L2TP连接公司内网
1. 打开系统设置 2. 打开网络 3. 点击网络页面其他服务右下角三个点,添加VPN配置中的L2TP 4. 配置VPN,服务器填写公司的服务器ip,共享密钥没有可以随便填写 5. 打开终端编辑文件
sudo vim /etc/ppp/opt…
建站知识
2024/10/21 19:48:35
armbian ubuntu 小盒子安装nodejs npm vue3 环境
1.直接通过apt-get install nodejs 的版本太低了 我的是v12 我试了下
npm create vuelatest这种方式不行
所以就卸载了自动安装的nodejs apt remove nodejs
去淘宝的ftp上下载对应的版本
CNPM Binaries Mirror
我的小盒子是linux arm64版本 wget 之后解压 然后创建符号…
建站知识
2024/10/21 21:59:22
开发安全之:Header Manipulation
Overview 方法 echo_json() 包含未验证的数据, 这会招致各种形式的攻击,包括:cache-poisoning、cross-site scripting、cross-user defacement、page hijacking、cookie manipulation 或 open redirect。
Details
以下情况中会出现 Header …
建站知识
2024/10/21 21:45:20