ubuntu挂载新硬盘

1、创建分区

#fdisk /dev/sdb

sda是第一块SCSI硬盘,sdb第二块,以此类推...物理分区使用a、b编号,每个物理硬盘最多有四个主逻辑分区(或扩展分区),所以自动分区中,扩展分区sda2下第一个逻辑分区编号从5开始

  1. Command (m for help):       

  2. 这里按m获得帮助   

  3. a   toggle a bootable flag   将分区设置为启动区   

  4. b   edit bsd disklabel    编辑bsd的disklabel   

  5. c   toggle the dos compatibility flag  设置该分区为dos分区   

  6. d   delete a partition 删除分区   

  7. l   list known partition types  列出已知的分区类型   

  8. m   print this menu  打印帮助列表   

  9. n   add a new partition 创建新分区   

  10. o   create a new empty DOS partition table       

  11. p   print the partition table查看分区信息   

  12. q   quit without saving changes 退出不保存   

  13. s   create a new empty Sun disklabel       

  14. t   change a partition's system id改变分区类型   

  15. u   change display/entry units       

  16. v   verify the partition table       

  17. w   write table to disk and exit 保存退出   

  18. x   extra functionality (experts only)       

  19.   

  20. Command (m for help):p  //查看新硬盘的分区   

  21. ********************************************************************       

  22. Disk /dev/sdb: 1000204 MB, 1000202273280 bytes   

  23. 255 heads, 63 sectors/track, 121601 cylinders   

  24. Units = cylinders of 16065 * 512 = 8225280 bytes   

  25. Device Boot Start End Blocks Id System       

  26. ********************************************************************       

  27. Command (m for help):n  //创建新分区   

  28. File system type  (default ext2): ext3    //输入想使用的分区格式   

  29. Partition name:  backup                      //输入分区的名字   

  30. First cylinder  (default 0cyl):                //第几个柱面,我们按照默认       

  31. Last cylinder or +size or +sizeMB or +sizeKB  (default 0cyl):+1000000M    //这里我们按大小输入 即+1000000M (注意这个M为大写)   

  32. Warning: You requested a partition from 0cyl to 121576cyl.                       

  33. The closest location we can manage is 1cyl to 121575cyl.  Is this still       

  34. acceptable to you?       

  35.    y   Yes                                                                       

  36.    n   No       

  37. 当然是y   

  38. Command (m for help): p            //查看新硬盘分区后的情况       

  39. ********************************************************************       

  40. Disk /dev/sdb: 1000 GB, 1000202273280 bytes   

  41. 255 heads, 63 sectors/track, 121601 cylinders   

  42. Units = cylinders of 16065 * 512 = 8225280 bytes   

  43.   

  44.    Device Boot      Start         End      Blocks   Id  System        

  45. /dev/sdb1               2      121576   976559157   83  Linux    

  46. ******************************************************************       

  47. Command (m for help): w       

  48. Information: Don't forget to update /etc/fstab, if necessary.            //写入硬盘分区属性并结束  

2、格式化硬盘

#mkfs -t ext3 /dev/sdb1               

  1. //把上面创建的新硬盘分区格式化为ext3格式,这个要等一会才能自动结束   

  2.       ********************************************************************************       

  3.   mke2fs 1.40.8 (13-Mar-2008)       

  4.   Filesystem label=   

  5.   OS type: Linux   

  6.   Block size=4096 (log=2)       

  7.   Fragment size=4096 (log=2)       

  8.   61038592 inodes, 244137796 blocks       

  9.   12206889 blocks (5.00%) reserved for the super user       

  10.   First data block=0  

  11.   Maximum filesystem blocks=0  

  12.   7451 block groups   

  13.   32768 blocks per group, 32768 fragments per group       

  14.   8192 inodes per group       

  15.       Superblock backups stored on blocks:       

  16.       32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,       

  17.       4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,       

  18.       102400000, 214990848  

  19.     

  20.       Writing inode tables: done                                  

  21.   Creating journal (32768 blocks): done       

  22.       Writing superblocks and filesystem accounting information: done       

  23.     

  24.       This filesystem will be automatically checked every 37 mounts or       

  25.       180 days, whichever comes first.  Use tune2fs -c or -i to override.                                                                          

3、设置挂载点

#mkdir /backup                  

//在根路径下创建挂载点 

 

4、设置开机自动挂载

#vim /etc/fstab

<file system> <mount point> <type> <options><dump> <pass>

1            2             3      4        5       6
1 指代文件系统的设备名。最初,该字段只包含待挂载分区的设备名(如/dev/sda1)。现在,除设备名外,还可以包含LABEL或UUID
2 文件系统挂载点。文件系统包含挂载点下整个目录树结构里的所有数据,除非其中某个目录又挂载了另一个文件系统
3 文件系统类型。下面是多数常见文件系统类型(ext3,tmpfs,devpts,sysfs,proc,swap,vfat)
4 mount命令选项。mount选项包括noauto(启动时不挂载该文件系统)和ro(只读方式挂载文件系统)等。在该字段里添加用户或属主选项,即可 允许该用户挂载文件系统。多个选项之间必须用逗号隔开。其他选项的相关信息可参看mount命令手册页(-o选项处)
5转储文件系统?该字段只在用dump备份时才有意义。数字1表示该文件系统需要转储,0表示不需要转储
6文件系统检查?该字段里的数字表示文件系统是否需要用fsck检查。0表示不必检查该文件系统,数字1示意该文件系统需要先行检查(用于根文件系统)。数字2则表示完成根文件系统检查后,再检查该文件系统

文件中增加如下配置信息

/dev/sdb1 /backup ext3      defaults      1      2

 

5、重启机器查看结果

  1. df -h //查看分区空间使用情况,就可以看到/backup已经自动挂载   

  2. Filesystem            Size  Used Avail Use% Mounted on       

  3. /dev/sda1             139G  121G   12G  92% /   

  4. varrun                1.3G   68K  1.3G   1% /var/run   

  5. varlock               1.3G     0  1.3G   0% /var/lock   

  6. udev                  1.3G   32K  1.3G   1% /dev   

  7. devshm                1.3G     0  1.3G   0% /dev/shm   

  8. /dev/sdb1             924G   11G  867G   2% /backup  

 

uuid查看

[root@le ~]# ls -l /dev/disk/by-uuid/
总用量 0
lrwxrwxrwx. 1 root root 10 7月  31 00:17 65960e6b-fcd1-4bf8-8a04-da152d6da6d5 -> ../../sda5
lrwxrwxrwx. 1 root root 10 7月  31 00:17 a0fe9ed4-58fb-403c-8723-e09cc170be5b -> ../../sda1
lrwxrwxrwx. 1 root root 10 7月  31 00:17 e64e1d23-2891-4cfd-baec-be28eef86a95 -> ../../sda3
lrwxrwxrwx. 1 root root 10 7月  31 00:17 e7bb202d-8e48-47d1-bcf8-855904ab0e9c -> ../../sda2


你可能感兴趣的:(ubuntu)