我尝试安装外部硬盘,但似乎其中没有分区。
fdisk -l
表明
磁盘 /dev/sda:1.8 TiB,2000398934016 字节,3907029168 个扇区
但没有 /dev/sda1 或 sda2 等。
您能告诉我将其作为整个 /dev/sda1 的 CLI 命令吗?
谢谢!
答案1
使用 fdisk 工具示例将类似于以下内容
fdisk /dev/sda
#### In fdisk #####
o #blanks out drive
n # creates a new partition
<enter> #partition number
<enter> #first sector
<enter> #last sector (enter assuming you only want a single partition
w # writes all the changes
#### end fdisk ####
fdisk -l #This is a check to see you made lasting changes
mkfs.ext4 /dev/sda1 #format the filesystem
希望这可以帮助