0

I'm quite new here. I downloaded the Linux doc through sudo apt install linux-doc and even linux-source. When I access its files all I get is changelog.Debian.gz and copyright. The issue is that I need to grep -rli "e1000" /usr/share/doc/linux-doc*, and it was supposed to show me something, but it didn't. How can I deal with the changelog.Debian.gz?

Here is the screenshot.

enter image description here

karel
  • 122,292
  • 133
  • 301
  • 332

1 Answers1

1

You can get a list of files in the package using dpkg -L, e.g. dpkg -L linux-doc.

waltinator
  • 37,856