上一页 1 2 3 4 5 6 7 ··· 18 下一页
  2023年12月20日
摘要: 编辑/etc/default/grub文件 GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on video=efifb:off" 阅读全文
posted @ 2023-12-20 11:57 项希盛 阅读(48) 评论(0) 推荐(0) 编辑
  2023年12月15日
摘要: 首先打开管理后台,后面跟上/cgi-bin/baseinfoSet.cgi 例如http://192.168.1.1:8080/cgi-bin/baseinfoSet.cgi 然后找到"baseinfoSet_TELECOMPASSWORD": "105&73&72&107&106&54&111&7 阅读全文
posted @ 2023-12-15 10:50 项希盛 阅读(4560) 评论(1) 推荐(0) 编辑
  2023年11月19日
摘要: docker跑mongo主从复制 生成主从复制密钥 openssl rand -base64 741 >./root/mongo/replica.key ./docker-compose.yml version: '3.1' services: mongo: container_name: 'mon 阅读全文
posted @ 2023-11-19 09:39 项希盛 阅读(26) 评论(0) 推荐(0) 编辑
  2023年10月25日
摘要: 首先关机,然后挂载系统盘 进到\Windows\System32目录 例如 cd /D F:\Windows\system32 然后通过下面代码替换【讲述人】 takeown.exe /F narrator.exe icacls.exe narrator.exe /grant administrat 阅读全文
posted @ 2023-10-25 18:07 项希盛 阅读(83) 评论(0) 推荐(0) 编辑
  2023年10月11日
摘要: SqlServer中获取数据库中每个表的行数 CREATE TABLE #RowCounts(NumberOfRows BIGINT,TableName VARCHAR(128)) EXEC sp_MSForEachTable 'INSERT INTO #RowCounts SELECT COUNT 阅读全文
posted @ 2023-10-11 09:41 项希盛 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Node.js实现websocket服务器,转换UDP数据 const dgram = require('dgram'); function udp_server() { const server = dgram.createSocket('udp4'); server.on('error', (e 阅读全文
posted @ 2023-10-11 05:56 项希盛 阅读(56) 评论(0) 推荐(0) 编辑
摘要: C#实现抓包,并过滤UDP using PacketDotNet; using SharpPcap; using SharpPcap.LibPcap; using System; using System.Linq; using System.Net.Sockets; using System.Te 阅读全文
posted @ 2023-10-11 05:56 项希盛 阅读(289) 评论(0) 推荐(0) 编辑
  2023年9月21日
摘要: pve系统盘扩容 fdisk /dev/vda输入n然后按几下回车直到提示Created a new partition最后输入w退出 pvcreate /dev/vda4vgextend pve /dev/vda4vgs #查看可用容量lvresize -r -L+40G /dev/pvelvs 阅读全文
posted @ 2023-09-21 17:49 项希盛 阅读(690) 评论(0) 推荐(0) 编辑
  2023年9月18日
摘要: 如果要分别设置文件夹和文件的权限,建议先设置全部目录和文件为600或644 首先cd到你要设置权限的文件夹 第1种情况:只有自己能读写,其他人无权访问(隐私文件)的话,就是用600 chmod -R 600 . chmod -R u+X . 第2种情况:只有自己能读写,其他人只读(共享文件)的话,就 阅读全文
posted @ 2023-09-18 21:01 项希盛 阅读(247) 评论(0) 推荐(0) 编辑
  2023年8月24日
摘要: 1:可以通过访问页面找到download the latest stable 点击下载 https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers 2:可以通过下面的链接直接下载 https://fedorapeople.org/groups/virt/v 阅读全文
posted @ 2023-08-24 15:34 项希盛 阅读(549) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页