在 /dev/ 目錄下找到新的硬盤,sda 為本地硬盤,sda1、sda2.. 為分區(qū),sdb 就是新添加的硬盤,如:
[root@wusuyuan ~]# ls -ltr /dev/sd*brw-rw----. 1 root disk 8, 0 11月 14 14:12 /dev/sdabrw-rw----. 1 root disk 8, 3 11月 14 14:12 /dev/sda3brw-rw----. 1 root disk 8, 2 11月 14 14:12 /dev/sda2brw-rw----. 1 root disk 8, 1 11月 14 14:12 /dev/sda1brw-rw----. 1 root disk 8, 16 11月 14 14:12 /dev/sdb
學(xué)習(xí)的機(jī)器為虛擬機(jī),與真實(shí)的物理機(jī)器略有不同,真實(shí)的物理機(jī)器根據(jù)硬盤接口類型(IDE、SATA、SCSI、光纖通道和SAS)可能為hda、sda或其它的名稱。
2.新硬盤分區(qū)使用管理員權(quán)限對新的硬盤 /dev/sdb 分區(qū):
[root@wusuyuan ~]# fdisk /dev/sdb ####進(jìn)入分區(qū)Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabelBuilding a new DOS disklabel with disk identifier 0xb7ee5a9d.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 toswitch off the mode (command 'c') and change display units tosectors (command 'u').Command (m for help): m #### 查詢幫助Command actiona toggle a bootable flagb edit bsd disklabelc toggle the dos compatibility flagd delete a partitionl list known partition typesm print this menun add a new partitiono create a new empty DOS partition tablep print the partition tableq quit without saving changess create a new empty Sun disklabelt change a partition's system idu change display/entry unitsv verify the partition tablew write table to disk and exitx extra functionality (experts only)Command (m for help): n ####創(chuàng)建新的分區(qū)Command actione extendedp primary partition (1-4)e ####選擇分區(qū)類型(擴(kuò)展分區(qū)、主分區(qū))Partition number (1-4): 1 ####分區(qū)數(shù),這里分1個區(qū)First cylinder (1-2610, default 1): 2610 ####這里輸入分區(qū)大小,默認(rèn)單位為mbCommand (m for help): p ####查看分區(qū)表信息Disk /dev/sdb: 21.5 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x35b64cadDevice Boot Start End Blocks Id System/dev/sdb1 2610 2610 8032+ 5 ExtendedCommand (m for help): w ####寫入分區(qū)信息,如果未確定或想取消,輸入q退出The partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.
在寫入分區(qū)信息時(shí)要仔細(xì)核對和確認(rèn),寫入分區(qū)信息后不可再更改。 分區(qū)完成后,新的硬盤還是不能使用的,需要進(jìn)行格式化。
3.使用mkfs進(jìn)行格式化硬盤分區(qū)[sywu@wusuyuan ~]$ mkfsUsage: mkfs [-V] [-t fstype] [fs-options] device [size]#-t 格式化分區(qū)類型,如 ext3、ext4[root@wusuyuan ~]# mkfs -t ext4 /dev/sdb #對分區(qū)進(jìn)行格式化,類型為ext4mke2fs 1.41.12 (17-May-2010)/dev/sdb is entire device, not just one partition!無論如何也要繼續(xù)? (y,n) y文件系統(tǒng)標(biāo)簽=操作系統(tǒng):Linux塊大小=4096 (log=2)分塊大小=4096 (log=2)Stride=0 blocks, Stripe width=0 blocks1310720 inodes, 5242880 blocks262144 blocks (5.00%) reserved for the super user第一個數(shù)據(jù)塊=0Maximum filesystem blocks=4294967296160 block groups32768 blocks per group, 32768 fragments per group8192 inodes per groupSuperblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,4096000正在寫入inode表: 完成Creating journal (32768 blocks): 完成Writing superblocks and filesystem accounting information:完成This filesystem will be automatically checked every 35 mounts or180 days, whichever comes first. Use tune2fs -c or -i to override.
分區(qū)格式化完成后使用mount 命令裝載新的分區(qū):
4.配置新的分區(qū)自動裝載[root@wusuyuan ~]# mount /dev/sdb /disk2 #裝載分區(qū)[root@wusuyuan ~]# df -h #查詢分區(qū)文件系統(tǒng) 容量 已用 可用 已用%% 掛載點(diǎn)/dev/sda2 97G 9.9G 82G 11% /tmpfs 1.9G 200M 1.7G 11% /dev/shm/dev/sda1 194M 52M 133M 28% /boot/dev/sdb 20G 1.9G 17G 11% /disk2
在/etc/fstab 中配置分區(qū)自動裝載
[root@wusuyuan ~]# vim /etc/fstab ## /etc/fstab# Created by anaconda on Sun Jan 5 08:17:56 2014## accessible filesystems, by reference, are maintained under '/dev/disk'# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#UUID=9c738ca5-810a-46ec-b896-57fc8286b2a5 / ext4 defaults 1 1UUID=05b44d26-bd3a-4688-81e1-c83da70512a7 /boot ext4 defaults 1 2UUID=7146f132-f77b-4a17-8686-d7c9c9be10ad swap swap defaults 0 0tmpfs /dev/shm tmpfs defaults 0 0devpts /dev/pts devpts gid=5,mode=620 0 0sysfs /sys sysfs defaults 0 0proc /proc proc defaults 0 0/dev/sdb /disk2 ext4 defaults 1 2 #加入新的分區(qū)信息
新聞熱點(diǎn)
疑難解答
圖片精選