centos 가상 머신을 시작할 수 없는 문제를 해결하는 방법은 무엇입니까?
VMware 가상 머신으로 생성된 Centos 데스크탑 시스템입니다. 시스템이 시작되면 문제가 발생합니다. certmonger를 시작한 후 그림과 같이 인터페이스가 멈추고 그래픽 인터페이스로 들어갈 수 없습니다.
해결책:
먼저 Ctrl+Alt+F2를 눌러 명령을 입력합니다. 라인 인터페이스를 사용하며 루트 사용자를 사용합니다. 로그인하여 /etc/X11/xorg.conf 파일이 있는지 확인합니다. 파일이 있으면 다음 명령을 실행합니다.
mv /etc/X11/xorg.conf /etc/X11/old_xorg.conf
시스템을 다시 시작하고 정상인지 확인합니다.
그런 다음 Ctrl+Alt+F2를 눌러 명령줄 인터페이스에 들어가서 루트 사용자로 로그인하고 /etc/inittab
파일을 수정합니다./etc/inittab
vim/etc/inittab
# inittab is only used by upstart for the default runlevel. # ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM. # System initialization is started by /etc/init/rcS.conf # Individual runlevels are started by /etc/init/rc.conf # Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf # Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf, # with configuration in /etc/sysconfig/init. # For information on how to write upstart event handlers, or how # upstart works, see init(5), init(8), and initctl(8). # Default runlevel. The runlevels used are: # 0 - halt (Do NOT set initdefault to this) # 1 - Single user mode # 2 - Multiuser, without NFS (The same as 3, if you do not have networking) # 3 - Full multiuser mode # 4 - unused # 5 - X11 # 6 - reboot (Do NOT set initdefault to this) # id:5:initdefault:
将最后一行id:5:initdefault:
修改为id:3:initdefault:
rrreee
마지막 줄 변경 id:5 :initdefault:를id:3:initdefault:
로 변경하면 부팅 시 기본적으로 명령줄 인터페이스가 입력됩니다. 다시 시작하고 명령줄을 입력한 후 startx를 실행하여 시스템 그래픽 인터페이스로 들어갑니다! 관련 참조:
centOS 튜토리얼
위 내용은 Centos 가상 머신을 시작할 수 없는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!