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
passwd | |
systemctl enable sshd.service | |
systemctl start sshd.service | |
parted -s /dev/sda mklabel gpt | |
parted -s /dev/sda mkpart "primary" "fat16" "50MB" "60MB" | |
parted -s /dev/sda mkpart "primary" "ext4" "1%" "99%" | |
parted -s /dev/sda set 1 bios_grub on | |
mkfs.ext4 /dev/sda2 |