what are bootlevel in linux?which level is booting by
default.
Answer Posted / kirtiranjan sahoo
There are 6 levels
init 0 :- Shutdown (halts)
init 1 :- Single user mode or emergency mode, that means no network no multitasking is present in this level, only root user has access in this run level.
init 2 :- NO network but multitasking is present
init 3 :- Network and multitasking is present but without GUI
init 4 :- Unused level.
init 5 :- Boot up a full multi user system and to automatically start X-Wnindows
init 6 :- System restart in this level.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What exactly is a shell?
What is the use of "$?" Sign in shell script?
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.
What is a shell? · Types of shell · what is shell scripting?
What are the different types of commonly used shells on a typical linux system?
Why is shell scripting important?
Why do we use shell scripting?
What is shell geeksforgeeks?
how to print the 2-d, 3-d arrays in unix shell script programs please answer thi questio to my mail venusaikumar@gmail.com
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
Write a script to print the first 10 elements of fibonacci series.
What is the conditional statement in shell scripting?
What is a file basename?
Tell something about the super block in shell scripting?
How will you emulate wc –l using awk?