Difference between revisions of "Format dan Set Harddisk Label"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | Bagaimana cara memformat dan mengupgrade harddisk menggunakan shell? Berikut adalah empat (4) langkah yang perlu dilakukan, | |
− | |||
− | ==Step #1 : | + | ==Step #1 : Partisi harddisk menggunakan perintah fdisk== |
+ | |||
+ | Perintah berikut akan memperlihatkan semua harddisk yang terdeteksi: | ||
− | |||
# fdisk -l | grep '^Disk' | # fdisk -l | grep '^Disk' | ||
+ | |||
Output: | Output: | ||
Revision as of 13:24, 16 February 2011
Bagaimana cara memformat dan mengupgrade harddisk menggunakan shell? Berikut adalah empat (4) langkah yang perlu dilakukan,
Step #1 : Partisi harddisk menggunakan perintah fdisk
Perintah berikut akan memperlihatkan semua harddisk yang terdeteksi:
# fdisk -l | grep '^Disk'
Output:
Disk /dev/sda: 251.0 GB, 251000193024 bytes Disk /dev/sdb: 251.0 GB, 251000193024 bytes
A device name refers to the entire hard disk. For more information see Linux partition naming convention and IDE drive mappings. 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
Untuk memformat partisi linux dapat menggunakan perintah
# mkfs /dev/sdb1
atau
# mkfs.ext3 /dev/sdb1
atau
# mkfs.ext4 /dev/sdb1
Step#3 : Mount the new disk using mount command
Menempelkan ke folder /disk1 menggunakan perintah mount /dev/sdb1, sebagai berikut:
# mkdir /disk1 # mount /dev/sdb1 /disk1 # df -H
Step#4 : Update /etc/fstab file
Buka file /etc/fstab
# vi /etc/fstab
masukan data berikut:
/dev/sdb1 /disk1 ext3 defaults 1 2
Save and close the file.
Task: Label the partition
You can label the partition using e2label. For example, if you want to label the new partition /backup, enter
# e2label /dev/sdb1 /backup
You can use label name insted of partition name to mount disk using /etc/fstab:
LABEL=/backup /disk1 ext3 defaults 1 2