1. 런레벨 확인 방법
Code:
runlevel
또는
Code:
who -r
2. 런레벨 변경
Code:
telinit N (N은 런레벨 숫자)
출처 :
1. 런레벨 확인 방법
또는
2. 런레벨 변경
출처 :
Method to find your version is a command line method. There are two commands you can use:
cat /etc/issue
or you can use
cat /etc/lsb-release
…and finally to find your kernel version and a few more details about your machine use the uname command which, per the man pages, shows system information. Examples:
uname -a : print all informationuname -r : print the kernel release
uname -v : print the kernel version
uname -o : print the operating system
see man uname for more details on using the uname… and now you should be able to find out more about your machine, report better bugs and continue to make Ubuntu even better!