-4

Hi i run this code in my kali linux terminal Sudo add-apt-repository -remove ppa:ubuntu-wine/ppa It show this message

  • !!please note that this repository is deprecated!! *

  • Actually this is double deprecated and it is also then replaced *

I just want to remove this repository

I'm Using Kali Linux 2021.2

2 Answers2

0

You have a typo in your command line -remove, use --remove instead:

sudo add-apt-repository --remove ppa:ubuntu-wine/ppa
sudo apt update

Manually:

sudo rm /etc/apt/sources.list.d/ubuntu-wine-ubuntu-ppa-jammy.list
sudo apt update
GAD3R
  • 66,769
-1
  1. Using apt command: sudo apt-add-repository --remove ppa:[PPA_NAME]

  2. Using purge command:

  • First, install ppa-purge using this command sudo apt install ppa-purge
  • Then remove the ppa repository using sudo ppa-purge ppa:[PPA_NAME]

Check out this cool website for more information related to your question. Cr: https://www.linuxfordevices.com/tutorials/ubuntu/remove-an-apt-repository-ubuntu