[Solved] Disk utility to use in scripts
[Solved] Disk utility to use in scripts
Is there any good alternative to parted, that I can use in scripts? Parted main problem is that it requires user confirmation one each action.
You're viewing a single thread.
Not something I've done before, but have you tried
fdisk
?3 2 Replyfdisk
is completely interactive, not suitable for scripting.sfdisk
is a "scriptable fdisk".3 0 ReplyEven the manpage Telorand linked mentions it by name for non-interactive use.
Also, make sure you use the right program depending on thr partition table :
sgdisk
is the right choice for GPT disks,sfdisk
is for MBR.3 1 ReplyThere are few
fdisk
options that work non-interactively, like-l
(list partitions). It is impossible to create or delete partitions this way.From the
sfdisk
man page:Since version 2.26 sfdisk supports MBR (DOS), GPT, SUN and SGI disk labels
1 0 Reply