网站地图    收藏   

主页 > 系统 > linux系统 >

Linux系统硬盘分区 格式化 挂载的方法 - linux教程

来源:自学PHP网    时间:2014-11-28 23:06 作者: 阅读:

[导读] 在windows中安装好硬盘之后我们只要分区与格式化就可以了,但在linux中还要多一步硬盘挂载了,下面本文章就全面的介绍linux下安装一块磁盘的过程,其实就包括了硬盘分区 格式化 挂载,希望...

Linux系统硬盘分区 格式化 挂载的方法

在windows中安装好硬盘之后我们只要分区与格式化就可以了,但在linux中还要多一步硬盘挂载了,下面本文章就全面的介绍linux下安装一块磁盘的过程,其实就包括了硬盘分区 格式化 挂载,希望文章能帮助到各位.

1.添加磁盘,查看磁盘状况,代码如下:

  1. [root@db1 /]# fdisk -l 
  2. Disk /dev/sda: 10.7 GB, 10737418240 bytes 
  3. 255 heads, 63 sectors/track, 1305 cylinders 
  4. Units = cylinders of 16065 * 512 = 8225280 bytes 
  5.    Device Boot      Start         End      Blocks   Id  System 
  6. /dev/sda1   *         151        1305     9277537+  83  Linux 
  7. /dev/sda2               1         150     1204843+  82  Linux swap 
  8. Partition table entries are not in disk order 
  9. Disk /dev/sdb: 5368 MB, 5368709120 bytes 
  10. 255 heads, 63 sectors/track, 652 cylinders 
  11. Units = cylinders of 16065 * 512 = 8225280 bytes 
  12.    Device Boot      Start         End      Blocks   Id  System 

从查询结果看出,多了一个/dev/sdb的盘.

2.用fdisk 对/dev/sdb 进行分区,代码如下:

  1. [root@db1 /]# fdisk /dev/sdb 
  2. Command (m for help): n 
  3. Command action 
  4.    e   extended 
  5.    p   primary partition (1-4) 
  6. Partition number (1-4): 1 
  7. First cylinder (1-652, default 1): 
  8. Using default value 1 
  9. Last cylinder or +size or +sizeM or +sizeK (1-652, default 652): 
  10. Using default value 652 
  11.  
  12. Command (m for help): w 
  13. The partition table has been altered! 
  14.  
  15. Calling ioctl() to re-read partition table
  16. Syncing disks. 

再次查看分区情况,多出来一个/dev/sdb1 的区,这个1是我们在前面指定的,如果我们指定2,就变成 sdb2了,代码如下:

  1. [root@db1 /]# fdisk -l 
  2.  
  3. Disk /dev/sda: 10.7 GB, 10737418240 bytes 
  4. 255 heads, 63 sectors/track, 1305 cylinders 
  5. Units = cylinders of 16065 * 512 = 8225280 bytes 
  6.    Device Boot      Start         End      Blocks   Id  System 
  7. /dev/sda1   *         151        1305     9277537+  83  Linux 
  8. /dev/sda2               1         150     1204843+  82  Linux swap 
  9. Partition table entries are not in disk order 
  10.  
  11. Disk /dev/sdb: 5368 MB, 5368709120 bytes 
  12. 255 heads, 63 sectors/track, 652 cylinders 
  13. Units = cylinders of 16065 * 512 = 8225280 bytes 
  14.  
  15.    Device Boot      Start         End      Blocks   Id  System 
  16. /dev/sdb1               1         652     5237158+  83  Linux 
  17. [root@db1 /]# 

3.格式化 /dev/sdb1 分区,代码如下:

  1. [root@db1 /]# mkfs -t ext3 /dev/sdb1 
  2. mke2fs 1.35 (28-Feb-2004) 
  3. Filesystem label= 
  4. OS type: Linux 
  5. Block size=4096 (log=2) 
  6. Fragment size=4096 (log=2) 
  7. 655360 inodes, 1309289 blocks 
  8. 65464 blocks (5.00%) reserved for the super user 
  9. First data block=0 
  10. Maximum filesystem blocks=1342177280 
  11. 40 block groups 
  12. 32768 blocks per group, 32768 fragments per group 
  13. 16384 inodes per group 
  14. Superblock backups stored on blocks: 
  15.         32768, 98304, 163840, 229376, 294912, 819200, 884736 
  16.  
  17. Writing inode tables: done 
  18. Creating journal (8192 blocks): done 
  19. Writing superblocks and filesystem accounting information: done 
  20.  
  21. This filesystem will be automatically checked every 30 mounts or 
  22. 180 days, whichever comes first.  Use tune2fs -c or -i to override. 

4.创建目录 并将 /dev/sdb1 挂在到该目录下,代码如下:

  1. [root@db1 /]# ls 
  2. backup  dev   initrd      media  opt   sbin     sys       usr 
  3. bin     etc   lib         misc   proc  selinux  tftpboot  var 
  4. boot    home  lost+found  mnt    root  srv      tmp 
  5. [root@db1 /]# mkdir /u01 
  6. [root@db1 /]# ls 
  7. backup  dev   initrd      media  opt   sbin     sys       u01 
  8. bin     etc   lib         misc   proc  selinux  tftpboot  usr 
  9. boot    home  lost+found  mnt    root  srv      tmp       var 
  10. [root@db1 /]# mount /dev/sdb1 /u01 

5.验证挂载是否成功,代码如下:

  1. [root@db1 /]# df -k 
  2. Filesystem           1K-blocks      Used Available Use% Mounted on 
  3. /dev/sda1              9131772   7066884   1601012  82% / 
  4. none                    454256         0    454256   0% /dev/shm 
  5. /dev/sdb1              5154852     43040   4849956   1% /backup 

6.设置开机自动挂载,代码如下:

  1. [root@db1 /]# vi /etc/fstab 
  2. # This file is edited by fstab-sync - see ’man fstab-sync’ for details 
  3. LABEL=/                 /                       ext3    defaults        1 1 
  4. none                    /dev/pts                devpts  gid=5,mode=620  0 0 
  5. none                    /dev/shm                tmpfs   defaults        0 0 
  6. none                    /proc                   proc    defaults        0 0 
  7. none                    /sys                    sysfs   defaults        0 0 
  8. LABEL=SWAP-sda2         swap                    swap    defaults        0 0 
  9. /dev/sdb1               /u01                 ext3    defaults        0 0 
  10. /dev/hdc                /media/cdrom            auto    pamconsole,exec,noauto,m 
  11. anaged 0 0   --phpfensi.com 
  12. /dev/fd0                /media/floppy           auto    pamconsole,exec,noauto,m 
  13. anaged 0 0

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论