14
Create a partition under /data, which should be mounted automatically while reboot

Create a partition which mount automatically while rebooting system in centos

  • Upload
    om2580

  • View
    309

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Create a partition which mount automatically while rebooting system in centos

Create a partition under /data, which should be mounted automatically while reboot

Page 2: Create a partition which mount automatically while rebooting system in centos

to create a new partition first check space availability

Page 3: Create a partition which mount automatically while rebooting system in centos

To create new partition type command fdisk /dev/hdd and press m for help

Page 4: Create a partition which mount automatically while rebooting system in centos

for new partition press n and select partition type and first press blank enter than defind the size (+100M)

Page 5: Create a partition which mount automatically while rebooting system in centos

Press w to save and type partprobe -s /dev/hdd and format the partition with mkfs.ext3 /dev/hdd15

Page 6: Create a partition which mount automatically while rebooting system in centos

hdd15 partition has been created and mount it in /data

Page 7: Create a partition which mount automatically while rebooting system in centos

create directory as /data and mount with command mount /dev/hdd15 /data

Page 8: Create a partition which mount automatically while rebooting system in centos

To make mounting while rebooting system make entry in /.baserc file

Page 9: Create a partition which mount automatically while rebooting system in centos

The hdd15 partition will mount automatically in /data directory automatic while system boot

Page 10: Create a partition which mount automatically while rebooting system in centos
Page 11: Create a partition which mount automatically while rebooting system in centos
Page 12: Create a partition which mount automatically while rebooting system in centos
Page 13: Create a partition which mount automatically while rebooting system in centos
Page 14: Create a partition which mount automatically while rebooting system in centos