群晖7.x编译img文件并加载驱动
  cxUBUJolJvYL 2023年11月02日 38 0

参考文章:

​https://wp.gxnas.com/11358.html​

​http://www.gebi1.com/forum.php?mod=viewthread&tid=299889&ordertype=1​

​https://gitee.com/ronggq/redpill-tool-chain​


访问​​https://github.com/tossp/redpill-tool-chain​​下载tossp大神的RedPill引导一键编译源代码仓库

redpill_tool_chain.sh需要先安装jq工具

yum -y install epel-release

yum install jq.x86_64

编译DS918+的引导,必须要用这个文件名

cp sample_user_config.json ds918p_user_config.json

修改上面json文件的pid、vid、sn、mac

群晖7.x编译img文件并加载驱动_ico

浏览器访问pocopico大神的扩展驱动源代码仓库

添加megaraid_sas、mpt3sas、ixgbe

找到3个驱动的url


 ./redpill_tool_chain add ​​https://raw.githubusercontent.com/pocopico/rp-ext/main/ixgbe/rpext-index.json​


 ./redpill_tool_chain.sh add ​​​https://raw.githubusercontent.com/pocopico/rp-ext/main/megaraid_sas/rpext-index.json​​​

 ./redpill_tool_chain.sh add ​​​https://raw.githubusercontent.com/pocopico/rp-ext/main/mpt3sas/rpext-index.json​

编译需要先安装docker,否则报错

不要用yum直接安装docker,版本太低,需要用阿里的epel源

yum-config-manager --add-repo ​​https://download.docker.com/linux/centos/docker-ce.repo​​ Loaded plugins: fastestmirror, product-id, subscription-manager

sudo yum install -y docker-ce docker-ce-cli ​containerd.io​​ docker-compose-plugin

编译 ds918

./redpill_tool_chain.sh auto ds918p_user_config.json

构建工具链镜像

  • ​./redpill_tool_chain.sh build ds3615xs-6.2.4-25556​
  • ​./redpill_tool_chain.sh build ds918p-7.0.1-42218​

制作 redpill 引导镜像

  • ​./redpill_tool_chain.sh auto ds3615xs-6.2.4-25556​
  • ​./redpill_tool_chain.sh auto ds918p-7.0.1-42218​
【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月08日 0

暂无评论

推荐阅读
  cOi2LVubBNG7   2023年11月02日   82   0   0 github服务器git
  nwrHrkoQE0C4   2023年11月02日   55   0   0 github负载均衡nginx
  8KhYbgszLLmZ   2023年11月02日   95   0   0 htmlgithubnginx
  5b99XfAwWKiH   2023年11月12日   35   0   0 githubC++openrmcfish
  UMG78UIvW0PY   2023年11月12日   21   0   0 服务端端口号json
cxUBUJolJvYL