I am kind of stuck with the installation of ltrace
on my Kali VM.
My /etc/apt/sources.list
file is updated with following entry:
deb http://http.kali.org/kali kali-rolling main non-free contrib
I am trying to install ltrace
via apt-get install ltrace
.
However, getting an error stating
unable to locate package ltrace
.
Could anyone help me out here?
Edit: It got resolved. Thank you all.
sudo apt-get update
and post thatsudo apt-get upgrade
. Should I edit my sources.list file and include the URL you mentioned? – Jiger Jain Oct 10 '18 at 22:51apt-get dist-upgrade
in place ofapt-get upgrade
. I know that the name of these commands is slightly misleading, sodist-upgrade
will not upgrade from disto version x to x+1 or so. But the package selection criteria differ. However, once you know exactly what you're trying to achieve, you can mix and match these commands as needed. – 0xC0000022L Oct 11 '18 at 08:28