上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: # 以下命令可以解决 sudo 权限不够的问题 sudo bash -c "echo 3 > /proc/sys/vm/drop_caches" # 以下命令也可以 sudo sysctl -w vm.drop_caches=3 阅读全文
posted @ 2022-03-20 23:36 wangshaodong 阅读(693) 评论(0) 推荐(0)
摘要: 可以通过一些命令设置 可执行文件的capabilities 或者查看进程或者文件的capabilites # opensuse 安装命令 sudo zypper install -y libcap-ng-utils libcap-progs # debian 安装命令 sudo apt instal 阅读全文
posted @ 2022-03-20 23:22 wangshaodong 阅读(364) 评论(0) 推荐(0)
摘要: 内核mtd子模块 需要开启 cmdline partition parse的支持 bootargs 要配置正确的分区表 uboot# setenv bootargs console=ttyS0,115200 root=/dev/mtdblock2 rootfstype=jffs2 init=/ini 阅读全文
posted @ 2022-03-20 22:37 wangshaodong 阅读(234) 评论(0) 推荐(0)
摘要: Sm3 国密加密 华为的openEuler20 安装的时候 用户密码的加密存储支持 此算法 aes-ecb 最简单的加密模式即为电子密码本(Electronic codebook,ECB)模式, 需要加密的消息按照块密码的块大小被分为数个块,并对每个块进行独立加密 aes-cbc 1976年,IBM 阅读全文
posted @ 2022-03-20 22:29 wangshaodong 阅读(75) 评论(0) 推荐(0)
摘要: widows 添加开机启动的方法 可以通过把可执行文件的快捷方式拖拽到 shell:startup 路径中实现开机启动 windows + R的运行窗口输入 shell:startup # C:\Users\username\AppData\Roaming\Microsoft\Windows\Sta 阅读全文
posted @ 2022-03-20 22:17 wangshaodong 阅读(170) 评论(0) 推荐(0)
摘要: windows 修复 sfc /SCANNOW rem 上一条命令发现问题才执行后续命令 Dism /Online /Cleanup-Image /ScanHealth DISM /Online /Cleanup-image /RestoreHealth sfc /SCANNOW 阅读全文
posted @ 2022-03-20 22:10 wangshaodong 阅读(71) 评论(0) 推荐(0)
摘要: windows 配置本地转发 netsh interface portproxy add v4tov4 listenaddress=127.0.0.1 listenport=445 connectaddress=114.114.114.114 connectport=1445 # 监听本地 到445 阅读全文
posted @ 2022-03-20 22:06 wangshaodong 阅读(308) 评论(0) 推荐(0)
摘要: windows 命令行 配置samba net use # 查看所有 samba 连接 net use /delete * # 移除所有samba net use z: /delete # 删除 z:盘映射 net use z: \\192.168.28.22\wang /user:username 阅读全文
posted @ 2022-03-20 22:05 wangshaodong 阅读(1670) 评论(0) 推荐(0)
摘要: HDMI HDMI switch HDMI 子协议 CEC CEC Consumer Electronics Control http://www.4k8k.xyz/article/ftswsfb/100183640 CEC(Consumer Electronics Control)是一套完整的单总 阅读全文
posted @ 2022-03-20 21:56 wangshaodong 阅读(43) 评论(0) 推荐(0)
摘要: 术语列表 iGPU : integrated GPU : GPU that's in the CPU, dGPU : dedicated GPU : your actual graphic card. 阅读全文
posted @ 2022-03-20 21:55 wangshaodong 阅读(171) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页