查看linux启动系统

查看linux的启动系统类型

目前主流的linux主要是两种sysVinit和upstart,以及最近饱受争议的systemd。那么怎么查看自己操作系统的启动系统哪?

之前网上有人使用pstree命令,查看第一行来进行判断。不是特别准确。

我使用ls -l /sbin/init觉得还是比较准确的。

例如:

centos5

[[email protected] ~]# ll /sbin/init
-rwxr-xr-x 1 root root 43496 Jul 22  2011 /sbin/init

结果标明启动系统为sysVinit

ubuntu

[email protected]:~$ ll /sbin/init
lrwxrwxrwx 1 root root 7 Sep 30 16:26 /sbin/init -> upstart*

结果标明启动系统为upstart

centos7

[[email protected] ~]# ll /sbin/init 
lrwxrwxrwx. 1 root root 22 Dec 22 14:40 /sbin/init -> ../lib/systemd/systemd

结果标明启动系统为systemd

时间: 2024-11-25 09:40:07

查看linux启动系统的相关文章

查看linux/AIX系统内存及CPU占用百分比

1.linux下查看CPU及内存占用情况 查看内存占用百分比: [[email protected] ~]# free -m | sed -n '2p' | awk '{print "used mem is "$3"M,total mem is "$2"M,used percent is "$3/$2*100"%"}' used mem is 15765M,total mem is 15949M,used percent is

如何查看Linux的系统是64位的还是32位的

可以用命令“getconf LONG_BIT”查看,如果返回的结果是32则说明是32位,返回的结果是64则说明是64位. 此外还可以使用命令“uname -a”查看,输出的结果中,如果有x86_64就是64位的,没有就是32位的

查看linux启动的线程信息

1.某一进程所有的线程个数.启动时间 ps max -o lstart,lwp,pid,nlwp,cmd lstart:     STARTED time the command started.nlwp:      NLWP number of lwps (threads) in the process. (alias thcount).lwp:        LWP lwp (light weight process, or thread) ID of the lwp being repor

如何查看和停止Linux启动的服务

1. 查看Linux启动的服务 chkconfig --list 查询出所有当前运行的服务 chkconfig --list atd  查询atd服务的当前状态 2.停止所有服务并且在下次系统启动时不再启动,如下所示: chkconfig --levels 12345 NetworkManager off 如果想查看当前处于运行状态的服务,用如下语句过滤即可 chkconfig --list |grep on 3.如果只是想当前的设置状态有效,在系统重启动后即不生效的话,可以用如下命令停止服务

查看Linux 硬件配置信息

如何查看Linux 硬件配置信息 LINUX查看硬件配置 常用命令整理如下: 查看主板的序列号: dmidecode | grep -i serial number 用硬件检测程序kuduz探测新硬件:service kudzu start ( or restart) 查看CPU信息:cat /proc/cpuinfo [dmesg | grep -i cpu][dmidecode -t processor] 查看内存信息:cat /proc/meminfo [free -m][vmstat]

查看linux系统常用的命令,Linux查看系统配置常用命令

一.linux CPU大小  cat /proc/cpuinfo |grep "model name" && cat /proc/cpuinfo |grep "physical id" 说明:Linux下可以在/proc/cpuinfo中看到每个cpu的详细信息.但是对于双核的cpu,在cpuinfo中会看到两个cpu.常常会让人误以为是两个单核的cpu.其实应该通过Physical Processor ID来区分单核和双核.而Physical Pr

Linux虚拟机克隆后,启动系统发现网卡无法启动

一.Linux虚拟机克隆后,启动系统发现网卡无法启动,然后ifup eth0网卡会提示(Device eth0 does not seem to be present, delaying initialization.)失败. 二.处理方法: 方法一: 1.[[email protected] ~]# vim /etc/udev/rules.d/70-persistent-net.rules # This file was automatically generated by the /lib/

查看Linux Centos 系统信息 内核 CPU 系统版本 磁盘 分区 网络配置 进程 命令

linux系统信息 # uname -a # 查看内核/操作系统/CPU信息 # head -n 1 /etc/issue # 查看操作系统版本 # cat /proc/cpuinfo # 查看CPU信息 # hostname # 查看计算机名 # lspci -tv # 列出所有PCI设备 # lsusb -tv # 列出所有USB设备 # lsmod # 列出加载的内核模块 # env # 查看环境变量 # arch 显示机器的处理器架构(1) # uname -m 显示机器的处理器架构(2

查看Linux系统状态的常用命令

一.查看CPU的详细情况 判断服务器CPU的情况依据如下:a. 具有相同的core id 的PUC是由同一个core的超线程.b. 具有相同的physical id 的CPU是同一个CPU封闭的线程或核心方法1:物理个CPU个数如下:以下为2个CPU [[email protected] ~]# cat /proc/cpuinfo|grep "physical id"|sort|uniq|wc -l 2 每个物理CPU中的core的个数(即核数): [[email protected]