美文网首页
CentOS8关盖后正常工作

CentOS8关盖后正常工作

作者: WxhShine | 来源:发表于2020-02-23 14:03 被阅读0次
CentOS.jpg

​ 因为家里有台限制的电脑, 就装上CentOS系统当做服务器使用; 可是CentOS默认的关闭盖子后系统就睡眠了, 在网上查了下, 关闭盖子后正常工作

​ 启动CentOS, 修改/etc/systemd/logind.conf 文件

vim /etc/systemd/logind.conf

文件打开是这样的:

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See logind.conf(5) for details.

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
#HandleLidSwitchExternalPower=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=no
#InhibitorsMax=8192
#SessionsMax=8192

将其中的 #HandleLidSwitch=suspend 改成 HandleLidSwitch=lock

ignore(什么都不做)
poweroff(关机)
reboot(重新启动)
halt(进程都挂起)
suspend(待机挂起)
hibernate(休眠)
lock (锁屏,任可正常工作)

因为默认是suspend 所以当关闭盖子后, 所有进程都挂起了, 远程连接也无法使用了.

最后修改完毕后, 重启或者 systemctl restart systemd-logind生效.

相关文章

  • CentOS8关盖后正常工作

    ​ 因为家里有台限制的电脑, 就装上CentOS系统当做服务器使用; 可是CentOS默认的关闭盖子后系统就...

  • Centos8---网络管理

    前言 当我们安装好Centos8后重启网卡服务时,会出现报错。经官方文档确认后,在Centos8中,官方移除了ne...

  • Linux docker0 already bound to a

    前言 系统重启后碰到docker无法启动的问题 centos8 解决方案

  • RabbitMQ零散知识

    CentOS8默认情况下环境下,执行systemctl restart rabbitmq-server 会重启后所...

  • 正常工作

    今日到公司正常工作,联系同华检修事宜昨日射线探伤EH油管道20道口,全部合格。另外办理报销及出差手续联系李文正。侯...

  • 正常工作

    疫情之下(四十四) 2020年4月13日 凌晨五点,耳边手机震动,我抓起电话接起——是客户...

  • 斯特恩-盖拉赫实验

    公式正常显示版:奇迹号:斯特恩-盖拉赫实验 有两种讲授量子力学的方法,一种是按照历史的逻辑,介绍黑体辐射、关电效应...

  • CentOS8基本操作指令

    CentOS8基本操作指令 linux指令centos8版本 hostnamectl set-hostname 设...

  • CentOS8容器管理工具Podman

    新年新装的 CentOS8 系统,装完发现没有 Docker 了,后来发现 CentOS8 使用 Podman 作...

  • CentOS8的podman容器

    笔者在使用CentOS8时安装docker失败,于是发现CentOS8自带容器podman,podman的使用...

网友评论

      本文标题:CentOS8关盖后正常工作

      本文链接:https://www.haomeiwen.com/subject/ntrjqhtx.html