centos7 5 生產伺服器掛載新加硬碟實操記錄

2021-10-03 13:23:12 字數 4390 閱讀 7640

centos7.5 生產伺服器掛載新加硬碟實操記錄

操作於2020.3.5 19.47

[root@localhost yanyu]# df -h

檔案系統 容量 已用 可用 已用% 掛載點

devtmpfs 897m 0 897m 0% /dev

tmpfs 915m 0 915m 0% /dev/shm

tmpfs 915m 9.3m 906m 2% /run

tmpfs 915m 0 915m 0% /sys/fs/cgroup

/dev/sda1 1014m 172m 843m 17% /boot

tmpfs 183m 8.0k 183m 1% /run/user/42

tmpfs 183m 0 183m 0% /run/user/0

[root@localhost yanyu]# fdisk -l

磁碟 /dev/sda:160.0 gb, 160000000000 位元組,312500000 個扇區

units = 扇區 of 1 * 512 = 512 bytes

扇區大小(邏輯/物理):512 位元組 / 512 位元組

i/o 大小(最小/最佳):512 位元組 / 512 位元組

磁碟標籤型別:dos

磁碟識別符號:0x0001db9e

裝置 boot start end blocks id system

/dev/sda1 * 2048 2099199 1048576 83 linux

/dev/sda2 2099200 312498175 155199488 8e linux lvm

磁碟 /dev/sdb:500.1 gb, 500107862016 位元組,976773168 個扇區

units = 扇區 of 1 * 512 = 512 bytes

扇區大小(邏輯/物理):512 位元組 / 512 位元組

i/o 大小(最小/最佳):512 位元組 / 512 位元組

磁碟標籤型別:dos

磁碟識別符號:0xbed67bc4

裝置 boot start end blocks id system

/dev/sdb1 2048 976769023 488383488 7 hpfs/ntfs/exfat

units = 扇區 of 1 * 512 = 512 bytes

扇區大小(邏輯/物理):512 位元組 / 512 位元組

i/o 大小(最小/最佳):512 位元組 / 512 位元組

units = 扇區 of 1 * 512 = 512 bytes

扇區大小(邏輯/物理):512 位元組 / 512 位元組

i/o 大小(最小/最佳):512 位元組 / 512 位元組

units = 扇區 of 1 * 512 = 512 bytes

扇區大小(邏輯/物理):512 位元組 / 512 位元組

i/o 大小(最小/最佳):512 位元組 / 512 位元組

[root@localhost yanyu]# fdisk /dev/sdb

歡迎使用 fdisk (util-linux 2.23.2)。

更改將停留在記憶體中,直到您決定將更改寫入磁碟。

使用寫入命令前請三思。

命令(輸入 m 獲取幫助):n

partition type:

p primary (1 primary, 0 extended, 3 free)

e extended

select (default p): p

分割槽號 (2-4,預設 2):2

起始 扇區 (976769024-976773167,預設為 976769024):

將使用預設值 976769024

last 扇區, +扇區 or +size (976769024-976773167,預設為 976773167):

將使用預設值 976773167

分割槽 2 已設定為 linux 型別,大小設為 2 mib

命令(輸入 m 獲取幫助):w

the partition table has been altered!

calling ioctl() to re-read partition table.

正在同步磁碟。

[root@localhost yanyu]# mkfs.ext4 /dev/sdb

mke2fs 1.42.9 (28-dec-2013)

/dev/sdb is entire device, not just one partition!

無論如何也要繼續? (y,n) y

檔案系統標籤=

os type: linux

塊大小=4096 (log=2)

分塊大小=4096 (log=2)

stride=0 blocks, stripe width=0 blocks

30531584 inodes, 122096646 blocks

6104832 blocks (5.00%) reserved for the super user

第乙個資料塊=0

maximum filesystem blocks=2271215616

3727 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, 71663616, 78675968,

102400000

allocating group tables: 完成

正在寫入inode表: 完成

creating journal (32768 blocks): 完成

writing superblocks and filesystem accounting information: 完成

[root@localhost yanyu]# cd /home

[root@localhost home]# ls

pokes yanyu

[root@localhost home]# mkdir data

[root@localhost home]# mount /dev/sdb ./data

[root@localhost home]# echo /dev/sdb /home/data ext4 defaults 0 0 >> /etc/fstab

[root@localhost home]# reboot

結果如下:

[root@localhost ~]# df -h

檔案系統 容量 已用 可用 已用% 掛載點

devtmpfs 897m 0 897m 0% /dev

tmpfs 915m 0 915m 0% /dev/shm

tmpfs 915m 9.3m 906m 2% /run

tmpfs 915m 0 915m 0% /sys/fs/cgroup

/dev/sda1 1014m 172m 843m 17% /boot

/dev/sdb 459g 73m 435g 1% /home/data

tmpfs 183m 8.0k 183m 1% /run/user/42

tmpfs 183m 0 183m 0% /run/user/0

[root@localhost ~]#

fuse s3掛載到centos7 5伺服器

需將s3 bucket 掛載到本地centos7伺服器,用作附件或備份儲存。在aws上建立 s3 bucket的iam使用者,並新增讀寫許可權。在此獲取 access key id 與 secret access key。yum install fuse.x86 64 fuse devel.x86 ...

centos 7 5安裝配置FTP伺服器

centos 7預設是沒有開啟ftp服務的,我們必須手動開啟。具體安裝開啟步驟如下 yum y install vsftpd y表示不用輸入確定,直接一路安裝到底systemctl enable vsftpdsystemctl start vsftpd.serviceps e grep ftp 列出...

阿里雲CentOS伺服器掛載資料盤

檢視磁碟情況,該阿里雲伺服器對應的系統盤為vda 40g,資料盤為vdb2 1.7t。輸入fdisk dev vdb2 對資料盤進行分割槽。根據提示,輸入 n,p,1,回車,回車,wq mkfs.ext4 dev vdb2echo dev vdb2 home ext4 defaults 0 0 et...