
gparted에서는 디스크를 파티션으로 다시 분할하고 파티션을 파일 시스템으로 포맷하는 것이 매우 빠릅니다. 파티션에 0이 기록되지 않는 것 같습니다.
명령을 사용할 때 어떻게 동일한 효과를 얻을 수 있습니까? 이것이 내가 얻는 것입니다:
$ sudo mkfs -t ntfs /dev/sdb1
Cluster size has been automatically set to 4096 bytes.
Initializing device with zeroes: 14% 16%
답변1
파티션을 NTFS로 포맷하려면 mkfs.ntfs
또는 를 사용하세요 mkntfs
. 에서 man mkfs
:
This mkfs frontend is deprecated in favour of filesystem specific
mkfs.<type> utils.
NTFS의 경우 -f
또는 -Q
플래그를 추가하여 빠른 포맷을 수행할 수 있습니다. 에서 man mkntfs
:
-f, --fast, -Q, --quick
Perform quick (fast) format. This will skip both zeroing of the volume and bad sector checking.
따라서 명령은 다음과 같아야 합니다.
$ sudo mkfs.ntfs -f /dev/sdb1