zoukankan      html  css  js  c++  java
  • Linux磁盘分区、格式化和挂载

    一、查看磁盘使用

    [root@iZ88rvassw1Z ~]# df -h
    Filesystem      Size  Used Avail Use% Mounted on
    /dev/vda1        40G  2.3G   36G   7% /
    tmpfs           1.9G     0  1.9G   0% /dev/shm

    二、查看磁盘分区

    [root@iZ88rvassw1Z ~]# fdisk -l
    
    Disk /dev/vda: 42.9 GB, 42949672960 bytes
    255 heads, 63 sectors/track, 5221 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00078f9c
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/vda1   *           1        5222    41940992   83  Linux
    
    Disk /dev/vdb: 1099.5 GB, 1099511627776 bytes
    16 heads, 63 sectors/track, 2130440 cylinders
    Units = cylinders of 1008 * 512 = 516096 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x00000000

    目前系统存在了两块磁盘,分别为“/dev/vda”和“/dev/vdb”;

    “/dev/vda”已经存在了一个分区“/dev/vda1”;

    “/dev/vda1”没有分区。

     

    三、磁盘分区命令

    clipboard

     

    四、执行分区操作

    [root@iZ88rvassw1Z ~]# fdisk /dev/vdb
    Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
    Building a new DOS disklabel with disk identifier 0x3d7d21d6.
    Changes will remain in memory only, until you decide to write them.
    After that, of course, the previous content won't be recoverable.
    
    Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
    
    WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
             switch off the mode (command 'c') and change display units to
             sectors (command 'u').
    
    Command (m for help): p
    
    Disk /dev/vdb: 1099.5 GB, 1099511627776 bytes
    16 heads, 63 sectors/track, 2130440 cylinders
    Units = cylinders of 1008 * 512 = 516096 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x3d7d21d6
    
       Device Boot      Start         End      Blocks   Id  System
    
    Command (m for help): n
    Command action
       e   extended
       p   primary partition (1-4)
    p
    Partition number (1-4): 1
    First cylinder (1-2130440, default 1): 
    Using default value 1
    Last cylinder, +cylinders or +size{K,M,G} (1-2130440, default 2130440): 
    Using default value 2130440
    
    
    Command (m for help): p
    
    Disk /dev/vdb: 1099.5 GB, 1099511627776 bytes
    16 heads, 63 sectors/track, 2130440 cylinders
    Units = cylinders of 1008 * 512 = 516096 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x3d7d21d6
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/vdb1               1     2130440  1073741728+  83  Linux
    
    Command (m for help): n
    Command action
       e   extended
       p   primary partition (1-4)
    p
    Partition number (1-4): 2
    No free sectors available
    
    Command (m for help): w
    The partition table has been altered!
    
    Calling ioctl() to re-read partition table.
    Syncing disks.
    [root@iZ88rvassw1Z ~]#

    再次查看分区:

    clipboard

     

    五、查看原有分区格式

    clipboard

    为ext4格式。

     

    六、格式化分区

    clipboard

     

    七、挂载分区

    clipboard

    八、开机自动挂载

    修改/etc/fstab,添加记录即可。

    clipboard

  • 相关阅读:
    BestCoder Round #71 (div.2) (hdu 5621)
    BestCoder Round #71 (div.2) (hdu 5620 菲波那切数列变形)
    BestCoder Round #69 (div.2) Baby Ming and Weight lifting(hdu 5610)
    BestCoder Round #70 Jam's math problem(hdu 5615)
    BestCoder Round #68 (div.2) tree(hdu 5606)
    poj 2299 Ultra-QuickSort(归并排序或是bit 树+离散化皆可)
    hdu 3874 Necklace(bit树+事先对查询区间右端点排序)
    HDU 4300 Clairewd’s message(KMP)
    HDU 3308 LCIS(线段树单点更新区间合并)
    PKU 3667 Hotel(线段树)
  • 原文地址:https://www.cnblogs.com/xusweeter/p/8386359.html
Copyright © 2011-2022 走看看