我有Ubuntu的朋友在我的32 my的微型SD卡使用一个Raspberry Pi 2。我真的需要知道如何扩展我的文件系统。我查了一下,但我得到的只是一个错误(超出范围的值)。我会列出终端底部的读物。我真的很想在我的系统上有超过6mb。LOL。
航站楼:
michael@SilverPi2:~$ sudo fdisk /dev/mmcblk0
[sudo] password for michael:
Welcome to fdisk (util-linux 2.26.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): d
Partition number (1,2, default 2): 2
Partition 2 has been deleted.
Command (m for help): n
Partition type
p primary (1 primary, 0 extended, 3 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (2-4, default 2): 2
First sector (133120-62521343, default 133120): w
Value out of range.
First sector (133120-62521343, default 133120): 发布于 2016-03-01 21:45:24
首先:如果你还没有备份你的数据。如果在您的Raspberry pi上安装了G分区,我会建议您使用G分区。它的图形设计更容易使用,如果你不习惯fdisk。
如果您想使用fdisk:为了创建分区,您必须为分区设置物理边框。
First sector (133120-62521343, default 133120): w
Value out of range
当程序要求您输入最后一个扇区时,单击enter而不是w,然后再次单击enter。然后可以使用w编写分区表。
说明:程序要求您提供分区的物理开始。输入w是因为您想要编写分区表,但是fdisk请求一个值。首先,您必须输入分区的大小。该程序试图通过打印未使用块的范围来帮助您:133120 to 62521343。您必须在此范围内使用块作为分区的物理开始。
该程序建议您使用后面的块到第一个分区的最后一个块,以便有效地使用您的硬盘驱动器空间。如果您按下,enter程序将默认使用此块。对于最后一个块,它将推荐您在硬盘上的最后一个免费块。这样做之后,硬盘上的所有空间都将是一个分区。
https://askubuntu.com/questions/740691
复制相似问题