Chapter 5 Study Guide: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
==/Dev directoy== | ==/Dev directoy== | ||
The /dev directory contains the special device files that control access all the devices. Two main types of devices under all systems: | |||
''Character devices'' | |||
Data transfers character by character to and from the device. | |||
''Block devices'' Transfers chunks or blocks of information at a time by using physical memory to buffer the transfer | |||
To view the type of the file use the | |||
following command | |||
“ls -l/dev/dsk” | |||
==Filesystems== | ==Filesystems== | ||
==Working with Floppies== | ==Working with Floppies== | ||
==CDs, DVDs, and ISO Images== | ==CDs, DVDs, and ISO Images== | ||
==Hard Disks== | ==Hard Disks== | ||
==USB and Fireware based storage== | ==USB and Fireware based storage== | ||
==Monitoring Filesystems== | ==Monitoring Filesystems== | ||
==Hard Disk Quotas== | ==Hard Disk Quotas== |
Revision as of 17:23, 10 February 2012
This is where I am going to put the chapter 5 study guide. Don't read this until it is done and this sentance is not here! ~JB
Main Point
Bolded word to define
Blah blah
/Dev directoy
The /dev directory contains the special device files that control access all the devices. Two main types of devices under all systems: Character devices Data transfers character by character to and from the device. Block devices Transfers chunks or blocks of information at a time by using physical memory to buffer the transfer To view the type of the file use the following command “ls -l/dev/dsk”