热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

linux系统关掉网卡命令_如何关闭Linux系统?

linux系统关掉网卡命令IamnewtoLinuxandIhaveinstalledsomeLinuxdistributions.Itrytolearnbashcommands.
linux系统关掉网卡命令

linux系统关掉网卡命令

I am new to Linux and I have installed some Linux distributions. I try to learn bash commands. I can shutdown my computer from Desktop manager easily. But How can I shutdown system from bash without a GUI. There are different ways to shutdown Linux system. Following commands will work most of the distributions like Ubuntu, Debian, Mint, Kali, CentOS, RedHat, Fedora.

我是Linux新手,已经安装了一些Linux发行版。 我尝试学习bash命令。 我可以轻松地从桌面管理器关闭计算机。 但是,如何在没有GUI的情况下从bash关闭系统。 有多种方法可以关闭Linux系统。 以下命令将适用于大多数发行版,如Ubuntu,Debian,Mint,Kali,CentOS,RedHat,Fedora。

断电命令 (Poweroff Command)

We can shutdown a Linux system with poweroff command.  If we want to force the shutdown we can use -f parameter.

我们可以使用poweroff命令关闭Linux系统。 如果要强制关闭,可以使用-f参数。

$ sudo poweroff
使用关机命令关机后重新启动 (Reboot After Shutdown with Poweroff Command)

poweroff command provides the --reboot option which will start the Linux system after a shutdown.

poweroff命令提供了--reboot选项,它将在关机后启动Linux系统。

$ sudo poweroff --reboot
停止 (Halt)

halt command change system run level by using systems service manager like systemd or service.

通过使用系统服务管理器(如systemd或service)来halt命令来更改系统运行级别。

$ sudo halt
重启命令 (Reboot Command)

reboot command actually a synonym of the poweroff command with --reboot option. We can use--halt option in order to halt and do not restart the system like below.

reboot命令实际上是poweroff命令与--reboot选项的同义词。 我们可以使用--halt选项来停止并且不重新启动系统,如下所示。

$ sudo reboot --halt

  • To shutdown system –halt parameter should be provided.

    要关闭系统,应提供-halt参数。

关机命令 (Shutdown Command)

The most popular and well known command is shutdown command. This command automatically shutdown the current system.

最受欢迎的命令是shutdown命令。 该命令自动关闭当前系统。

$ sudo shutdown
给定时间后关闭系统 (Shutdown System After Given Time)

We can set timer to shutdown system. In this example we will shutdown the system after 5 minutes the command issued.

我们可以设置定时器来关闭系统。 在此示例中,我们将在发出命令5分钟后关闭系统。

$ sudo shutdown -h +5
关闭前向系统用户发送消息 (Send Message To The System Users Before Shutdown)

We can send message to the system users with shutdown command. This is useful is we give some time and send message to provide this information to the system users. In this example we will send the message System will be shutdown after 5 minutes

我们可以使用shutdown命令将消息发送给系统用户。 这在我们花一些时间并发送消息以将这些信息提供给系统用户时很有用。 在此示例中,我们将发送消息, System will be shutdown after 5 minutes

$ sudo shutdown -h +5 "System will be shutdown after 5 minutes"

LEARN MORE  Useful Linux Commands
了解更多有用Linux命令
如何关闭Linux系统信息(How To Shutdown Linux System Infografic)
How To Shutdown Linux System Infografic

翻译自: https://www.poftut.com/shutdown-linux-system/

linux系统关掉网卡命令



推荐阅读
  • 本文详细介绍了 Dockerfile 的编写方法及其在网络配置中的应用,涵盖基础指令、镜像构建与发布流程,并深入探讨了 Docker 的默认网络、容器互联及自定义网络的实现。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 本文介绍了如何在Linux系统中获取库源码,并在从源代码编译软件时收集所需的依赖项列表。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 基于KVM的SRIOV直通配置及性能测试
    SRIOV介绍、VF直通配置,以及包转发率性能测试小慢哥的原创文章,欢迎转载目录?1.SRIOV介绍?2.环境说明?3.开启SRIOV?4.生成VF?5.VF ... [详细]
  • Nginx 反向代理与负载均衡实验
    本实验旨在通过配置 Nginx 实现反向代理和负载均衡,确保从北京本地代理服务器访问上海的 Web 服务器时,能够依次显示红、黄、绿三种颜色页面以验证负载均衡效果。 ... [详细]
  • 利用 Calcurse 在 Linux 终端高效管理日程与任务
    对于喜爱使用 Linux 终端进行日常操作的系统管理员来说,Calcurse 提供了一种强大的方式来管理日程安排、待办事项及会议。本文将详细介绍如何在 Linux 上安装和使用 Calcurse,帮助用户更有效地组织工作。 ... [详细]
  • Docker的安全基准
    nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd ... [详细]
  • Windows服务与数据库交互问题解析
    本文探讨了在Windows 10(64位)环境下开发的Windows服务,旨在定期向本地MS SQL Server (v.11)插入记录。尽管服务已成功安装并运行,但记录并未正确插入。我们将详细分析可能的原因及解决方案。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本文介绍如何使用Objective-C结合dispatch库进行并发编程,以提高素数计数任务的效率。通过对比纯C代码与引入并发机制后的代码,展示dispatch库的强大功能。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 本文介绍如何通过更改软件源来提前体验Ubuntu 8.10,包括详细的配置步骤和相关注意事项。 ... [详细]
author-avatar
手机用户2502857731
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有