Redhat下掛載大小超過2T儲存的方法

xz43發表於2014-01-27

附件大檔案等應用需要直接部署到儲存上,安裝linux時建議把所有包全勾選上,如果採用預設安裝,不同廠家的儲存驅動將會很難裝上,提示系統少包,甚至少什麼包都不太清楚。當把儲存分配給你的HBA光纖卡後,在伺服器上裝好HBA卡驅動並重啟系統,就可以用 fdisk -l 命令檢視儲存資訊了。

 

在使用儲存之前需要對儲存進行分割槽操作,在RHEL5.4上用fdisk命令分割槽最大磁碟分割槽只能在2T以下,故以下采用parted對儲存進行分割槽: 

 

(紅色部分代表需要輸入的命令)

 

[root@oa-1 ~]# fdisk -l           //檢視磁碟資訊 

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk  doesn't support GPT.Use GNU Parted. 

 

WARNING: The size of this disk is 3.2 TB (3221225472000 bytes). 

DOS partition table format can not be used on drives for volumes larger than 2.2 TB (2199023255040 bytes). Use parted(1) and GUID partition table format (GPT). 

 

Disk /dev/sda: 3221.2 GB, 3221225472000 bytes 

255 heads, 63 sectors/track, 391625 cylinders 

Units = cylinders of 16065 * 512 = 8225280 bytes  

         Device Boot  Start  End  Blocks  Id  System 

Disk /dev/cciss/c0d0: 293.5 GB, 293563949056 bytes 

255 heads, 63 sectors/track, 35690 cylinders 

Units = cylinders of 16065 * 512 = 8225280 bytes

         Device     Boot  Start  End   Blocks  Id  System 

/dev/cciss/c0d0p1  *     1   13    104391  83  Linux 

/dev/cciss/c0d0p2      14  35690  286575502+  8e  Linux LVM 

 

[root@oa-1 ~]# parted /dev/sda    //parted命令分割槽

 GNU Parted 1.8.1 

使用/dev/sda 

Welcome to GNU Parted! Type 'help' to view a list of commands. 

(parted)  mklabel GPT  // 建立磁碟label

警告: The existing disk label on /dev/sda will be destroyed and all data on  this disk will be lost. Do you want to continue? 

parted: invalid token: GPT 

/Yes//No? 

新的磁碟標籤型別?[gpt]?  直接回車

(parted)  mkpart              //建立分割槽

 分割槽名稱? []?  sda1 

檔案系統型別?[ext2]?          直接回車

起始點? 0  

結束點? 3200000    //根據分配給你的儲存大小設定(這裡大概為2.8T

 (parted)  p                //檢視剛建立的分割槽是否已經成功

Model: HP HSV450 (scsi) 

Disk /dev/sda: 3221GB 

Sector size (logical/physical): 512B/512B 

Partition Table: gpt

 Number  Start  End    Size    File system  Name  標誌 

1    17.4kB  3200GB  3200GB  ext3   sda1   

(parted)  quit

資訊如果必要,不要忘記更新 /etc/fstab    //系統顯示內容

 

[root@oa-1 ~]# mkfs.ext3 /dev/sda1      //建立檔案系統

 mke2fs 1.39 (29-May-2006) 

Filesystem label= 

OS type: Linux 

Block size=4096 (log=2) 

Fragment size=4096 (log=2) 

390627328 inodes, 781249995 blocks 

39062499 blocks (5.00%) reserved for the super user 

First data block=0 

Maximum filesystem blocks=4294967296 

23842 block groups 

32768 blocks per group, 32768 fragments per group 

16384 inodes per group 

Superblock backups stored on blocks:   

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

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

102400000, 214990848, 512000000, 550731776, 644972544

 

Writing inode tables: done 

Creating journal (32768 blocks): done 

Writing superblocks and filesystem accounting information: done 

This filesystem will be automatically checked every 20 mounts or 180 days, whichever comes first.Use tune2fs -c or -i to override. 

[root@oa-1 ~]# mkdir /storage       //建立掛載點 

[root@oa-1 ~]# mount /dev/sda1 /storage    //掛載儲存磁碟

 [root@oa-1 ~]# 

 

為了在每次系統啟動時自動掛載新分割槽,需要修改 /etc/fstab 檔案來進行自動掛載。在檔案的末位加入如下一行:

/dev/sda1 /storage ext3 defaults 1 2 

這樣伺服器每次啟動都會自動掛載此分割槽

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9399028/viewspace-1075982/,如需轉載,請註明出處,否則將追究法律責任。

相關文章