ubuntu - 使用磁盘而不对其进行分区?

ubuntu - 使用磁盘而不对其进行分区?

我今天在 ubuntu 安装中添加了一个硬盘。我之前有 2 个硬盘。今天我添加了第三个。第三个硬盘是 sdc

运行lsblk它看起来像

sda      8:0    0    35G  0 disk
├─sda1   8:1    0   512M  0 part /boot/efi
├─sda2   8:2    0  32.5G  0 part /
└─sda3   8:3    0     2G  0 part [SWAP]
sdb      8:16   0    30G  0 disk /mnt/sdb
sdc      8:32   0    30G  0 disk
└─sdc1   8:33   0    30G  0 part /mnt/sdc1

sdb 正在使用中。我可以去做/mnt/sdb一个ls并查看其内容。

我该如何设置它才能使其没有分区?

例如如果我这样做fdisk /dev/sdb/

# fdisk /dev/sdb

Welcome to fdisk (util-linux 2.34).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

The old ext4 signature will be removed by a write command.

Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0x7eb7e7a3.

它确实看到了旧的 ext4 sig(?)但它也说没有识别的分区表。

我不知道我在那里做了什么,以及我是否应该重新审视/修复它。

答案1

正如@Bib 在上面的评论中所说......

在裸盘上创建文件系统(无需分区)是完全可能的;您甚至可以成功覆盖以前的分区表/操作(清除它?我从未尝试过)。

但如果世界上至少有一个操作系统可能不是对此感到‘高兴’。

那将是:

$ sudo mkfs -t ext4 /dev/sdb

相关内容