首页
统计
关于
Search
1
PVE 添加文件虚拟机
15 阅读
2
影视仓配置链接
14 阅读
3
2026年学习计划【服务器到期2030年11月18】
13 阅读
4
关于EF跟新数据库更新指定字段的设置
8 阅读
5
Debian11源
7 阅读
工作学习
Java
C#
PHP
MySql
Redis
Docker
面试
电脑维护
兴趣爱好
远航FPV
其他
登录
Search
冂人山
累计撰写
64
篇文章
累计收到
0
条评论
首页
栏目
工作学习
Java
C#
PHP
MySql
Redis
Docker
面试
电脑维护
兴趣爱好
远航FPV
其他
页面
统计
关于
搜索到
64
篇与
的结果
Debian11源
Debian11源 # /etc/apt/sources.list 11的源不太一样 deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free # deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
2025年12月05日
7 阅读
0 评论
0 点赞
S905 安装Docker OpenWrt
S905 安装Docker OpenWr # 修改源 vi /etc/apt/sources.list deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free # 更新源 apt-get update && apt-get upgrade apt install docker.io systemctl status docker # 拉取运行 FastOsDocker docker run --restart always -p 8081:8081 -p 8082:8082 -e TZ="Asia/Shanghai" -d -v /var/run/docker.sock:/var/run/docker.sock -v /etc/docker/:/etc/docker/ wangbinxingkong/fast:latest # 设置 eth0 为混杂模式 ip link set eth0 promisc on # 网卡永久混杂 [写入exec 0 之前] vi /etc/rc.local ip link set eth0 promisc on # 创建 docker 交换机 docker network create -d macvlan --subnet=192.168.1.0/24 --gateway=192.168.1.1 -o parent=eth0 macnet # 拉取运行 OpenWrt docker run --restart always --name OpenWrt -d --network macnet --privileged registry.cn-shanghai.aliyuncs.com/suling/openwrt:armv8 /sbin/init docker run --restart always --name OpenWrt -d --network macnet --privileged registry.cn-shanghai.aliyuncs.com/suling/openwrt:x86_64 /sbin/init
2025年12月05日
4 阅读
0 评论
0 点赞
PVE 7.4源
deb https://mirrors.ustc.edu.cn/debian bullseye main contrib deb https://mirrors.ustc.edu.cn/debian bullseye-updates main contrib deb https://mirrors.ustc.edu.cn/debian-security bullseye-security main contrib
2025年12月05日
5 阅读
0 评论
0 点赞
Qemu镜像格式转换工具
qemu-img镜像格式转换工具支持vhd、vmdk、qcow2、raw、vhdx、qcow、vdi或qed社区格式的镜像的相互例如,将CentOS 6.9镜像的vhd格式转换为qcow2格式,请执行如下命令: qemu-img convert -p -f vpc -O qcow2 centos6.9.vhd centos6.9.qcow2 执行如下命令转换镜像文件格式,以转换vmdk格式为qcow2格式的镜像为例。 qemu-img convert -p -f vmdk -O qcow2 centos6.9.vmdk centos6.9.qcow2 上述命令中各参数对应的说明如下: -p:表示显示镜像转换的进度。 -f后面为源镜像格式。 -O(必须是大写)后面的参数由如下3个部分组成:转换出来的镜像格式 + 源镜像文件名称 + 目标文件名称。
2025年12月05日
2 阅读
0 评论
0 点赞
PVE映射硬盘
锐捷企业交换机开启光口Ruijie>enable Ruijie#configure terminal Ruijie(config)#interface gigabitEthernet 0/24 Ruijie(config-if-GigabitEthernet 0/23)#medium-type fiber ------>将光口转换为电口 fiber 光口 copper 电口 Ruijie(config-if-GigabitEthernet 0/23)#end Ruijie#write ------>确认配置正确,保存配置
2025年12月05日
1 阅读
0 评论
0 点赞
1
...
11
12
13