From cfca845ed823354839b738244d9a077499289407 Mon Sep 17 00:00:00 2001 From: suti7yk5032 Date: Sun, 23 Jun 2024 21:07:50 +0900 Subject: [PATCH] =?UTF-8?q?=E7=A2=BA=E8=AA=8D=E3=81=AE=E3=83=A1=E3=83=83?= =?UTF-8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E3=81=AB=E6=94=B9=E8=A1=8C=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/linux/linux.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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