|
本帖最后由 hkkitlee 于 2021-7-1 12:44 编辑
原碼:Ryanboot-offical-linux-netbooter Github Gitee以GNU General Public License v3.0發佈
廢話:原本只是Ryanboot的一個小部分;打算加入幾個熱門的發行版就完事...
過程中發現一些很[有趣;另類;特別;特別的核心參數;獨特理念而設計及運行]的發行版。
由於預計越來越多不同發行版本加入菜單,導致選項過多頗凌亂;所以分拆出來。
啟動總覽Map: Github Gitee
日志Changelog: Github Gitee
因為iPXE能從 Github 或 Gitee下載腳本並執行,所以不再需要私人伺服器參與啟動。
而iPXE啟動操作系統所需的檔案都在(官方網站|其鏡像源)下載。只需輸入與你相近/或特定的源伺服地址即可(鏡源列表|Mirror site list)。
Selection/可選項:- Mirror 鏡像源
- Release 釋放版
- Version 版本
- Manual Kernel Parameter 手動核心參數
- TUI/GUI 文字/圖像介面
- Arch detection 架構自動偵測
下載:主伺服器 備用 Github Gitee mirror0 mirror1 SourceForge
詳細圖文教學使用 Github Gitee
或
- #!ipxe
- dhcp
- goto start
- :start
- chain --autofree https://github.com/hkkitlee/Ryanboot/raw/main/chain.ipxe || chain --autofree https://gitee.com/hkkitlee/Ryanboot/raw/main/chain.ipxe || chain --autofree http://hkkitlee.ddns.net:8999/chain.ipxe || goto start
复制代码 或
- #!ipxe
- dhcp
- goto start
- :start
- chain --autofree https://github.com/hkkitlee/Ryanboot-offical-linux-netbooter/raw/main/oln.ipxe || chain --autofree https://gitee.com/hkkitlee/Ryanboot-offical-linux-netbooter/raw/main/oln.ipxe || goto start
复制代码
20210629:以http為例,搭建公/私有云編:
老手可以略過。方法也千千萬萬。
搭建優點可以:提速;了解原理;手動更新/修改啟動文件等等…
只會說個大概操作步驟,提供軟件下載,Windows/Linux同樣操作。不會手把手 或 雙擊腳本之類的操作;畢竟權限、網站根目錄等細節都不盡相同。
工具:
rclone 掛載網盤到本地資料夾/目錄。
操作步驟:
萬變不離其宗—— 抄
首先設定遠端地址 ,以mirror0為例。
- No remotes found - make a new one
- n) New remote
- s) Set configuration password
- q) Quit config
- n/s/q> n
- name> remote
- Type of storage to configure.
- Choose a number from below, or type in your own value
- [snip]
- XX / http Connection
- \ "http"
- [snip]
- Storage> http
- URL of http host to connect to
- Choose a number from below, or type in your own value
- 1 / Connect to example.com
- \ "https://example.com"
- url> http://183.230.23.18:58000/ryanboot
- Remote config
- --------------------
- [remote]
- url = http://183.230.23.18:58000/ryanboot
- --------------------
- y) Yes this is OK
- e) Edit this remote
- d) Delete this remote
- y/e/d> y
- Current remotes:
- Name Type
- ==== ====
- remote http
- e) Edit existing remote
- n) New remote
- d) Delete remote
- r) Rename remote
- c) Copy remote
- s) Set configuration password
- q) Quit config
- e/n/d/r/c/s/q> q
复制代码
設定完畢,接著就是同步更新到你本機的網頁目錄(假設資料夾名a)(Linux: /home/local/directory/a , Windows: C:\a)
- rclone sync -i remote: /home/local/directory/a
复制代码
搭建公/私云完成
iPXE啟動後選擇系統,即可手動輸入剛剛建立的云地址啟動。
|
评分
-
查看全部评分
|