探序基因计算机工作室 整理
centos要挂载大于2T的硬盘,需要一些技巧。
fdisk -l 查看磁盘的地址,例如知道了/dev/sdd
Parted /dev/sdd
mklabel gpt
mkpart primary 0 -1
quit
[root@localhost usb1]# mkfs.ntfs -F /dev/sdd
/dev/sdd is entire device, not just onepartition.
mkntfs forced anyway.
Cluster size has been automatically set to4096 bytes.
Initializing device with zeroes: 0%
速度非常非常地慢,慢的话加-f参数
参数:-f, --fast,Perform a quick format;-F, --force,Force execution despite errors
参考:
网友评论