mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
TSL&PRF
This commit is contained in:
parent
bee8d418b8
commit
8db15eeed5
@ -1,143 +0,0 @@
|
|||||||
[#]: subject: "Linux Jargon Buster: What is sudo rm -rf? Why is it Dangerous?"
|
|
||||||
[#]: via: "https://itsfoss.com/sudo-rm-rf/"
|
|
||||||
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
|
|
||||||
[#]: collector: "lujun9972"
|
|
||||||
[#]: translator: "wxy"
|
|
||||||
[#]: reviewer: " "
|
|
||||||
[#]: publisher: " "
|
|
||||||
[#]: url: " "
|
|
||||||
|
|
||||||
Linux Jargon Buster: What is sudo rm -rf? Why is it Dangerous?
|
|
||||||
======
|
|
||||||
|
|
||||||
When you are new to Linux, you’ll often come across advice to never run `sudo rm -rf /`. There are so many memes in the Linux world around `sudo rm -rf`.
|
|
||||||
|
|
||||||
![][1]
|
|
||||||
|
|
||||||
But it seems that there are some confusions around it. In the tutorial on [cleaning Ubuntu to make free space][2], I advised running some command that involved sudo and rm -rf. An It’s FOSS reader asked me why I am advising that if sudo rm -rf is a dangerous Linux command that should not be run.
|
|
||||||
|
|
||||||
And thus I thought of writing this chapter of Linux jargon buster and clear the misconceptions.
|
|
||||||
|
|
||||||
### sudo rm -rf: what does it do?
|
|
||||||
|
|
||||||
Let’s learn things in steps.
|
|
||||||
|
|
||||||
The rm command is used for [removing files and directories in Linux command line][3].
|
|
||||||
|
|
||||||
```
|
|
||||||
[email protected]:$ rm agatha
|
|
||||||
[email protected]:$
|
|
||||||
```
|
|
||||||
|
|
||||||
But some files will not be removed immediate because of read only [file permissions][4]. They have to be forced delete with the option `-f`.
|
|
||||||
|
|
||||||
```
|
|
||||||
[email protected]:$ rm books
|
|
||||||
rm: remove write-protected regular file 'books'? y
|
|
||||||
[email protected]:$ rm -f christie
|
|
||||||
[email protected]:$
|
|
||||||
```
|
|
||||||
|
|
||||||
However, rm command cannot be used to delete directories (folders) directly. You have to use the recursive option `-r` with the rm command.
|
|
||||||
|
|
||||||
```
|
|
||||||
[email protected]:$ rm new_dir
|
|
||||||
rm: cannot remove 'new_dir': Is a directory
|
|
||||||
```
|
|
||||||
|
|
||||||
And thus ultimately, rm -rf command means recursively force delete the given directory.
|
|
||||||
|
|
||||||
```
|
|
||||||
[email protected]:~$ rm -r new_dir
|
|
||||||
rm: remove write-protected regular file 'new_dir/books'? ^C
|
|
||||||
[email protected]:$ rm -rf new_dir
|
|
||||||
[email protected]:$
|
|
||||||
```
|
|
||||||
|
|
||||||
Here’s a screenshot of all the above commands:
|
|
||||||
|
|
||||||
![Example explaining rm command][5]
|
|
||||||
|
|
||||||
If you add sudo to the rm -rf command, you are deleting files with root power. That means you could delete system files owned by [root user][6].
|
|
||||||
|
|
||||||
### So, sudo rm -rf is a dangerous Linux command?
|
|
||||||
|
|
||||||
Well, any command that deletes something could be dangerous if you are not sure of what you are deleting.
|
|
||||||
|
|
||||||
Consider **rm -rf command** as a knife. Is knife a dangerous thing? Possibly. If you cut vegetables with the knife, it’s good. If you cut your fingers with the knife, it is bad, of course.
|
|
||||||
|
|
||||||
The same goes for rm -rf command. It is not dangerous in itself. It is used for deleting files after all. But if you use it to delete important files unknowingly, then it is a problem.
|
|
||||||
|
|
||||||
Now coming to ‘sudo rm -rf /’.
|
|
||||||
|
|
||||||
You know that with sudo, you run a command as root, which allows you to make any changes to the system.
|
|
||||||
|
|
||||||
/ is the symbol for the root directory. /var means the var directory under root. /var/log/apt means apt directory under log, under root.
|
|
||||||
|
|
||||||
![Linux directory hierarchy representation][7]
|
|
||||||
|
|
||||||
As per [Linux directory hierarchy][8], everything in a Linux file system starts at root. If you delete root, you are basically removing all the files of your system.
|
|
||||||
|
|
||||||
And this is why it is advised to not run `sudo rm -rf /` command because you’ll wipe out your entire Linux system.
|
|
||||||
|
|
||||||
Please note that in some cases, you could be running a command like ‘sudo rm -rf /var/log/apt’ which could be fine. Again, you have to pay attention on what you are deleting, the same as you have to pay attention on what you are cutting with a knife.
|
|
||||||
|
|
||||||
### I play with danger: what if I run sudo rm -rf / to see what happens?
|
|
||||||
|
|
||||||
Most Linux distributions provide a failsafe protection against accidentally deleting the root directory.
|
|
||||||
|
|
||||||
```
|
|
||||||
[email protected]:~$ sudo rm -rf /
|
|
||||||
[sudo] password for abhishek:
|
|
||||||
rm: it is dangerous to operate recursively on '/'
|
|
||||||
rm: use --no-preserve-root to override this failsafe
|
|
||||||
```
|
|
||||||
|
|
||||||
I mean it is human to make typos and if you accidentally typed “/ var/log/apt” instead of “/var/log/apt” (a space between / and var meaning that you are providing / and var directories to for deletion), you’ll be deleting the root directory.
|
|
||||||
|
|
||||||
![Pay attention when using sudo rm -rf][9]
|
|
||||||
|
|
||||||
That’s quite good. Your Linux system takes care of such accidents.
|
|
||||||
|
|
||||||
Now, what if you are hell-bent on destroying your system with sudo rm -rf /? You’ll have to use It will ask you to use –no-preserve-root with it.
|
|
||||||
|
|
||||||
No, please do not do that on your own. Let me show it to you.
|
|
||||||
|
|
||||||
So, I have elementary OS running in a virtual machine. I run `sudo rm -rf / --no-preserve-root` and you can see the lights going out literally in the video below (around 1 minute).
|
|
||||||
|
|
||||||
[Subscribe to our YouTube channel for more Linux videos][10]
|
|
||||||
|
|
||||||
### Clear or still confused?
|
|
||||||
|
|
||||||
Linux has an active community where most people try to help new users. Most people because there are some evil trolls lurking to mess with the new users. They will often suggest running rm -rf / for the simplest of the problems faced by beginners. These idiots get some sort of supremacist satisfaction I think for such evil acts. I ban them immediately from the forums and groups I administer.
|
|
||||||
|
|
||||||
I hope this article made things clearer for you. It’s possible that you still have some confusion, specially because it involves root, file permissions and other things new users might not be familiar with. If that’s the case, please let me know your doubts in the comment section and I’ll try to clear them.
|
|
||||||
|
|
||||||
In the end, remember. Don’t drink and root. Stay safe while running your Linux system :)
|
|
||||||
|
|
||||||
![][11]
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
via: https://itsfoss.com/sudo-rm-rf/
|
|
||||||
|
|
||||||
作者:[Abhishek Prakash][a]
|
|
||||||
选题:[lujun9972][b]
|
|
||||||
译者:[译者ID](https://github.com/译者ID)
|
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
||||||
|
|
||||||
[a]: https://itsfoss.com/author/abhishek/
|
|
||||||
[b]: https://github.com/lujun9972
|
|
||||||
[1]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2016/04/sudo-rm-rf.gif?resize=400%2C225&ssl=1
|
|
||||||
[2]: https://itsfoss.com/free-up-space-ubuntu-linux/
|
|
||||||
[3]: https://linuxhandbook.com/remove-files-directories/
|
|
||||||
[4]: https://linuxhandbook.com/linux-file-permissions/
|
|
||||||
[5]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/08/rm-rf-command-example-800x487.png?resize=800%2C487&ssl=1
|
|
||||||
[6]: https://itsfoss.com/root-user-ubuntu/
|
|
||||||
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/08/linux-directory-structure.png?resize=800%2C400&ssl=1
|
|
||||||
[8]: https://linuxhandbook.com/linux-directory-structure/
|
|
||||||
[9]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/08/sudo-rm-rf-example.png?resize=798%2C346&ssl=1
|
|
||||||
[10]: https://www.youtube.com/c/itsfoss?sub_confirmation=1
|
|
||||||
[11]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/08/dont-drink-and-root.jpg?resize=800%2C450&ssl=1
|
|
@ -0,0 +1,143 @@
|
|||||||
|
[#]: subject: "Linux Jargon Buster: What is sudo rm -rf? Why is it Dangerous?"
|
||||||
|
[#]: via: "https://itsfoss.com/sudo-rm-rf/"
|
||||||
|
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
|
||||||
|
[#]: collector: "lujun9972"
|
||||||
|
[#]: translator: "wxy"
|
||||||
|
[#]: reviewer: "wxy"
|
||||||
|
[#]: publisher: " "
|
||||||
|
[#]: url: " "
|
||||||
|
|
||||||
|
Linux 黑话解释:什么是 sudo rm -rf?为什么如此危险?
|
||||||
|
======
|
||||||
|
|
||||||
|
当你刚接触 Linux 时,你会经常遇到这样的建议:永远不要运行 `sudo rm -rf /`。在 Linux 世界里,围绕着 `sudo rm -rf` 有很多梗。
|
||||||
|
|
||||||
|
![][1]
|
||||||
|
|
||||||
|
但似乎关于它有一些混乱的现象。在 [清理 Ubuntu 以腾出空间][2] 的教程中,我建议运行一些涉及 `sudo` 和 `rm -rf` 的命令。一位读者问我,如果 `sudo rm -rf` 是一个不应该运行的危险的 Linux 命令,我为什么要建议这样做。
|
||||||
|
|
||||||
|
因此,我想到了写一篇 Linux 黑话解释,以消除误解。
|
||||||
|
|
||||||
|
### sudo rm -rf:在做什么?
|
||||||
|
|
||||||
|
让我们按步骤来学习。
|
||||||
|
|
||||||
|
`rm` 命令用于 [在 Linux 命令行中删除文件和目录][3]。
|
||||||
|
|
||||||
|
```
|
||||||
|
$ rm agatha
|
||||||
|
$
|
||||||
|
```
|
||||||
|
|
||||||
|
但是因为有只读的 [文件权限][4],有些文件不会被立即删除。它们必须用选项 `-f` 强制删除。
|
||||||
|
|
||||||
|
```
|
||||||
|
$ rm books
|
||||||
|
rm: remove write-protected regular file 'books'? y
|
||||||
|
$ rm -f christie
|
||||||
|
$
|
||||||
|
```
|
||||||
|
|
||||||
|
另外,`rm` 命令不能被用来直接删除目录(文件夹)。你必须在 `rm` 命令中使用递归选项 `-r`。
|
||||||
|
|
||||||
|
```
|
||||||
|
$ rm new_dir
|
||||||
|
rm: cannot remove 'new_dir': Is a directory
|
||||||
|
```
|
||||||
|
|
||||||
|
因此最终,`rm -rf` 命令意味着递归地、强制删除指定的目录。
|
||||||
|
|
||||||
|
```
|
||||||
|
$ rm -r new_dir
|
||||||
|
rm: remove write-protected regular file 'new_dir/books'? ^C
|
||||||
|
$ rm -rf new_dir
|
||||||
|
$
|
||||||
|
```
|
||||||
|
|
||||||
|
下面是上述所有命令的截图。
|
||||||
|
|
||||||
|
![解释 rm 命令的例子][5]
|
||||||
|
|
||||||
|
如果你在 `rm -rf` 命令前加入 `sudo`,你就是在删除具有 root 权限的文件。这意味着你可以删除由 [root 用户][6] 拥有的系统文件。
|
||||||
|
|
||||||
|
### 所以,sudo rm -rf 是一个危险的 Linux 命令?
|
||||||
|
|
||||||
|
嗯,任何删除东西的命令都可能是危险的,如果你不确定你正在删除什么。
|
||||||
|
|
||||||
|
把 `rm -rf` 命令看作一把刀。刀是一个危险的东西吗?有可能。如果你用刀切蔬菜,那是好事。如果你用刀切手指,那当然是不好的。
|
||||||
|
|
||||||
|
`rm -rf` 命令也是如此。它本身并不危险。它毕竟是用来删除文件的。但是,如果你在不知情的情况下用它来删除重要文件,那就有问题了。
|
||||||
|
|
||||||
|
现在来看看 `sudo rm -rf /`。
|
||||||
|
|
||||||
|
你知道,使用 `sudo`,你以 root 身份运行一个命令,这允许你对系统进行任何改变。
|
||||||
|
|
||||||
|
`/` 是根目录的符号。`/var` 表示根目录下的 `var` 目录。`/var/log/apt` 指的是根目录的 `log` 目录下的 `apt` 目录。
|
||||||
|
|
||||||
|
![Linux 目录层次表示法][7]
|
||||||
|
|
||||||
|
按照 [Linux 目录层次结构][8],Linux 文件系统中的一切都从根目录开始。如果你删除了根目录,你基本上就是删除了系统中的所有文件。
|
||||||
|
|
||||||
|
这就是为什么建议不要运行 `sudo rm -rf /` 命令,因为你会抹去你的整个 Linux 系统。
|
||||||
|
|
||||||
|
请注意,在某些情况下,你可能正在运行像 `sudo rm -rf /var/log/apt` 这样的命令,这可能是好的。同样,你必须注意你正在删除的东西,就像你必须注意你正在用刀切割的东西一样。
|
||||||
|
|
||||||
|
### 我在玩火:如果我运行 sudo rm -rf /,看看会发生什么呢?
|
||||||
|
|
||||||
|
大多数 Linux 发行版都提供了一个故障安全保护,防止意外删除根目录。
|
||||||
|
|
||||||
|
```
|
||||||
|
$ sudo rm -rf /
|
||||||
|
[sudo] password for abhishek:
|
||||||
|
rm: it is dangerous to operate recursively on '/'
|
||||||
|
rm: use --no-preserve-root to override this failsafe
|
||||||
|
```
|
||||||
|
|
||||||
|
我的意思是,人是会打错字的,如果你不小心打了 `/ var/log/apt`,而不是 `/var/log/apt`(`/` 和 `var` 之间的空格意味着你给出了 `/` 和 `var` 目录来删除),你将会删除根目录。
|
||||||
|
|
||||||
|
![使用 sudo rm -rf 时要注意][9]
|
||||||
|
|
||||||
|
别担心。你的 Linux 系统会照顾到这种意外。
|
||||||
|
|
||||||
|
现在,如果你一心想用 `sudo rm -rf /` 来破坏你的系统呢?你将必须使用它将要求你使用的 `-no-preserve-root` 选项与之配合。
|
||||||
|
|
||||||
|
不,请不要自己这样做。让我做给你看看。
|
||||||
|
|
||||||
|
所以,我在一个虚拟机中运行基本的操作系统。我运行 `sudo rm -rf / --no-preserve-root`,你可以在下面的视频中看到灯光熄灭(大约 1 分钟)。
|
||||||
|
|
||||||
|
![video](https://player.vimeo.com/video/594025609)
|
||||||
|
|
||||||
|
### 清楚了么?
|
||||||
|
|
||||||
|
Linux 有一个活跃的社区,大多数人都会帮助新用户。 之所以说是大多数,是是因为有一些的邪恶坏人潜伏着捣乱新用户。他们经常会建议对初学者所面临的最简单的问题运行 `rm -rf /`。我认为这些白痴在这种邪恶行为中得到了某种至上主义的满足。我会立即将他们从我管理的论坛和群组中踢出去。
|
||||||
|
|
||||||
|
我希望这篇文章能让你更清楚地了解这些情况。你有可能仍然有一些困惑,特别是因为它涉及到根目录、文件权限和其他新用户可能不熟悉的东西。如果是这样的话,请在评论区告诉我你的疑惑,我会尽力去解决。
|
||||||
|
|
||||||
|
最后,请记住。<ruby>不要喝酒胡搞<rt>Don’t drink and root</rt></ruby>。在运行你的 Linux 系统时要安全驾驶。
|
||||||
|
|
||||||
|
![][11]
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
via: https://itsfoss.com/sudo-rm-rf/
|
||||||
|
|
||||||
|
作者:[Abhishek Prakash][a]
|
||||||
|
选题:[lujun9972][b]
|
||||||
|
译者:[wxy](https://github.com/wxy)
|
||||||
|
校对:[wxy](https://github.com/wxy)
|
||||||
|
|
||||||
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
|
[a]: https://itsfoss.com/author/abhishek/
|
||||||
|
[b]: https://github.com/lujun9972
|
||||||
|
[1]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2016/04/sudo-rm-rf.gif?resize=400%2C225&ssl=1
|
||||||
|
[2]: https://itsfoss.com/free-up-space-ubuntu-linux/
|
||||||
|
[3]: https://linuxhandbook.com/remove-files-directories/
|
||||||
|
[4]: https://linuxhandbook.com/linux-file-permissions/
|
||||||
|
[5]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/08/rm-rf-command-example-800x487.png?resize=800%2C487&ssl=1
|
||||||
|
[6]: https://itsfoss.com/root-user-ubuntu/
|
||||||
|
[7]: https://i2.wp.com/itsfoss.com/wp-content/uploads/2021/08/linux-directory-structure.png?resize=800%2C400&ssl=1
|
||||||
|
[8]: https://linuxhandbook.com/linux-directory-structure/
|
||||||
|
[9]: https://i1.wp.com/itsfoss.com/wp-content/uploads/2021/08/sudo-rm-rf-example.png?resize=798%2C346&ssl=1
|
||||||
|
[10]: https://www.youtube.com/c/itsfoss?sub_confirmation=1
|
||||||
|
[11]: https://i0.wp.com/itsfoss.com/wp-content/uploads/2021/08/dont-drink-and-root.jpg?resize=800%2C450&ssl=1
|
Loading…
Reference in New Issue
Block a user