首页
关于 About
网站安全性 Security
Search
1
Chrome/Chromium 在 Linux 平台的视频硬解方案
1,433 阅读
2
将 USB 设备连接到 WSL2
296 阅读
3
关闭 Intel VMD 解决 INACCESSIBLE_BOOT_DEVICE 蓝屏
219 阅读
4
为河北邯郸被害少年发声
193 阅读
5
Android 14 平台程序开发中文件共享权限问题
188 阅读
数字安全
教程
公告
默认
高通设备开发
登录
Search
标签搜索
Windows
Linux
Qualcomm
QCS8250
SM8250
高通
Chromium
Chrome
AppArmor
PKI
Android
OpenWrt
NVIDIA
CertificateTransparency
X509
Python
pip
Docker
Electron
WSL
日暮清林
累计撰写
21
篇文章
累计收到
11
条评论
首页
栏目
数字安全
教程
公告
默认
高通设备开发
页面
关于 About
网站安全性 Security
搜索到
13
篇与
的结果
2024-07-23
新版本 Chrome 122+ 关闭安全提示
前言Google Chrome 新版本浏览器特别烦人,下载文件总会扫描浪费时间,在设置中关闭“安全浏览”禁止扫描又会提示已禁用“安全浏览”,无法验证文件安全性。解决方案使用 Chrome Enterprise Policy 即企业策略关闭相关限制。对于 Windows 平台可以使用注册表来导入,在HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome中添加下面四项 DWORD 十六进制值{alert type="info"}如果该注册表目录不存在,创建即可{/alert}DisableSafeBrowsingProceedAnyway=1SafeBrowsingEnabled=0InsecureFormsWarningsEnabled=0DownloadRestrictions=0{message type="warning" content="下面的方法测试无效,但也可以尝试"/}打开 Chrome 内部设置 URL: chrome://settings/content/insecureContent 在“允许显示不安全内容”中添加[*.]com、 [*.]net、[*.]top、[*.]xyz、[*.]cn、[*.]su等
2024年07月23日
115 阅读
5 评论
0 点赞
2024-07-23
关闭 Intel VMD 解决 INACCESSIBLE_BOOT_DEVICE 蓝屏
前言重装 Windows 11 系统后开机,引导界面转圈半天后蓝屏报错 INACCESSIBLE_BOOT_DEVICE,查阅资料发现是 Intel VMD 技术导致的,由于安装的系统镜像内没有 Intel VMD 驱动,导致无法识别可启动的引导设备,从而导致蓝屏。解决方案重启到主板 BIOS,找到 VMD 相关选项,关闭即可。
2024年07月23日
219 阅读
0 评论
0 点赞
2024-06-10
管理员取得所有权注册表文件
前言使用某些脚本创建了一些拥有系统权限的系统文件,无法删除,突然想起微软的“祖宗之法”——管理员取得所有权教程保存下面的代码到注册表 .reg 文件后执行导入。 需要注意:如果使用记事本则确保文件编码为 ANSI 而非 UTF-8,如果使用 VSCode 等则确保文件编码为 GB 2312。Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\runas] @="管理员取得所有权" "Icon"="C:\\Windows\\System32\\imageres.dll,102" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\*\shell\runas\command] @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" [HKEY_CLASSES_ROOT\exefile\shell\runas2] @="管理员取得所有权" "Icon"="C:\\Windows\\System32\\imageres.dll,102" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\exefile\shell\runas2\command] @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" [HKEY_CLASSES_ROOT\Directory\shell\runas] @="管理员取得所有权" "Icon"="C:\\Windows\\System32\\imageres.dll,102" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\Directory\shell\runas\command] @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
2024年06月10日
23 阅读
0 评论
0 点赞
2024-06-10
tmux 最常用命令
前言总是忘记 tmux 咋用(保存当前会话和进程到后台运行),写篇文章记录一下。 教程新建 session命令:tmux [new -s <name>] 注:会话 ID 从 0 开始递增。分离 session快捷键:CTRL+B > D 命令:tmux detach打开 session命令:tmux attach -t <ID/name> 终止 session命令:tmux kill-session -t <ID/name> 切换 session 命令:tmux switch -t <ID/name>重命名 session命令:tmux rename-session -t <ID> <new-name>
2024年06月10日
22 阅读
0 评论
0 点赞
2024-04-20
Windows 下 go get 等命令使用 HTTP 代理(非 GOPROXY)
前言折腾了半天,设置了 HTTP_PROXY 也不行,最后发现必须小写。教程设置环境变量即可。(变量名需全小写)对于 cmd.exe:set http_proxy=http://example.com:1080 set https_proxy=http://example.com:1080对于 powershell.exe/pwsh.exe:$env:http_proxy="http://example.com:1080" $env:https_proxy="http://example.com:1080"网上冲浪时发现一篇针对开发时代理环境设置的很好的文章,补充到这里:https://keqingrong.cn/blog/2021-02-19-proxy-and-pac/
2024年04月20日
24 阅读
0 评论
0 点赞
1
2
3