프로그램이 제거되지 않습니다.

프로그램이 제거되지 않습니다.

내 우분투 20.04 시스템에 존 더 리퍼가 설치되어 있습니다. 원래는 apt-get.

하지만 이제 내 컴퓨터에서 이를 제거해야 합니다. 현재 내가 입력하면 john다음과 같은 결과가 나타납니다.

ask@Garsy:~/Notes/TA/AppliedInfoSec/PassCracking$ john
John the Ripper 1.9.0-jumbo-1 OMP [linux-gnu 64-bit x86_64 AVX2 AC]
Copyright (c) 1996-2019 by Solar Designer and others
Homepage: http://www.openwall.com/john/

위치는 다음과 같습니다.

ask@Garsy:~/Notes/TA/AppliedInfoSec/PassCracking$ whereis john
john: /snap/bin/john

먼저 나는 다음을 시도한다:

ask@Garsy:~/Notes/TA/AppliedInfoSec/PassCracking$ sudo apt-get remove john
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package 'john' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 20 not upgraded.

' 그러나 이것은 아무 효과가 없습니다. John은 여전히 ​​내 시스템에 있습니다. 그러면 ask@Garsy:~/Notes/TA/AppliedInfoSec/PassCracking$ sudo apt-get remove --auto-remove john동일한 효과가 있습니다.

나도 sudo apt-get purge john별 효과 없이 노력한다.

무엇을 해야 할지 잘 모르겠습니다. 이미 시도한 것 외에는 John을 제거하는 방법에 대한 정보를 찾을 수 없는 것 같습니다.

답변1

실행 파일의 경로는 /snap/bin/john이므로 John the Ripper가 다음과 같이 설치되었습니다.스냅, 을 통해서가 아닙니다 apt-get.

패키지(또는 더 정확하게는 스냅)를 제거하려면 다음을 실행해야 합니다.

sudo snap remove john

관련 정보