[原創] 在Linux下給主機新增新的硬碟空間
1.劃分新的分割槽.(以/dev/sdb硬碟為例)
[root@dbatest1 ~]# fdisk /dev/sdb
The number of cylinders for this disk is set to 4427.
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
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
Command (m for help): d ---刪除原有分割槽
Partition number (1-4): 1
Command (m for help): d
Selected partition 2
Command (m for help): d ---確認已刪除了原有分割槽
No partition is defined yet!
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 4 ---將整個硬碟劃分成一個分割槽
First cylinder (1-4427, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-4427, default 4427):
Using default value 4427
Command (m for help): w ---儲存資訊
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
2.檢視已劃分好的分割槽
[root@dbatest1 ~]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
136805368 3153192 126590672 3% /
/dev/sda1 101086 10906 84961 12% /boot
tmpfs 1037772 0 1037772 0% /dev/shm
[root@dbatest1 ~]# fdisk -l
Disk /dev/sda: 146.8 GB, 146815733760 bytes
255 heads, 63 sectors/track, 17849 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 17849 143267670 8e Linux LVM
Disk /dev/sdb: 146.8 GB, 146815733760 bytes
255 heads, 63 sectors/track, 17849 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb4 1 17849 143372061 83 Linux
Disk /dev/sdc: 36.4 GB, 36420075008 bytes
255 heads, 63 sectors/track, 4427 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdc4 1 4427 35559846 83 Linux
[root@dbatest1 ~]#
[root@dbatest1 ~]#
3.將新的分割槽加上LVM管理
1).建立PV
[root@dbatest1 ~]# pvcreate /dev/sdb4
Physical volume "/dev/sdb4" successfully created
2).建立VG
[root@dbatest1 ~]# vgcreate vgdata01 /dev/sdb4
Volume group "vgdata01" successfully created
3).建立LV
[root@dbatest1 ~]# lvcreate -L 140000M -n lvdata01 vgdata01
Logical volume "lvdata01" created
4).建立ext3檔案系統
[root@dbatest1 ~]# mkfs.ext3 /dev/vgdata01/lvdata01
mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
17924096 inodes, 35840000 blocks
1792000 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
1094 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
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 25 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
5).建立mount目錄
[root@dbatest1 /]# mkdir data01
6).掛接LV到mountpoint
[root@dbatest1 /]# mount /dev/vgdata01/lvdata01 /data01
4.確認已完成.
[root@dbatest1 /]# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
136805368 3153212 126590652 3% /
/dev/sda1 101086 10906 84961 12% /boot
tmpfs 1037772 0 1037772 0% /dev/shm
/dev/mapper/vgdata01-lvdata01
141110136 192132 133750004 1% /data01
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7364032/viewspace-422877/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 給linux新增新硬碟的經過Linux硬碟
- 給Linux虛機擴充硬碟空間 ( by quqi99 )Linux硬碟
- 在不重啟的情況下為 Vmware Linux 客戶機新增新硬碟Linux硬碟
- 在linux主機間搬硬碟,裝載LVM.Linux硬碟LVM
- Linux新增新硬碟Linux硬碟
- Linux下新新增磁碟啟用未使用的硬碟空間擴容LVMLinux硬碟LVM
- 騰訊雲CVM主機在原分割槽(主分割槽)上增加磁碟空間
- Linux下新增新硬碟,分割槽及掛載Linux硬碟
- LVM擴容-----給虛擬機器新增空間LVM虛擬機
- vmware增加linux硬碟空間Linux硬碟
- VM下LINUX完美增加硬碟空間(LVM)薦Linux硬碟LVM
- DS8K儲存分配空間給主機方案
- 給資料庫新增儲存空間的案例資料庫
- Linux伺服器硬碟空間清理Linux伺服器硬碟
- 【原創】表空間相關操作
- 給虛擬機器的增加空間虛擬機
- 虛擬塊硬碟,新增點swap分割槽空間(轉)硬碟
- pve 下的群暉虛擬機器硬碟空間擴容的記錄虛擬機硬碟
- 給linux 新增一塊新磁碟Linux
- linux下使用fdisk/mke2fs/mount新增新硬碟分割槽Linux硬碟
- 在centos7下獲取 主機板 cpu 硬碟序列號CentOS硬碟
- 拿下IGN/GS雙滿分的神作 在空間、時間上給出了新思考
- 調整vmware虛擬機器硬碟空間的方法虛擬機硬碟
- VMware下LINUX的虛擬機器增加磁碟空間Linux虛擬機
- 龍主機-國外PHP空間PHP
- Linux新增裸裝置空間(Redhat)LinuxRedhat
- 為linux新增一塊新硬碟並分割槽Linux硬碟
- 給Oracle BIGFILE表空間增加磁碟(通用的LINUX增加磁碟空間方案)OracleLinux
- vmware中新增Linux虛擬機器檔案系統空間Linux虛擬機
- 自動undo表空間模式下切換新的undo表空間模式
- Redhat Linux 新增硬碟RedhatLinux硬碟
- 硬碟空間的管理和分割槽硬碟
- 我的硬碟空間哪去了?(轉)硬碟
- 為Linux系統手工新增SWAP空間Linux
- 第2步: 購買一個空間/主機空間 (Web Host)Web
- 虛擬機器下linux OS如何給系統新增磁碟虛擬機Linux
- QQ空間相簿批量下載【原圖】
- 給VMware下的Linux擴充套件磁碟空間(以CentOS6.5為例)Linux套件CentOS