标签: Linux
thumbnail

GPG签名报错error: gpg failed to sign the data:

环境: Ubuntu24.04 今天在学习给github添加gpg签名,签名时提示 error: gpg failed to sign the data: [GNUPG:] KEY_CONSIDERED 6Axxxxxxxxxxxxxxxxxxxxxxxxx……
thumbnail

Ubuntu24.04修改DNS

vi /etc/systemd/resolved.conf 打开resolved.conf文件写入 DNS=8.8.8.8#dns.google 8.8.4.4#dns.google 2001:4860:4860::8888#dns.google 2001:4860:4860::8……
thumbnail

树莓派安装CUPS打印服务器实现局域网共享iPhoneAirprint打印

家里打印机型号有点老,只能USB打印,要实现局域网共享可以安装免费的PaperCut Mobility Print,也可以安装打印CUPS服务器来实现,今天安装CUPS。 1. 构建CUPS……
thumbnail

Rclone开机自动挂载onedrive备份网站数据

因为网站数据没备份重新搞一次有点头大,手里有几个onedrive账号,刚好用来备份。 1. 获取微软账号的client_id和client_secret 访问https://portal.azure.com/……
thumbnail
Web

Cloudflare Zero Trust保护网站后台

今天为大家带来的是利用Cloudflare大好人家的Zero Trust保护网站后台。 登录Cloudflare,首页点击Zero Trust→Access→Applications→Add an application,选择se……
thumbnail

从零搭建自己的密码管理器-Vaultwarden

Bitwarden是非常流行的密码管理器,Vaultwarden是使用Rust语言编写的开源的Bitwarden服务端API的替代实现。本文将利用本地树莓派Docker部署Vaultwarden+Cloudf……
thumbnail
Web

本站支持HTTP3了

系统:Ubuntu 24.04 openssl从3.2版本已经合入QUIC cd /root git clone https://github.com/openssl/openssl.git git clone https://github.com/arut/nginx-……
thumbnail

Ubuntu24.04编译最新curl编译支持HTTP3和ECH

今天需要编译curl测试一下http3是否已开启,记录一下。 git clone --recursive -b 0.22.0 https://github.com/cloudflare/quiche cd quiche/ cargo build --……