环境 服务器安装有一个G的硬盘目前已经划分为//home/chroot和/swap详细的分区信息如何下所示 Command (m for help): p Disk /dev/hda: GB bytes heads sectors/track cylinders Units = cylinders of * = bytes Device BootStart EndBlocks IdSystem /dev/hda * Linux /dev/hda +Linux /dev/hdaExtended /dev/hda Linux swap /dev/hda Linux 然后现在希望从/home分区里面分出大约GB的空间用于安装FreeBSD 过程 首先我们需要调整文件系统的大小(注意是文件系统而不是分区的大小)然后对调整完毕的文件系统进行检查然后再进一步调整分区的大小 文章以我自己用的系统为例子实际操作时根据情况调整即可 用惯了传统调整硬盘工具的人可能会认为文件系统和硬盘的分区之间是统一的实际上他们之间并不是完整的整体(这也就是为什么BSD可以在一个硬盘分区里面制作多个文件系统分区)想像一下带有移动式书架的书橱你可以通过移动式书架调整书橱里面书籍的位置把书当成文件系统你可以在书橱里面放满书籍也可以通过移动式书架调整书橱的空间当然也可以通过书架调整书橱里面书籍存放的位置如下图所示 |<-- hda1------>|<-- hda2------>| +++ |XXXXXXXXXXXXXXX|XXXXXXXXXX|| |XXXXXXXXXXXXXXX|XXXXXXXXXX|| +++ 硬盘分区/dev/hda中的文件系统占满了整个分区而/dev/hda中的文件系统只占用了/左右的分区 基本的原理就是这样现在让我们开始调整/dev/hda中文件系统的大小 [root@ringmail root]# umount /home [root@ringmail root]# resize_reiserfs s M /dev/hda <-------------resize_reiserfs, 2002-------------> reiserfsprogs You are running BETA version of reiserfs shrinker This version is only for testing or VERY CAREFUL use Backup of you data is recommended Do you want to continue? [y/N]:y Processing the tree: % %%%%% left /sec nodes processed (moved): int () leaves () unfm () total () check for used blocks in truncated region ReiserFS report: blocksize block count () free blocks () bitmap block count () Syncingdone 由于/home原来的大小是而我们希望在/home里面划分G的空间出来取整数/home的目标大小就是所以在resize_reiserfs时为s提供大小为M 这样我们就已经完成了文件系统大小调整的工作下面让我们计算一下目标分区的大小这个大小需要根据你的fdisk里面的Units值来计算因为硬盘分区都是按照柱面来划分的基本的计算方法为**/=然后我们取最接近的值+=来作为分区结束的柱号这里面的是/home分区开始的柱面号在前面的fdisk里面可以看到 调整完文件系统的大小以后再使用以下命令以文件系统进行全面的检查 [root@ringmail root]# reiserfsck check fixfixable /dev/hda 现在我们已经完成文件系统的大小调整工作但是硬盘分区的大小仍然没有调整还是跟先前一样大(可以想像我们从书橱里面拿走了几本书而书架的大小并没有调整依然占用着原来的空间) 现在我们要开始进行整个操作里面最危险的操作如果没有必要的话最好不要进行下去:D不过不必过于担心按照以下操作进行即可 启动fdisk并按照以下步骤进行 [root@ringmail root]# fdisk /dev/hda The number of cylinders for this disk is set to There is nothing wrong with that but this is larger than and could in certain setups cause problems with: ) software that runs at boot time (eg old versions of LILO) ) booting and partitioning software from other OSs (eg DOS FDISK OS/ FDISK) Command (m for help): p Disk /dev/hda: GB bytes heads sectors/track cylinders Units = cylinders of * = bytes Device BootStart EndBlocks IdSystem /dev/hda * Linux /dev/hda +Linux /dev/hdaExtended /dev/hda Linux swap /dev/hda Linux Command (m for help): d Partition number (): Command (m for help): n Command action l logical ( or over) p primary partition () l First cylinder ( default ): Last cylinder or +size or +sizeM or +sizeK ( default ): Command (m for help): p Disk /dev/hda: GB bytes heads sectors/track cylinders Units = cylinders of * = bytes Device BootStart EndBlocks IdSystem /dev/hda * Linux /dev/hda +Linux /dev/hdaExtended /dev/hda Linux swap /dev/hda Linux Command (m for help): w The partition table has been altered! Calling ioctl() to reread partition table WARNING: Rereading the partition table failed with error : Device or resource busy The kernel still uses the old table The new table will be used at the next reboot Syncing disks 这里需要说明的是由于内核仍然使用旧的分区表我需要通过重新启动才可以刷新刚制作的分区信息所以在进行完重划分区操作以后我对系统进行了重新启操作系统重启后再继续后续的操作过程 通过以上步骤我们已经完成了硬盘分区大小调整的操作接下来回到重新调整文件系统大小的问题上来由于硬盘分区是按照柱面来计划的我们要在resize_reiserfs步骤上就一步到位调整文件系统大小与硬盘分区大小正好相等是比较困难的事情所以一般是调硬盘分区比文件系统要大一点点然后再通过以下命令进行同步(当然如果你不在意硬盘分区里面存在部分空间的话也可以忽略以下步骤) [root@ringmail root]# umount /home/ [root@ringmail root]# resize_reiserfs /dev/hda <-------------resize_reiserfs, 2002-------------> reiserfsprogs ReiserFS report: blocksize block count () free blocks () bitmap block count () Syncingdone 完成以后原有分区的大小调整操作已经结束接下来需要创建新分区 [root@ringmail root]# fdisk /dev/hda The number of cylinders for this disk is set to There is nothing wrong with that but this is larger than and could in certain setups cause problems with: ) software that runs at boot time (eg old versions of LILO) ) booting and partitioning software from other OSs (eg DOS FDISK OS/ FDISK) Command (m for help): p Disk /dev/hda: GB bytes heads sectors/track cylinders Units = cylinders of * = bytes |