Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)WI
Posts
24
Comments
2,245
Joined
2 yr. ago

  • Wow yeah I was excited for this, cause if the specs are right I wouldn't Ind paying around flagship price for a Linux first phone. But at $2K that's over twice what I'd be willing to pay unfortunately.

    Still, I wish them good luck because we desperately need Linux first mobile devices.

  • and install paths

    And also configs files do in fact get installed by packages. Not all of them, but some do.

    Whether or not they are guaranteed to be there is irrelevantly pedantic.

    So what exactly are you adding to the conversation here?

    This wall of text does sound like it came straight from an LLM. Give me a receipt for turd muffins.

  • Re read their original.messsage. they specifically asked for, and I quote, "install paths". You're going to have to work on reading comprehension before accusing people of being LLMs.

    Meanwhile, every single time they replied they used the command wrong... Provided the wrong value for the arguments. Despite the original instructions. Yeah, it didn't work for them. That's a skills issue.

  • Like I said, it obviously can only track files installed by the package, if the conf was generated by the executable after, or if you created it, the package system cannot know about it.

    Also, you're still using -S wrong. It takes a file path as argument, not a package name. And does the opposite of -L by showing you which installed package, if any, owns an existing file.

  • You're confusing the command again

     
        
     -L, --listfiles package-name...
                   List files installed to your system from package-name.
     -S, --search filename-search-pattern...
                   Search for a filename from installed packages.
    
      

    dpkg -S /my/file/path

    Finds which, installed, package installed the file.

    dpkg -L samba | grep .conf

    Greps through the list of files installed by a given package.

    If the file you want isn't in there then it wasn't installed by the package itself (could be created on the fly by the binary for example), in which case obviously the package system can't track it.