distinguish between user mode and kernel mode?
Answers were Sorted based on User's Feedback
Answer / sachin tyagi
user mode is an area that is used to execute userlevel
commands .
But in kernel mode all the commands like device driver etc.
executes.
Is This Answer Correct ? | 21 Yes | 6 No |
Answer / wizards
User mode is where all the user programmes will execute.
where as in kernel mode all kernel programmes like like
Network driver programs etc., will be execute
Is This Answer Correct ? | 24 Yes | 11 No |
Answer / 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 |
user mode can't read/write directly to OS memory.
kernel mode can read and write directly from OS memory.
Is This Answer Correct ? | 13 Yes | 4 No |
Answer / foulo
User mode is where all the user programmes will execute.
where as in kernel mode all kernel programmes like like
Network driver programs etc., will be execute
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sharanabasappa d
Fault occuring in the user mode will not lead to
catastrophic error such as system failure. But only effects
the system stability and system can be resumed.
Where as in kernel mode fault will lead to Catastrophic
failue (System Failure)
Is This Answer Correct ? | 6 Yes | 4 No |
What is grep and how do you use it?
Hi All, Can you please let me know how to grep for a particular pattern in unix. I want to print the dates from the file exp.txt. the date pattern is DD:MM:YYYY, I just want to print all the dates from the file exp.txt.
8 Answers Concentrix, IBM, Symantec, TCS,
how to find the 51th record of a file containing 100 records in unix.
what are the different commands used to create files?
How do you repeat a command in terminal?
What is sed awk grep?
What command would users use to see what file one page at a time in UNIX?
what are processor execution levels and priorities?
What will the following command do?
what is mount ,tell me about mount ,how can u use in real time project??
What is command substitution?
What is the behavioural difference between cmp and diff commands?