web-dev-qa-db-ja.com

sfdiskに引数オプションがありませんか?

sfdisk --delete $disk

Ubuntu18.04以降で動作します。 Ubuntu 16.04 LTSの同等のコマンドは何ですか?

buntu 16.04 LTS(-削除がありません)

buntu 18.04 LTS(-現在の削除)

2

ソリューション1:ソースからsfdiskをビルドしてインストールします(より新しいバージョンを使用できるようにするため)

wget https://mirrors.Edge.kernel.org/pub/linux/utils/util-linux/v2.35/util-linux-2.35.tar.gz
tar -xvf util-linux-2.35.tar.gz
cd cd util-linux-2.35
./configure 
make
make install
/usr/local/bin/sfdisk --delete $disk

ソリューション2:use fdisk

# list disk and partitions
fdisk -l
# open the target disk with fdisk
fdisk /dev/target-disk
# then use the d command option to delete the partition you want to remove
# then use the w command option to save the changes 
3
intika

wipefs -a -f $disk

トリックを行います

0
user4089