谷歌浏览器无法使用麦克风问题处理

谷歌浏览器强制http使用麦克风: –unsafely-treat-insecure-origin-as-secure=http://192.168.1.1

trx trx Published on 2025-03-19

Oracle数据库管理手册

一、日常维护 1. 数据对象查询 1.1 表结构与数据 -- 查看表结构 DESC table_name; -- 查询"

trx trx Published on 2025-03-06

minikube启动单机k8s集群

Minikube首页、文档和下载 - 轻松创建单机版 Kubernetes 集群 - OSCHINA - 中文开源技术交流社区 指定阿里云仓库 minikube start --memory=81920 --cpus=30 --image-repository='registry.cn-hangzh

trx trx Published on 2025-03-05

systemctl

# 查询开机自启服务 systemctl list-unit-files --type=service --state=enabled #

trx trx Published on 2025-03-04

linux中账号解锁

# 查询账号状态 passwd -S root # 密码错误次数过多解锁 pam_tally2 --user=root --reaet faillock --user root --reset # 账号过期解锁 chage -E -1 root # 密码过期解锁 passwd -e root

trx trx Published on 2025-02-28

pip使用国内源

pip install <package_name> -i https://pypi.tuna.tsinghua.edu.cn/simple

trx trx Published on 2025-02-19

CURL查询URL返回时间

curl -o /dev/null -s -w "响应时间: %{time_total} 秒\n" https://192.168.1.1

trx trx Published on 2025-01-20

powershell常用命令

# 获取本机IP地址,以网卡+IP的方式显示 Get-NetIPAddress -AddressFamily IPv4 | Where-Object { $_.InterfaceAlias -notlike "*Loopback*" } | Select-Object InterfaceAlias,

trx trx Published on 2025-01-15

常见漏洞修复(持续更新)

CORS跨域漏洞 通过nginx结合lua脚本实现 # 在server块中指定lua脚本路径 access_by_lua_file '/opt/lua/cors.lua'; -- lua脚&#

trx trx Published on 2025-01-10

夜莺监控嵌入grafana配置

Grafana配置 root_url = https://x.x.x.x:8443 # nginx代理的新地址 cookie_secure = true cookie_samesite = none allow_embedding = true Nginx配置 server {

trx trx Published on 2025-01-10
Previous Next