summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2021-12-28 12:51:53 -0600
committerKyle K <kylek389@gmail.com>2021-12-28 13:02:24 -0600
commit3e656edd6e33d6a4678b17920bfba27aee71b5f0 (patch)
treeb4326796cd2f56db875f24a5796bf46cb3f69cfe
parent828742e51a0af7051c36d5a01b7b07e956540698 (diff)
downloadgentoox-3e656edd6e33d6a4678b17920bfba27aee71b5f0.tar.gz
gentoox-3e656edd6e33d6a4678b17920bfba27aee71b5f0.tar.bz2
gentoox-3e656edd6e33d6a4678b17920bfba27aee71b5f0.zip
remove 'dd' that was zeroing out beginning of install disk in favor of wipefsHEADmaster
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 0d46a1e..7baad47 100755
--- a/install.sh
+++ b/install.sh
@@ -133,7 +133,7 @@ done
if [[ $partitioning_mode = "a" ]]; then
- dd if=/dev/zero of=$drive bs=1M count=1
+ wipefs --all --quiet $drive && sync
if [[ ! -z $UEFI_MODE ]]; then
echo -e "o\nY\nn\n\n\n+256M\nEF00\nn\n2\n\n\n\nw\nY\n" | gdisk $drive
if [[ $drive =~ "nvme" ]]; then