Linux system temp

来源:互联网 发布:linux升级网卡驱动 编辑:程序博客网 时间:2024/06/07 10:40

Disable X window in UBUNTU 14

Edit /etc/default/grub with your favourite editor, e.g. nano:

sudo nano /etc/default/grub
Find this line:

GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
Change it to:

GRUB_CMDLINE_LINUX_DEFAULT=”text”
Update GRUB:

sudo update-grub

List services

The output of service –status-all lists the state of services controlled by System V.

The + indicates the service is running, - indicates a stopped service. You can see this by running service SERVICENAME status for a + and - service.

Some services are managed by Upstart. You can check the status of all Upstart services with sudo initctl list. Any service managed by Upstart will also show in the list provided by service –status-all but will be marked with a ?.

Reference: man service

原创粉丝点击