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
| fallocate -l 2G void.img | |
| dd \ | |
| if=Armbian_26.2.1_Rock-5b-plus_trixie_current_6.18.15_minimal.img \ | |
| of=void.img \ | |
| bs=512 \ | |
| skip=64 \ | |
| seek=64 \ | |
| count=32704 \ | |
| conv=notrunc # Copy bootloaders (spl/idbloader and proprietary memory training blob, u-boot, etc...) from the start of an Armbian image but don't copy the first 64 sectors because that's the GPT headers. |
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
| # /etc/netplan/50-cloud-init.yaml | |
| network: | |
| ethernets: | |
| eth0: | |
| dhcp4: false | |
| bridges: | |
| br0: | |
| dhcp4: true | |
| interfaces: |