Linux terminal Hard Disk Format
Am instalat un nou hard disk SATA de 250 GB pe serverul CentOS Linux al biroului nostru. Cum se formatează un hard disk în sistemul de operare Linux de la un prompt shell?
Există 4 etape simple pentru formatarea hard disk-ului și procedura de instalare:
Pasul 1: Partiționați noul disc utilizând comanda fdisk.
Următoarea comandă va lista toate hard disk-urile detectate:
# fdisk -l | grep ‘^Disk’
Output:
Disk /dev/sda: 251.0 GB, 251000193024 bytes Disk /dev/sdb: 251.0 GB, 251000193024 bytes
To partition the disk – /dev/sdb, enter:
# fdisk /dev/sdb
The basic fdisk commands you need are:
- m – print help
- p – print the partition table
- n – create a new partition
- d – delete a partition
- q – quit without saving changes
- w – write the new partition table and exit
Step#2 : Format the new disk using mkfs.ext3 command
To format Linux partitions using ext2fs on the new disk:
# mkfs.ext3 /dev/sdb1
Step#3 : Mount the new disk using mount command
First create a mount point /disk1 and use mount command to mount /dev/sdb1, enter:
# mkdir /disk1
# mount /dev/sdb1 /disk1
# df -H
Step#4 : Update /etc/fstab file
Open /etc/fstab file, enter:
# vi /etc/fstab
Append as follows:
/dev/sdb1 /disk1 ext3 defaults 1 2
Save and close the file.