From 574ce6ca23648b98d85e1bfacc27bcead783894a Mon Sep 17 00:00:00 2001 From: hmtsai Date: Sat, 6 Jul 2024 21:34:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=85=B3=E6=9C=BA=E5=91=BD?= =?UTF-8?q?=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/linux_common_sense.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/linux_common_sense.md b/src/linux_common_sense.md index f0a5d8a..193be6f 100644 --- a/src/linux_common_sense.md +++ b/src/linux_common_sense.md @@ -122,3 +122,17 @@ rm -r <你想删除的文件夹> 在`r`后面加上`f`就是强制删除了,而 `rm -rf /*` 就是强制删除根目录下所有的文件。以后看到这串命令不要被骗了! > 如果你真的想尝试,那么请一定在虚拟机下!搞坏系统作者可不负责! + +### `poweroff`关机 + +很多同学刚使用Linux的时候,最大的问题就是:怎么关机? + +实际上关机很简单,只需要键入: + +```shell +sudo poweroff +``` + +回车执行之后会提示你输入密码,直接输入就可以了,输入的时候是没有回显的,不用担心,输入完直接回车即可。 + +> 关于`sudo`是什么意思,这个在以后我们讲解权限的时候会提到,你现在就理解为是用来获取系统的最高权限的意思就ok了。 \ No newline at end of file