Python3.7을 설치하려고 시도한 후 모든 Linux 명령이 작동하지 않습니다.

Python3.7을 설치하려고 시도한 후 모든 Linux 명령이 작동하지 않습니다.

크고 이상한 문제가 있습니다. Hetzner에 Ubuntu 20을 사용하는 서버가 있습니다.

다음 지침에 따라 python3.7.2를 설치해 보았습니다.

wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz 
Where version can be specific, the above FTP location contains lots of versions.
tar -xvf Python-<version>.tgz 
cd Python-<version>  
./configure 
make 
sudo checkinstall 

"make" 명령 이전에는 모든 것이 괜찮지만 "sudo checkinstall" 이후에는 오류가 발생합니다.

File "/home/Python-3.7.2/Lib/ctypes/__init__.py", line 7, in <module>
    from _ctypes import Union, Structure, Array
ModuleNotFoundError: No module named '_ctypes'
make: *** [Makefile:1130: install] Error 1

****  Installation failed. Aborting package creation.

Restoring overwritten files from backup.../usr/bin/checkinstall: line 95: /usr/bin/gettext: No such file or directory


/usr/bin/checkinstall: line 102: /usr/bin/gettext: No such file or directory
/usr/bin/checkinstall: line 319: /usr/bin/rm: No such file or directory
/usr/bin/checkinstall: line 320: /usr/bin/rm: No such file or directory
/usr/bin/checkinstall: line 95: /usr/bin/gettext: No such file or directory


/usr/bin/checkinstall: line 95: /usr/bin/gettext: No such file or directory

이제 이 시점에서는 ls, ps, python 등 모든 Linux 명령이 작동하지 않습니다.

-bash: /usr/bin/su: No such file or directory
-bash: /usr/bin/ls: No such file or directory
-bash: /usr/bin/ps: No such file or directory

서버를 수동으로 다시 시작했지만 작동하지 않습니다. 지금 무슨 일이 일어나고 있는지 아는 사람 있나요? "make" 및 "checkinstall" 명령을 사용한 적이 없으며 이제 멈췄습니다.

관련 정보