2021-05-12 14:32:11
Linux掛載新硬碟和建立Swap分割區的方法
Liunx新增新硬碟其實和Windows的操作一樣,但一個是圖形化操作,另一個是命令列操作,不過步驟是一樣,下面就動手演示和講解
Linux掛載新硬碟
1、檢視硬碟資訊
命令:fdisk -l
[root@center ~]# fdisk -l
Disk /dev/vda: 21.5 GB, 21474836480 bytes #第一塊硬碟的資訊和分割區資訊
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003a7b4
Device Boot Start End Blocks Id System
/dev/vda1 * 1 2611 20970496 83 Linux
Disk /dev/vdb: 107.4 GB, 107374182400 bytes #第二塊硬碟的資訊和分割區資訊
16 heads, 63 sectors/track, 208050 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
2、建立新硬碟分割區
命令:fdisk /dev/vdb
[root@center ~]# fdisk /dev/vdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x1e694286.
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 to
switch off the mode (command 'c') and change display units to
sectors (command 'u').
Command (m for help): n
Command action
e extended #e為建立擴充套件分割區
p primary partition (1-4) #p為建立邏輯分割區
p
Partition number (1-4): 1 #在這裡輸入1,就進入劃分邏輯分割區階段了;
First cylinder (1-208050, default 1): 1 #分割區的Start 值,這裡最好直接按回車,否則可能會造成空間浪費;
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-208050, default 208050): 208050 #分割區的Over值,我就分一個區
Using default value 208050
Command (m for help): w #最後輸入w回車儲存退出。
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
fdisk可以用m命令來看fdisk命令的內部命令;
a:命令指定啟動分割區;
d:命令刪除一個存在的分割區;
l:命令顯示分割區ID號的列表;
m:檢視fdisk命令幫助;
n:命令建立一個新分割區;
p:命令顯示分割區列表;
t:命令修改分割區的型別ID號;
w:命令是將對分割區表的修改存檔讓它發生作用;
3、確認新分割區資訊
命令:fdisk -l
[root@center ~]# fdisk -l
Disk /dev/vda: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x0003a7b4
Device Boot Start End Blocks Id System
/dev/vda1 * 1 2611 20970496 83 Linux
Disk /dev/vdb: 107.4 GB, 107374182400 bytes
16 heads, 63 sectors/track, 208050 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x1e694286
Device Boot Start End Blocks Id System
/dev/vdb1 1 208050 104857168+ 83 Linux #剛建立好的分割區資訊
4、格式化分割區
命令:mkfs.ext4 /dev/vdb1
[root@center ~]# mkfs.ext4 /dev/vdb1
mke2fs 1.41.12 (17-May-2010)
Filesystem label= #檔案系統標籤
OS type: Linux #作業系統型別
Block size=4096 (log=2) #塊大小
Fragment size=4096 (log=2) #分塊大小
Stride=0 blocks, Stripe width=0 blocks
6553600 inodes, 26214292 blocks
1310714 blocks (5.00%) reserved for the super user
First data block=0 #第一個資料塊
Maximum filesystem blocks=4294967296
800 block groups
32768 blocks per group, 32768 fragments per group
8192 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 #寫入inode表
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 26 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
Linux的分割區型別介紹:
隨著Linux系統在現在業務中的應用,Linux檔案系統的弱點也漸漸顯露出來了,其中系統預設使用的ext2檔案系統是非紀錄檔檔案系統。這在關鍵行業的應用是一個致命的弱點.而Ext3檔案系統是直接從Ext2檔案系統發展而來,目前ext3檔案系統已經非常穩定可靠。它完全相容Ext2檔案系統。
Ext3的特點:高可用性、資料的完整性、資料的完整性、資料轉換、多種紀錄檔模式
同樣的Ext4完全相容Ext3,相對於Ext3來說,Ext4支援更大的儲存,Ext3目前所支援的最大16TB檔案系統和最大2TB檔案,而Ext4分別支援1EB的檔案系統,以及16TB 的檔案,還有就是Ext3目前只支援32,000個子目錄,而Ext4支援無限數量的子目錄,Ext4引入了現代檔案系統中流行的extents概念,每個 extent 為一組連續的資料塊,上述檔案則表示為“該檔案資料儲存在接下來的25,600個資料塊中”,提高了不少效率。
5、建立掛載目錄
命令:mkdir /data
6、掛載分割區
命令:mount /dev/vdb1 /data
7、檢視硬碟大小以及掛載分割區
命令:df -Th
[root@center ~]# df -Th
Filesystem Type Size Used Avail Use% Mounted on
/dev/vda1 ext4 20G 1.1G 18G 6% /
tmpfs tmpfs 3.9G 0 3.9G 0% /dev/shm
/dev/vdb1 ext4 99G 60M 94G 1% /data #新掛載的分割區
8、設定開機自動掛載
命令:vim /etc/fstab
/dev/vdb1 /data ext4 defaults 1 1
[root@center ~]# blkid
/dev/vda1: UUID="b7aae0d4-268c-4b60-914a-f3b48e22819c" TYPE="ext4"
/dev/vdb1: UUID="5de835dd-5322-46f0-8728-3d4ae7d83b54" TYPE="ext4"
[root@center ~]# cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Tue Mar 27 04:51:55 2018
#
# 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=b7aae0d4-268c-4b60-914a-f3b48e22819c / ext4 defaults 1 1
UUID=5de835dd-5322-46f0-8728-3d4ae7d83b54 /data ext4 defaults 1 1
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
Swap分割區
Swap分割區其實和Windows上的虛擬記憶體一樣,Swap分割區在系統的實體記憶體不夠用的時候,把實體記憶體中的一部分空間釋放出來,以供當前執行的程式使用。那些被釋放的空間可能來自一些很長時間沒有什麼操作的程式,這些被釋放的空間被臨時儲存到Swap分割區中,等到那些程式要執行時,再從Swap分割區中恢復儲存的資料到記憶體中。
下面介紹兩種建立swap的方法:
•新建磁碟分割區作為swap分割區
•用檔案作為Swap分割區
新建磁碟分割區作為swap分割區
1.用fdisk命令對磁碟進行分割區,新增swap分割區,新建分割區,在fdisk中用“t”命令將新添的分割區id改為82
(Linux swap型別)
2.格式化swap分割區,這裡的sdb2要看您加完後p命令顯示的實際分割區裝置名
mkswap /dev/sdb1
3.啟動新的swap分割區
swapon /dev/sdb1
4.讓系統啟動時能自動啟用這個交換分割區,可以編輯/etc/fstab,加入下面一行
/dev/sdb1 swap swap defaults 0 0
用檔案作為Swap分割區
1.建立要作為swap分割區的檔案:增加1GB大小的交換分割區,則命令寫法如下,其中的count等於想要的塊的數量(bs*count=檔案大小)。
dd if=/dev/zero of=/root/swapfile bs=1M count=1024
2.格式化為交換分割區檔案,建立swap的檔案系統:
mkswap /root/swapfile
3.???用交換分割區檔案:
swapon /root/swapfile
4.使系統開機時自啟用,在檔案/etc/fstab中新增一行:
/root/swapfile swap swap defaults 0 0
Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx
本文永久更新連結地址:https://www.linuxidc.com/Linux/2018-09/153878.htm
相關文章