Wednesday, May 8, 2024
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 16517  / 2 Years ago, mon, july 25, 2022, 10:12:41

This basically to do with cuttlefish(The app from showdown) in this case.



I cant find the location of the executable file for it.



The command whereis did not give any results!



I want to add it to my start up applications and thus i need the path!



P.S: the preferences of the app are not showing up and ticking against the start automatically thing when the settings for the 1st time showed up is not working!.



So i need to find out the executable/bin file...



How do i do this?


More From » command-line

 Answers
5

You can use apt-file search <package-name> or dpkg -S <package-name>, where <package-name> is the package you want to search.



Note that these commands will output many results. To find the required package use grep:



apt-file search package | grep -E "(bin/)?package$"



OR



dpkg -S package | grep -E "(bin/)?package$"



This searches the lines whose last word is package and may or may not be preceded by bin/, for example it will result both /usr/bin/package and /usr/anydirectory/package.


[#36123] Tuesday, July 26, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eaderitable

Total Points: 368
Total Questions: 117
Total Answers: 111

Location: Tuvalu
Member since Sat, Feb 11, 2023
1 Year ago
;