随笔分类 - linux 相关
摘要:jar -xvf .\xx.jar jar -cfM0 xx.jar ./
阅读全文
摘要:一般在 linux 下修改 dns 都是修改 /etc/resolv.conf 文件,但是打开后发现有句注释 Generated by NetworkManager 所以查了一下资料,可以使用 NetworkManager 来修改 dns # 查看网络链接 nmcli connection show
阅读全文
摘要:运行 docker-compose.yml 搭建数据库源,官方 mysql 样例数据源无法启动,改用其他 mysql 镜像 version: '2.1' services: postgres: image: debezium/example-postgres:1.1 ports: - "5432:5
阅读全文
摘要:find . -name \*.log -print0 | xargs -0 grep -n -H "Something" 参考 Filenames and linenumbers for the matches of cat and grep
阅读全文
摘要:官方自带 http 模块 python -m SimpleHTTPServer 8000 添加上传功能 github 仓库 simple_http_server #!/usr/bin/python # -*- coding: UTF-8 -*- """Simple HTTP Server With
阅读全文