Created
June 18, 2024 08:04
-
-
Save yylin1/cf2227121e6c0117907d40c28f9f9c5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <diskSetup> | |
| <device> | |
| <blockdev>/dev/sda</blockdev> | |
| <partition id="boot" partitiontype="esp"> | |
| <size>512M</size> | |
| <type>linux</type> | |
| <filesystem>fat</filesystem> | |
| <mountPoint>/boot/efi</mountPoint> | |
| <mountOptions>defaults,noatime,nodiratime</mountOptions> | |
| </partition> | |
| <partition id="slash1"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdb</blockdev> | |
| <partition id="slash2"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdc</blockdev> | |
| <partition id="raid1" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdd</blockdev> | |
| <partition id="raid2" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sde</blockdev> | |
| <partition id="raid3" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdf</blockdev> | |
| <partition id="raid4" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdg</blockdev> | |
| <partition id="raid5" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdh</blockdev> | |
| <partition id="raid6" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdi</blockdev> | |
| <partition id="raid7" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <device> | |
| <blockdev>/dev/sdj</blockdev> | |
| <partition id="raid8" partitiontype="esp"> | |
| <size>max</size> | |
| <type>linux raid</type> | |
| </partition> | |
| </device> | |
| <raid id="slash"> | |
| <member>slash1</member> | |
| <member>slash2</member> | |
| <level>1</level> | |
| <filesystem>ext4</filesystem> | |
| <mountPoint>/</mountPoint> | |
| <mountOptions>defaults,noatime,nodiratime</mountOptions> | |
| </raid> | |
| <raid id="raid"> | |
| <member>raid1</member> | |
| <member>raid2</member> | |
| <member>raid3</member> | |
| <member>raid4</member> | |
| <member>raid5</member> | |
| <member>raid6</member> | |
| <member>raid7</member> | |
| <member>raid8</member> | |
| <level>0</level> | |
| <filesystem>ext4</filesystem> | |
| <mountPoint>/raid</mountPoint> | |
| <mountOptions>defaults,noatime,nodiratime</mountOptions> | |
| </raid> | |
| </diskSetup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment