学习啦>学习电脑>电脑硬件知识>硬盘知识>

linux大硬盘怎么分区

时间: 乐恒1051 分享

  随着硬盘的增大,linux系统对大硬盘,大分区的支持也有了相应的设置。很多刚刚学习的小白还是不太懂硬盘的挂载。为此学习啦小编为大家整理推荐了相关的知识,希望大家喜欢。

  linux大硬盘分区的详细方法

  查看分区

  root@Dios ~]# fdisk -l (这个命令是查看你为挂载的分区的位置)WARNING: GPT (GUID Partition Table) detected on '/dev/cciss/c0d1'! The util fdisk doesn't support GPT. Use GNU Parted.Disk /dev/cciss/c0d1: 4000.6 GB, 4000684662784 bytes255 heads, 63 sectors/track, 486388 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesDevice Boot Start End Blocks Id System/dev/cciss/c0d1p1 1 267350 2147483647+ ee EFI GPT

  Parted工具分区转换

  1. 使用parted命令:[root@Dios ~]# parted /dev/cciss/c0d1 (这个命令是对我们上面查到的分区进行GPT转换)GNU Parted 1.8.1Using /dev/cciss/c0d1Welcome to GNU Parted! Type 'help' to view a list of commands.(parted) mklabel gpt Warning: The existing disk label on /dev/cciss/c0d1 will be destroyed and all data on this disk will be lost. Do you want tocontinue?Yes/No? y New disk label type? [gpt]? gpt

  2. (parted) mkpart primary 0 4000GB(进行转换及分区)(parted) print Model: Compaq Smart Array (cpqarray)Disk /dev/cciss/c0d1: 4001GBSector size (logical/physical): 512B/512BPartition Table: gptNumber Start End Size File system Name Flags1 17.4kB 4001GB 4001GB primary (parted) quit Information: Don't forget to update /etc/fstab, if necessary.

  格式化分区

  1.[root@Dios ~]# mkfs.ext3 -F /dev/cciss/c0d1(格式化为EXT3文件系统)mke2fs 1.39 (29-May-2006)Filesystem label=OS type: LinuxBlock size=4096 (log=2)Fragment size=4096 (log=2)488374272 inodes, 976729654 blocks48836482 blocks (5.00%) reserved for the super userFirst data block=0Maximum filesystem blocks=029808 block groups32768 blocks per group, 32768 fragments per group16384 inodes per groupSuperblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,102400000, 214990848, 512000000, 550731776, 644972544Writing inode tables: done Creating journal (32768 blocks): doneWriting superblocks and filesystem accounting information: doneThis filesystem will be automatically checked every 22 mounts or180 days, whichever comes first. Use tune2fs -c or -i to override.

  开机自动挂载分区

  1.挂载(因为这样挂在比较麻烦 我们用下面的命令进行开机挂在)[root@Dios ~]# mkdir -p /mnt/cciss/c0d1[root@Dios ~]# mount /dev/cciss/c0d1 /mnt/cciss/c0d1[root@Dios ~]# df -hFilesystem Size Used Avail Use% Mounted on/dev/cciss/c0d0p5 15G 1.8G 12G 13% //dev/cciss/c0d0p3 19G 173M 18G 1% /usr/local/dev/cciss/c0d0p2 862G 200M 817G 1% /else/dev/cciss/c0d0p1 251M 21M 218M 9% /boottmpfs 2.0G 0 2.0G 0% /dev/shm/dev/cciss/c0d1 3.6T 197M 3.4T 1% /mnt/cciss/c0d1

  开机自动挂载这块硬盘:vi /etc/rc.local加上:mount /dev/cciss/c0d1 /mnt/cciss/c0d1

linux大硬盘怎么分区

随着硬盘的增大,linux系统对大硬盘,大分区的支持也有了相应的设置。很多刚刚学习的小白还是不太懂硬盘的挂载。为此学习啦小编为大家整理推荐了相关的知识,希望大家喜欢。 linux大硬盘分区的详细方法 查看分区 root@Dios ~]# fdisk -l
推荐度:
点击下载文档文档为doc格式

精选文章

  • 有哪些硬盘检查工具好用的
    有哪些硬盘检查工具好用的

    硬盘是我们计算机的重要部件之一,硬盘故障直接影响电脑的正常运行,所以我们需要经常管理维护,那么有哪些硬盘检查工具好用的呢?下面一起看看! 各

  • 如何让硬盘更快?
    如何让硬盘更快?

    今天,跟大家分享一下硬盘的保养和运用的习惯。下面是小编为大家精心整理的关于如何让硬盘更快?希望能够帮助到你们。 方法/步骤 1要了解硬盘的维护

  • 如何更换笔记本电脑硬盘?
    如何更换笔记本电脑硬盘?

    今天,给大家介绍将笔记本机械硬盘更换为固态硬盘。下面是小编为大家精心整理的关于如何更换笔记本电脑硬盘?望希能够帮助到你们。 方法/步骤 1把笔

  • 介绍硬盘备份工具
    介绍硬盘备份工具

    今天,给大家介绍一下硬盘备份工具。下面是小编为大家精心整理的关于介绍硬盘备份工具,希望能够帮助到你们。 方法/步骤 1多备份客户端是可以对硬盘

3002849