今天将自己的一个旧手机Redmi Note 8找出来,想刷一个最新版本的全球版ROM : ginkgo_global_images_V12.5.2.0.RCOMIXM_20220216.0000.00_11.0_global_da0a599e0c.tgz。下载解压完成,直接运行flash_all.sh脚本完成刷机,但系统启动后显示: “The system has been destroyed” 。
解决方 …
今天将自己的一个旧手机Redmi Note 8找出来,想刷一个最新版本的全球版ROM : ginkgo_global_images_V12.5.2.0.RCOMIXM_20220216.0000.00_11.0_global_da0a599e0c.tgz。下载解压完成,直接运行flash_all.sh脚本完成刷机,但系统启动后显示: “The system has been destroyed” 。
解决方 …
socks是一种互联网协议,它通过一个代理服务器在客户端和服务端之间交换网络数据。
简单来说,它就是一种代理协议,扮演一个中间人的角色,在客户端和目标主机之间转发数 …
Pelican is a static site generator, written in Python. Highlights include: - Write your content directly with your editor of choice in reStructuredText or Markdown formats - Includes a simple CLI tool to (re)generate your site - Easy to interface with distributed version control systems and web hooks - Completely static output is easy to host anywhere
Pelican’s feature highlights include: - Articles (e.g., blog posts …
如何利用grep和sed实现搜索和替换
grep -Erl "M\\('local" .|xargs sed -Ei "" "s/M\\('local/M\\('remote/g"
grep -Erl "http://loca" .|xargs sed -Ei "" "s/http:\/\/local/http:\/\/remote/g"
Linux 下合并两个目录,软连接也一起同步。
rsync -K -a 源目录 被覆盖目录
比如:
rsync -K -a dir1/ dir2/
参考连接:https://linux.die.net/man/1/rsync
程序是一系列指令的集合,通常存为可执行文件。进程是程序的执行过程。
使用ps可以查看系统正在运行的进程。 ps --help显示该命令的用法。
ps -e -o USER,PID,PPID,GID,NAME
USER PID PPID GID NAME CMD
root 1 0 0 init init
root 2 0 …
Dockerizing a Python Flask App
Install nginx 1.27.2
docker pull nginx:1.27.2
docker pull python:3.13
services:
web:
container_name: example_nginx
image: nginx:1.27.2
privileged: true
ports:
- 80:80
- 443:443
volumes:
- "$PWD/html:/usr/share/nginx/html:rw"
- "$PWD/conf/conf.d:/etc/nginx/conf.d"
- "$PWD/logs:/var/log/nginx"
- "$PWD/certs:/etc/nginx/certs"
cd ~/.ssh
ssh-keygen -t rsa -C "example@example.com"
ssh-keygen -t ed25519 -C "your_email@example.com"
on Windows:
eval `ssh-agent -s`
ssh-add example
vim config
Host example
Hostname github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/example
cat example.pub
ssh -T …
在Windows 7中文版系统上使用7z压缩一些文件后,然后在Windows 10 Pro英文版系统上解压,发现凡是文件名中包含中文,最后都是乱码。
使用7z压缩文件时,对文件名的编码是采用Windows 系统默认字符集,而不是unicode编码。