Linux 硬碟掛載(伺服器重啟自動掛載)

2022-09-02 10:39:10 字數 1196 閱讀 3506

1、

先檢視目前機器上有幾塊硬碟,及已掛載磁碟:

fdisk -l

能夠檢視到當前主機上已連線上的磁碟,以及已經分割的磁碟分割槽。(下面以/dev/vdb

磁碟進行分割槽、掛載為例,掛載點設定為/data)

df -h

能夠檢視到已經掛載的磁碟。

2、對要掛載的硬碟建立磁碟分割槽、格式化:

fdisk /dev/vdb

command (m for help):n回車

partition type:

p   primary (0 primary, 0 extended, 4 free)

e   extended

select (default p):p回車

partition number (1-4, default 1):1回車

partition number (1-4): 1回車

first sector (2048-419430399, default 2048):

回車last cylinder, +cylinders or +size (1-416101, default 416101):回車

command (m for help): w

fdisk -l

找到物理磁碟/dev/vdb下建立的分割槽。

mkfs.ext4 /dev/vdb1

格式化上述找到的分割槽。

writing superblocks and filesystem accounting information:回車(等待1~10分鐘,視磁碟大小)

3、掛載磁碟:

mkdir -p /data

mount /dev/vdb1 /data

3、設定開機自動掛載:

blkid

檢視磁碟uuid及檔案型別。

/dev/vdb1: uuid="f524c7a6-4fbb-41a9-8640-54e4e0ae69c1" type="ext4"

vi /etc/fstab

編輯系統分割槽表(使系統啟動後自動掛載),增加一條資料:

uuid=f524c7a6-4fbb-41a9-8640-54e4e0ae69c1 /data ext4 defaults 1 2

伺服器重啟

雖然說碰壁能漲經驗,不過搞的幾個小時心裡忐忑是真的難受。每一秒都是煎熬。啟動nginx服務 nginx c usr local nginx nginx conf nginx.conf 說明 其中 usr local nginx nginx conf nginx.conf是你自己的nginx.conf...

linux伺服器重啟指令

一 linux 的五個重啟命令 1 shutdown 2 poweroff 3 init 4 reboot 5 halt 二 五個重啟命令的具體說明 shutdown reboot 在linux下一些常用的關機 重啟命令有shutdown halt reboot 及init,它們都可以達到重啟系統的...

linux伺服器重啟命令

shutdown h now 立即關機 shutdown h 10 53 到10 53關機,如果該時間小於當前時間,則到隔天 shutdown h 10 10分鐘後自動關機 shutdown r now 立即重啟 2 reboot命令 reboot表示立即重啟,效果等同於shutdown r now...