distinguish between user mode and kernel mode?
Answer Posted / lipsa naik
Kernel mode, also referred to as system mode, is one of the
two distinct modes of operation of the CPU (central
processing unit) in Linux. The other is user mode, a non-
privileged mode for user programs. When the CPU is in
kernel mode, it is assumed to be executing trusted
software, and thus it can execute any instructions and
reference any memory addresses. all user mode software must
request use of the kernel by means of a system call in
order to perform privileged. The standard procedure to
change from user mode to kernel mode is to call the
software interrupt 0x80. All processes begin execution in
user mode, and they switch to kernel mode only when
obtaining a service provided by the kernel. This change in
mode is termed a mode switch.
| Is This Answer Correct ? | 21 Yes | 9 No |
Post New Answer View All Answers
Which unix command lists files/folders in alphabetical order?
Explain mount and unmount command.
What is the behavioural difference between cmp and diff commands?
how to sort the content of the file based on numeric values
Give the command for finding the current date.
How do I use grep to find a file?
What is the use of awk command in unix?
What is awk used for?
Describe the zip/unzip command using gzip.
Describe the usage and functionality of the command rm –r * in unix?
What are the general commands in using unix os for a beginner?
What does the md command do?
How do I search for text in vi?
What does the metacharacter mean?
Differentiate cmp command from diff command.