Run "rm-rf/*" in SSH. If you do not understand this command, all Linux system files may be deleted.
This DELETE command can be executed only for accounts with the "root" permission. Other accounts without the "root" permission can only delete files belonging to their own users or user groups.
The Linux directory is stored in directory format such as/, and rm is the Linux DELETE command, followed by "-rf", "-r" refersRecursive deletion (which means to delete all files and folders in the current directory), while "-f" meansForce Delete. /* Indicates all files under the root directory.
If you execute force recursive deletion under the/directory, the command will delete all system directories including/home And/sbin under/without any prompt.
Rm-rf /*
Do not execute the preceding command at will; otherwise, the entire centos system will be deleted.