github에서 conky를 다운로드했습니다.https://github.com/brndnmtthws/conky
그런 다음 다음 방법을 사용하여 설치했습니다.
$ mkdir build
$ cd build
$ ccmake /home/user/conky
# this will launch a curses-based UI where you can configure
# everything, when you are ready you can build as usual:
$ sudo make # This will compile conky in the `src` subdirectory
$ sudo make install
그런 다음 제거하고 싶었습니다. /build 및 /conky 디렉터리를 삭제했습니다.
내가 해냈어sudo apt-get --purge remove conky conky-all
그런 다음 재부팅했지만 conky는 여전히 시작되었습니다.
콘키를 제거하는 방법?
답변1
이해가가는 것 같네요.
먼저 동일한 방법을 사용하여 다시 설치한 후 다음을 수행했습니다.
killall conky
cd build
make clean
cd
sudo rm -r build
sudo rm -r conky
sudo rm -r /usr/local/bin/conky-1.10.7_pre
sudo rm /usr/local/bin/conky
sudo apt-get update ; sudo apt-get autoclean ; sudo apt-get clean ; sudo apt-get autoremove
답변2
설치된 파일 목록(일반적으로 덮어쓰지 않은 파일은 아님)이 포함될 수 있는 빌드 디렉터리를 제거하므로 make 설치 중에 설치된 모든 새 파일을 찾는 100% 확실한 방법은 없습니다.
비슷한 것을 시도해 볼 수 있습니다
find /directory_path -mtime -1 -ls
.여기), 하지만 해당 기간 내에 더 많은 빌드와 설치를 수행하면 온갖 문제가 발생할 수 있습니다.
apt의 통합 패키지 관리 시스템 외부에서 구성, 구축 및 설치했기 때문에 시도한 apt-get 방법이 실패했습니다.
나중에 이 작업을 다시 수행하려면 make install
해당 섹션에 대해 최소한 이전에 설치된 파일의 인덱스를 만들고 동일한 작업을 수행하세요. 이러한 인덱스를 비교하면 설치되고 덮어쓴 파일이 제공됩니다.
행운을 빌어요.