利用未使用的硬盘空间

利用未使用的硬盘空间

我有一台 MK802 迷你电脑,配有一张运行 Rikomagic Linux 的 16GB SD 卡;但是,我甚至无法使用超过 3.7GB 的空间。我在 SD 卡上安装的系统映像 (.IMG) 约为 7.8GB。

“fdisk -l”显示我们确实有未使用或未安装的空间:

Disk /dev/nandi: 2252 MB, 2252341248 bytes
255 heads, 63 sectors/track, 273 cylinders, total 4399104 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: 0x00000000

     Device Boot      Start         End      Blocks   Id  System

Disk /dev/mmcblk0: 15.9 GB, 15931539456 bytes
4 heads, 16 sectors/track, 486192 cylinders, total 31116288 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: 0x8daf8ee2

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1            2048       34815       16384   83  Linux
/dev/mmcblk0p2           34816     7858175     3911680   83  Linux

在我看来,大部分存储都在 /dev/mmcblk0p2 中;如果可能的话,我该如何使它在我的系统中可用,是将 mmcblk0p2 扩展到未使用的空间还是将未使用的空间添加到 /mnt/?

答案1

我不确定您运行的是什么操作系统。根据 Rikomagic 网站,MK802 运行 Android。您说的 Rikomagic Linux 是指这个吗?还是您在机器上安装了实际的 Linux 发行版?

如果你运行正确的 Linux,您应该能够挂载分区。尝试以下操作(以 root 身份):

  1. 创建挂载点

    mkdir /mnt/data
    
  2. 安装设备

    mount /dev/mmcblk0p2 /mnt/data
    

如果有效,您可以通过将此行添加到您的/etc/fstab(假设分区格式为 ext4,如果不是,请进行相应更改)来使其永久生效:

/dev/mmcblk0p2  /mnt/data   ext4    defaults    0   0

相关内容