Add file system in Linux
/sbin/mkfs.ext4 -L /ora01 /dev/sdi1
mkdir /ora01
create the partions
fdisk -l
n
p
wq
mount /dev/sdi1 /ora01
mount
vi /etc/fstab
add below line
LABEL=/ora01 /ora01 ext4 defaults 1 2
on other node:
/dev/sdi1
/sbin/mkfs.ext4 -L /ora01 /dev/sdi1
mkdir /ora01
create the partions
fdisk -l
n
p
wq
mount /dev/sdi1 /ora01
mount
vi /etc/fstab
add below line
LABEL=/ora01 /ora01 ext4 defaults 1 2
on other node:
/dev/sdi1
Comments
Post a Comment