sh 从CentOS shell安装新磁盘

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 从CentOS shell安装新磁盘相关的知识,希望对你有一定的参考价值。

# create a new partition on disk sdb
fdisk /dev/sdb
n, Enter
Enter
Enter
Enter
Enter
p
w

# create a filesystem (ext4) on the newly created /dev/sdb1 partition
mkfs.ext4 /dev/sdb1

# create a mounting point
mkdir /mnt/watt

# mount sdb1 to /mnt/watt
mount -t ext4 /dev/sdb1 /mnt/watt

以上是关于sh 从CentOS shell安装新磁盘的主要内容,如果未能解决你的问题,请参考以下文章

virtualbox 安装centos ,运行shell 脚本

Centos7一键安装jdk1.8 shell脚本

Linux通用KVM自动安装Shell脚本(兼容所有Linux发行版/CentOS/Ubuntu)

centos磁盘扩容-新空间增加到已有分区空间中

CentOS7通过shell脚本自动部署oracle12c

CentOS,shell脚本自动安装JDK