Unity 7.4.5를 제거하는 방법

Unity 7.4.5를 제거하는 방법

내 컴퓨터에 Unity와 Gnome이 설치되어 있습니다(Ubuntu 16.04.4). 손상을 입히지 않고 Unity를 어떻게 제거할 수 있나요? Synaptic Manager(검색 통합)를 검색하면 500개의 행이 나오며 어떤 패키지를 제거해야 할지 이해할 수 없습니다...

답변1

시도해 보세요: 텍스트 전용 모드에서 시작

Switch on your computer. Wait until the BIOS has finished loading, and press and hold Shift, which will bring up the Grub menu.

Select the line which starts with Advanced options.

Select the line ending with (recovery mode)

Press Return and your machine will begin the boot process.

After a few moments, your PC should display a menu with a number of options, including Drop to root shell prompt. Press Return with this option highlighted.

The PC will start in a terminal.

다음 명령을 실행하십시오.

읽기-쓰기 모드로 파티션 마운트

mount -o remount,rw /
mount --all

저장소 업데이트

apt update

적성 및 데보르판 설치

apt install --reinstall aptitude deborphan

그놈에 필요하지 않은 통일성 구성요소 제거

aptitude remove '?and(?reverse-depends(unity),?not(?reverse-depends(?exact-name(gnome))))'

그놈 다시 설치

apt install --reinstall gnome

고아 패키지 제거

deborphan
apt --purge remove $(deborphan)
deborphan --libdevel
apt --purge remove $(deborphan --libdevel)
deborphan --find-config
dpkg --purge $(deborphan --find-config)

불필요한 패키지 제거

apt autoremove

다운로드한 패키지 제거

apt clean

시스템 재시작

reboot

관련 정보