diff --git a/install/linux/linux.sh b/install/linux/linux.sh index 2dd6d83..06fc9ab 100644 --- a/install/linux/linux.sh +++ b/install/linux/linux.sh @@ -1,23 +1,23 @@ #!/bin/bash loadkeys jp106 #キーボードを日本語配列へ変更 -printf "Please enter your username\n" +printf "Please enter your username\n\n" read -r home_username -printf "Please enter your password\n" +printf "Please enter your password\n\n" read -sr home_password -printf "Please enter Hostname\n" +printf "Please enter Hostname\n\n" read -r hostname1 fdisk -l #ディスク一覧表示 printf "\nWhat disk do you want to install to? example:/dev/sda \n\n" read -r installdisk -printf "\nChoose the file system to use for your root partition. (ext4, btrfs)" +printf "\nChoose the file system to use for your root partition. (ext4, btrfs)\n\n" read -r filesystem -printf "\nChoose the kernel you want to use. (linux, zen, lts)" +printf "\nChoose the kernel you want to use. (linux, zen, lts)\n\n" read -r kernel #インストールするディスクを入力 -printf "%s (%s) is selected as the disk to install. Are you sure you want to perform the partition operation? (yes or no) \n" "$installdisk" "$filesystem" +printf "%s (%s) is selected as the disk to install. Are you sure you want to perform the partition operation? (yes or no) \n\n" "$installdisk" "$filesystem" read -r check1 #インストールするディスクを確認 if [ "$check1" == "yes" ]; then