Hara
Hara

Reputation: 1502

What is difference between segment, Volume and Partition ?(In Storage Domain)

I have a basic question related to storage domain. Can any one answer what is difference between segment, Volume and Partition ? Thanks.

Upvotes: 0

Views: 1771

Answers (2)

Leo
Leo

Reputation: 10833

Just to clarify @Potatoswatter regarding segments:

  • In disk drives these are called (track) sectors. Typically 4096-byte (4 KB) size, known as the Advanced Format.

  • In memory, segments (or sections) are divided parts of the primary memory. References to memory locations can then be broken down into: segment id, segment offset.

Upvotes: 1

Potatoswatter
Potatoswatter

Reputation: 137880

A partition is a division of a storage device described in the partition map, which may contain a volume. A volume comprises the bytes that contain a filesystem.

An unpartitioned device, such as a floppy, contains a volume but does not contain a partition.

I've never heard of "segment." Google gives http://evms.sourceforge.net/terminology.html, which defines that as any logically contiguous range of sectors.

Upvotes: 0

Related Questions