HT之LINUX下增加磁碟
HT = How To
HT = 好土
準備將日常操作中,各項需求的實際操作案例,整理成"如何做"的系列文章。這個"如何做"可能早已被人無數次的做過無數人說過,因此也叫好土系列文章,黑黑。
寫這個系列文章的本意,一方面記錄一些操作的實施案例,便於後續遇到類似問題時,即使遺忘也能快速找到參照。
另一方面,也希望這類文章,能對遇到相同問題的朋友有所幫助。
今天貼出第一篇,正文如下:
================================================
再大的磁碟也會有不夠用的時候,因此實際操作中遇到加硬碟實在是再正常不過。windows中的磁碟管理非常簡單,linux下呢,其實也不復雜,下面三思來演示在linux下新增新硬碟的操作。
下面所有操作的前提是硬體已經就緒,磁碟沒有任何問題,作業系統也能夠正常識別。
首先執行fdisk檢視當前的磁碟資訊:
[root@jssnode1 ~]# fdisk -l
Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1305 10377990 8e Linux LVM
Disk /dev/sdb: 16.1 GB, 16106127360 bytes
255 heads, 63 sectors/track, 1958 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk /dev/sdb doesn't contain a valid partition table由上述資訊可以看出,當前系統包含兩塊磁碟設定,/dev/sda和/dev/sdb,其中sda1已經分割槽並正常使用,/dev/sdb就是新增加的磁碟,下面就要對該磁碟進行處理,讓linux能夠正確訪問,並順利在其上儲存資料。
接下來要做的,是首先對/dev/sdb進行分割槽,分割槽也是使用fdisk命令,操作如下:
[root@jssnode1 ~]# fdisk /dev/sdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel. Changes will remain in memory only,
until you decide to write them. After that, of course, the previous
content won't be recoverable.
The number of cylinders for this disk is set to 1958.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
.....................
.....................上述提示資訊,對於不同版本的作業系統,顯示的結果可能會稍有差異,不用管它,重要的是看到下面的提示符:
- Command (m for help):
正如提示符中顯示的那樣,輸入m檢視幫助,具體哪個字元對應哪項操作,輸入m對照提示就能理解,這裡與我們操作相關的,有兩項命令:
- p :檢視該硬碟當前的分割槽資訊
- n :為該硬碟建立新的分割槽
這裡直接輸入n,提示資訊如下:
Command (m for help): n
Command action
e extended
p primary partition (1-4)接下來是提示建立的分割槽型別:
- e :建立擴充套件分割槽
- p :建立主分割槽,每個磁碟能夠建立4個主分割槽
這裡我們選擇建立主分割槽,輸入p即可:
p
Partition number (1-4): 1
First cylinder (1-1958, default 1): 1
Last cylinder or +size or +sizeM or +sizeK (1-1958, default 1958): 1958上面提示輸入該分割槽開始和結束的cylinder(柱面),如果要為該磁碟建立多個分割槽的話,那麼注意輸入正確的開始和結束cylinder即可。這裡三思準備將/dev/sdb建立為一個區,因此結束的cylinder直接輸入為最大值。
分割槽建立完成後,輸入w儲存分割槽資訊(當然啦,你也可以先輸入p檢視分割槽資訊),如下:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.分割槽的工作完成了,下面要對新分割槽進行格式化,格式化是使用mkfs命令,三思計劃將新的分割槽格式化為ext3檔案系統,輸入命令如下:
[root@jssnode1 ~]# mkfs -t ext3 -c /dev/sdb1
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
1966080 inodes, 3931900 blocks
196595 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=4026531840
120 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
Checking for bad blocks (read-only test): done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 24 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.然後,為新的分割槽建立一個點,這裡將其掛載到/data,操作如下:
[root@jssnode1 ~]# mkdir /data
[root@jssnode1 ~]# mount /dev/sdb1 /datadf 命令檢視:
[root@jssnode1 ~]# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
8030648 2709616 4906520 36% /
/dev/sda1 101086 12372 83495 13% /boot
tmpfs 513532 0 513532 0% /dev/shm
/dev/sdb1 15480800 169592 14524828 2% /data不過mount命令掛載點僅在伺服器當前狀態下有效,一旦重啟後mount的掛載點就沒有了,如果不想每次重啟後都重新執行mount命令掛載的話,就需要修改/etc/fstab來配置:
- [root@jssnode1 ~]# vi /etc/fstab
增加下列內容:
- /dev/sdb1 /data ext3 defaults 1 2
完成後輸入:wq儲存退出,ok,linux下增加磁碟 的操作 至此竣工。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7607759/viewspace-614810/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux增加磁碟Linux
- VMware下LINUX的虛擬機器增加磁碟空間Linux虛擬機
- 給Oracle BIGFILE表空間增加磁碟(通用的LINUX增加磁碟空間方案)OracleLinux
- C. VMware下LINUX的虛擬機器增加磁碟空間Linux虛擬機
- ASM 增加磁碟ASM
- linux下新增磁碟Linux
- oracle rac 增加磁碟Oracle
- 為Linux虛擬機器增加磁碟空間Linux虛擬機
- Linux下磁碟掛載Linux
- linux下新增ASM磁碟LinuxASM
- Linux下磁碟加密——luksLinux加密
- Linux無停機增加虛擬機器磁碟容量Linux虛擬機
- linux下增加swap分割槽Linux
- Linux之 增加swap空間Linux
- 在linux下合併磁碟Linux
- Linux下為ASM增加空間LinuxASM
- (轉) linux下增加swap分割槽Linux
- Linux下磁碟I/O測試Linux
- linux下 lvm 磁碟擴容LinuxLVM
- linux下修復磁碟損壞Linux
- linux下udev重新繫結磁碟Linuxdev
- Linux下的磁碟配額quotaLinux
- Linux下磁碟分割槽,fdisk,mkfsLinux
- linux多路徑下線上新增磁碟Linux
- LINUX下磁碟限額配置(轉)Linux
- linux 下監控磁碟空間Linux
- linux下磁碟分割槽的案例Linux
- Linux核心之磁碟和分割槽Linux
- linux 下增加硬碟簡單介紹Linux硬碟
- Linux下增加Apache的rewrite Module(轉)LinuxApache
- linux下增加磁碟改變指定檔案路徑分割槽掛載點和遷移資料Linux
- 在Linux下使用DOS/Windows磁碟(轉)LinuxWindows
- Linux之 iostat 解讀磁碟ioLinuxiOS
- 11G RAC 為 ASM 磁碟組增加一個磁碟。(AIX)ASMAI
- Linux下磁碟分割槽工具cfdisk的使用Linux
- Linux 7下使用udev繫結ASM磁碟LinuxdevASM
- linux下將遠端磁碟mount到本地Linux
- 在Linux下測試磁碟的I/OLinux