Skip to content

Commit

Permalink
改用 diskpart 获取卷 id
Browse files Browse the repository at this point in the history
  • Loading branch information
bin456789 committed May 4, 2024
1 parent 993b165 commit 75881a0
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions reinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1446,9 +1446,16 @@ find_main_disk() {
# diskpart 命令结果
# 磁盘 ID: E5FDE61C
# 磁盘 ID: {92CF6564-9B2E-4348-A3BD-D84E3507EBD7}
disk_index=$(wmic logicaldisk where "DeviceID='$c:'" assoc:value /resultclass:Win32_DiskPartition |
grep 'DiskIndex=' | cut -d= -f2 | del_cr)
main_disk=$(printf "%s\n%s" "select disk $disk_index" "uniqueid disk" | diskpart |
if false; then
# https://github.com/bin456789/reinstall/issues/76
disk_index=$(wmic logicaldisk where "DeviceID='$c:'" assoc:value /resultclass:Win32_DiskPartition |
grep 'DiskIndex=' | cut -d= -f2 | del_cr)
select_cmd="select disk $disk_index"
else
volume_index=$(printf "list volume" | diskpart | grep 'Partition' | awk '$3=="'$c'" {print $2}')
select_cmd="select volume $volume_index"
fi
main_disk=$(printf "%s\n%s" "$select_cmd" "uniqueid disk" | diskpart |
tail -1 | awk '{print $NF}' | sed 's,[{}],,g' | del_cr)
else
# centos7下测试 lsblk --inverse $mapper | grep -w disk grub2-probe -t disk /
Expand Down

0 comments on commit 75881a0

Please sign in to comment.