我使用 fdisk 创建了一个分区 sda3,但是之后我看不到 /dev/sda3。
如果我使用 fdisk -l,我就会看到这个。
test@jylenovo:~$ sudo fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000ded3d
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 292968447 146483200 83 Linux
/dev/sda2 945522686 976771071 15624193 5 Extended
/dev/sda3 292968448 800000000 253515776+ 83 Linux
/dev/sda5 945522688 976771071 15624192 82 Linux swap / Solaris
Partition table entries are not in disk order
但是,我没有看到这样的 /dev/sda3。
test@jylenovo:~$ ls /dev/sda3 -l
ls: cannot access /dev/sda3: No such file or directory
我错过了什么?
答案1
Linux 内核尚未获悉您已经创建了分区。
您可以重新启动,或者使用以下partprobe
命令:
sudo partprobe
您甚至不需要指定磁盘参数。它将测试所有驱动器是否有新分区。请参阅man partprobe
在partprobe command
分开包裹。