<div dir="ltr">If you don't like python, there's "apt-file", which is in perl</div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Oct 12, 2014 at 11:04 PM, Michael Havens <span dir="ltr"><<a href="mailto:bmike1@gmail.com" target="_blank">bmike1@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>your trying to get me to see the python script? is this the right way to do it? I did it with 'man' before but  now that I think of it running 'man /usr/lib/command-not-found' is essentially running 'less /usr/lib/command-not-found' except 'man/usr/lib/command-not-found' has the hilighted line ' Manual page command-not-found line 1 (press h for help or q to quit)'</div><div><br></div><div><div>$ more  /usr/lib/command-not-found </div><div>#!/usr/bin/python3</div><div># (c) Zygmunt Krynicki 2005, 2006, 2007, 2008</div><div># Licensed under GPL, see COPYING for the whole text</div><div><br></div><div>from __future__ import absolute_import, print_function</div><div><br></div><div><br></div><div>__version__ = "0.3"</div><div>BUG_REPORT_URL = "<a href="https://bugs.launchpad.net/command-not-found/+filebug" target="_blank">https://bugs.launchpad.net/command-not-found/+filebug</a>"</div><div><br></div><div>try:</div><div>    import sys</div><div>    if sys.path and sys.path[0] == '/usr/lib':</div><div>        # Avoid ImportError noise due to odd installation location.</div><div>        sys.path.pop(0)</div><div>    if sys.version < '3':</div><div>        # We might end up being executed with Python 2 due to an old</div><div>        # /etc/bash.bashrc.</div><div>        import os</div><div>        if "COMMAND_NOT_FOUND_FORCE_PYTHON2" not in os.environ:</div><div>            os.execvp("python3", [sys.argv[0]] + sys.argv)</div><div><br></div><div>    import gettext</div><div>    import locale</div><div>    from optparse import OptionParser</div><div><br></div><div>    from CommandNotFound.util import crash_guard</div><div>    from CommandNotFound import CommandNotFound</div><div>except KeyboardInterrupt:</div><div>    import sys</div><div>    sys.exit(127)</div><div><br></div><div><br></div><div>def enable_i18n():</div><div>    cnf = gettext.translation("command-not-found", fallback=True)</div><div>    kwargs = {}</div><div>    if sys.version < '3':</div><div>        kwargs["unicode"] = True</div><div>    cnf.install(**kwargs)</div><div>    try:</div><div>        locale.setlocale(locale.LC_ALL, '')</div><div>    except locale.Error:</div><div>        locale.setlocale(locale.LC_ALL, 'C')</div><div><br></div><div><br></div><div>def fix_sys_argv(encoding=None):</div><div>    """</div><div>    Fix sys.argv to have only unicode strings, not binary strings.</div><div>    This is required by various places where such argument might be</div><div>    automatically coerced to unicode string for formatting</div><div>    """</div><div>    if encoding is None:</div><div>        encoding = locale.getpreferredencoding()</div><div>    sys.argv = [arg.decode(encoding) for arg in sys.argv]</div><div><br></div><div><br></div><div>class LocaleOptionParser(OptionParser):</div><div>    """</div><div>    OptionParser is broken as its implementation of _get_encoding() uses</div><div>    sys.getdefaultencoding() which is ascii, what it should be using is</div><div>    locale.getpreferredencoding() which returns value based on LC_CTYPE (most</div><div>    likely) and allows for UTF-8 encoding to be used.</div><div>    """</div><div>    def _get_encoding(self, file):</div><div>        encoding = getattr(file, "encoding", None)</div><div>        if not encoding:</div><div>            encoding = locale.getpreferredencoding()</div><div>        return encoding</div><div><br></div><div><br></div><div>def main():</div><div>    enable_i18n()</div><div>    if sys.version < '3':</div><div>        fix_sys_argv()</div><div>    parser = LocaleOptionParser(</div><div>        version=__version__,</div><div>        usage=_("%prog [options] <command-name>"))</div><div>    parser.add_option('-d', '--data-dir', action='store',</div><div>                      default="/usr/share/command-not-found",</div><div>                      help=_("use this path to locate data fields"))</div><div>    parser.add_option('--ignore-installed', '--ignore-installed',</div><div>                      action='store_true',  default=False,</div><div>                      help=_("ignore local binaries and display the available packages"))</div><div>    parser.add_option('--no-failure-msg',</div><div>                      action='store_true', default=False,</div><div>                      help=_("don't print '<command-name>: command not found'"))</div><div>    (options, args) = parser.parse_args()</div><div>    if len(args) == 1:</div><div>        cnf = CommandNotFound(options.data_dir)</div><div>        if not cnf.advise(args[0], options.ignore_installed) and not options.no_failure_msg:</div><div>            print(_("%s: command not found") % args[0], file=sys.stderr)</div><div><br></div><div>if __name__ == "__main__":</div><div>    crash_guard(main, BUG_REPORT_URL, __version__)</div></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div>:-)~MIKE~(-:</div><div><div class="h5">
<br><div class="gmail_quote">On Sun, Oct 12, 2014 at 7:07 PM, James Mcphee <span dir="ltr"><<a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Sorry, it's not in bin.  if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then<div><br></div><div>is the line in .bash.bashrc.</div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Oct 12, 2014 at 10:47 AM, Michael Havens <span dir="ltr"><<a href="mailto:bmike1@gmail.com" target="_blank">bmike1@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">well... in the interim I got my memory chips so I shut down my computer to put them in and found I got the wrong ones! they're two small. so I restart the computer, get your message, and:<div><br></div><div>bmike1@C521 ~ $ which command-not-found<br></div><div>bmike1@C521 ~ $  command-not-found</div><div>command-not-found: command not found</div><div>bmike1@C521 ~ $ </div><div><br></div></div><div class="gmail_extra"><br clear="all"><div>:-)~MIKE~(-:</div><div><div>
<br><div class="gmail_quote">On Sun, Oct 12, 2014 at 9:47 AM, James Mcphee <span dir="ltr"><<a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Honestly, no :)  Check your /etc/bash.bashrc.  The default has a little conditional if the command you typed isn't found it runs that little python script to look for possible packages that might contain what you were trying to run.  It's annoying an I tend to disable it so when I typo a command it doesn't slow me down doing the search.  Find it with "which command-not-found" and you can read the python code, which doesn't really say much, but is interesting none-the-less.</div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Oct 12, 2014 at 9:40 AM, Michael Havens <span dir="ltr"><<a href="mailto:bmike1@gmail.com" target="_blank">bmike1@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">no it isn't  but as I was looking into this I tried running the man page and get:<div>'No manual entry for command-not-found' </div><div>but when I try to apt-get it:</div><div>'command-not-found is already the newest version.' </div><div>Then I tried running it with the help option:<div>'command-not-found: command not found'</div><div> Are you just messing with me, James?</div></div></div><div class="gmail_extra"><br clear="all"><div>:-)~MIKE~(-:</div><div><div>
<br><div class="gmail_quote">On Sun, Oct 12, 2014 at 5:50 AM, James Mcphee <span dir="ltr"><<a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">there's a command called "command-not-found", is that what you were thinking of to find the file in question?</div><div class="gmail_extra"><br><div class="gmail_quote"><span>On Sun, Oct 12, 2014 at 1:38 AM, Michael Havens <span dir="ltr"><<a href="mailto:bmike1@gmail.com" target="_blank">bmike1@gmail.com</a>></span> wrote:<br></span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span><div dir="ltr"><span style="color:rgb(40,40,40);font-family:helvetica,arial,sans-serif;font-size:14px;line-height:22.3999996185303px">Long ago I needed a file that was included in an apt package. If I remember right there is a way to find out what package that file is a part of and to extract it. Am I right? If so, how is it done?</span><br clear="all"><div>:-)~MIKE~(-:</div>
</div>
<br></span>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><span><font color="#888888"><br></font></span></blockquote></div><span><font color="#888888"><br><br clear="all"><div><br></div>-- <br>James McPhee<br><a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>
</font></span></div>
<br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br></div></div></div>
<br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br>James McPhee<br><a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>
</div>
</div></div><br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br></div></div></div>
<br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br>James McPhee<br><a href="mailto:jmcphe@gmail.com" target="_blank">jmcphe@gmail.com</a>
</div>
</div></div><br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org" target="_blank">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br></div></div></div>
<br>---------------------------------------------------<br>
PLUG-discuss mailing list - <a href="mailto:PLUG-discuss@lists.phxlinux.org">PLUG-discuss@lists.phxlinux.org</a><br>
To subscribe, unsubscribe, or to change your mail settings:<br>
<a href="http://lists.phxlinux.org/mailman/listinfo/plug-discuss" target="_blank">http://lists.phxlinux.org/mailman/listinfo/plug-discuss</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br>James McPhee<br><a href="mailto:jmcphe@gmail.com">jmcphe@gmail.com</a>
</div>