The Issue We want to check all disabled and enabled or only enabled PPAs and repositories from the system The Answer 1 Show all enabled and disabled PPAs and repositories grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/* 2 Show all enabled PPAs and repositories only egrep -v ‘^#|^ *$’ /etc/apt/sources.list /etc/apt/sources.list.d/* References [1] “How can I get a …

The post How to List/Show all enabled/disabled PPAs and repositories from the system Linux/Debian/Ubuntu/Kali Linux etc. appeared first on Blog-D without Nonsense.