What is a storage device?
A storage device is a physical component that records data and holds it persistently.
There are many storage devices that can be supported by the Linux operating system. Some of the most common ones include:
- Hard disk drive (HDD): Electromechanical devices that use magnetic technology to store data, usually in large amounts.
- A solid-state drive (SSD): Storage device that uses non-mechanical solid-state technology to store data, usually in large amounts. They tend to support much quicker access times than HDDs.
- USB thumb drive: Portable storage devices that use flash memory technology to store data, usually in small amounts compared to HDDs and SSDs.Their small size makes them easy to move around.
- External storage drive: Portable storage devices that use one of many several technology types. They usually connect to a computer through a peripheral interface like USB, rather being an internal component.
Note: The term 'disk' and 'hard drive' are often used to refer to all storage devices generally. Even some Linux tools do this. However, not all storage devices use hard disk technology.
Linux refers to any storage device as either a block device or character device
Block device: These are the storage devices (HDD, SSD etc) that can be read from and write to in blocks of data.
Character device: These are the devices like keyboards, mice, serial ports etc that can be read from and write to in streams of data
Comments
Post a Comment