歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> 在Linux操作系統下增加新硬盤的方法

在Linux操作系統下增加新硬盤的方法

日期:2017/2/28 17:37:06   编辑:Linux教程

在系統上增加硬盤操作辦法

[root@gyhRedHat root]# fdisk


Usage: fdisk [-l] [-b SSZ] [-u] device

E.g.: fdisk /dev/hda (for the first IDE disk)

or: fdisk /dev/sdc (for the third SCSI disk)

or: fdisk /dev/eda (for the first PS/2 ESDI drive)

or: fdisk /dev/rd/c0d0 or: fdisk /dev/ida/c0d0 (for RAID devices)

...

[root@gyhredhat root]# df -k

文件系統 1K-塊 已用 可用 已用% 掛載點

/dev/sda3 3723848 705968 2828716 20% /

/dev/sda1 101089 9274 86596 10% /boot

none 14520 0 14520 0% /dev/shm

對新硬盤分區,4G硬盤中劃出1G作為新分區。給/home使用

[root@gyhredhat root]# fdisk /dev/hda

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel. Changes will remain in memory only,

until you decide to write them. After that, of course, the previous

content won't be recoverable.

The number of cylinders for this disk is set to 8322.

There is nothing wrong with that, but this is larger than 1024,

and could in certain setups cause problems with:

1) software that runs at boot time (e.g., old versions of LILO)

2) booting and partitioning software from other OSs

(e.g., DOS FDISK, OS/2 FDISK)

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)


Command (m for help): p


Disk /dev/hda: 4294 MB, 4294967296 bytes

16 heads, 63 sectors/track, 8322 cylinders

Units = cylinders of 1008 * 512 = 516096 bytes


Device Boot Start End Blocks Id System


Command (m for help): m

Command action

a toggle a bootable flag

b edit bsd disklabel

c toggle the dos compatibility flag

d delete a partition

l list known partition types

m print this menu

n add a new partition

o create a new empty DOS partition table

p print the partition table

q quit without saving changes

s create a new empty Sun disklabel

t change a partition's system id

u change display/entry units

v verify the partition table

w write table to disk and exit

x extra functionality (experts only)


Command (m for help): n

Command action

e extended

p primary partition (1-4)

p

Partition number (1-4): 1

First cylinder (1-8322, default 1):

Using default value 1

Last cylinder or +size or +sizeM or +sizeK (1-8322, default 8322): 1000G


Command (m for help): p


Disk /dev/hda: 4294 MB, 4294967296 bytes

16 heads, 63 sectors/track, 8322 cylinders

Units = cylinders of 1008 * 512 = 516096 bytes


Device Boot Start End Blocks Id System

/dev/hda1 1 1000 503968+ 83 Linux


Command (m for help): w

The partition table has been altered!


Calling ioctl() to re-read partition table.

Syncing disks.

Copyright © Linux教程網 All Rights Reserved