I have two Programs I can not figure out how to delete them. These Programs are Heroic Games Launcher and Joes Own Editor ( A text editor for the console). They don’t appear in the GUI Add Software/Remove Software Program. They are not installed as Flatpaks or Snaps. Is there a right pacman command for that? I know that you remove Software with the pacman -R command, but i don’t know the right name of the application, basically what to type after pacman -R.
the respective names are likely: joe
and heroic-games-launcher
or heroic-games-launcher-bin
If you inspect the desktop launcher for the program, you can see the name of the binary that is executed
and then can use pacman -F or pacman -Qi to search for the package this binary belongs to.
It may be better to use pacman -Rns instead of pacman -R
but: inspect the output (what will be removed) before you commit.
Where can you see which binary file is being executed when you right-click the desktop icon?
Mod edit:- Only English is permitted in the English areas of the forum. To use any foreign language, please begin a topic in the appropriate language category. Your content has been translated to English.
Instead of a normal left-click, right-click and then select “Edit Application.”
The program’s name will then be displayed under “Command.”
It should work pretty much the same way in Plasma.
…we’re both going to get a reprimand for speaking German in the English section of the forum without warning.
Mod edit:- Only English is permitted in the English areas of the forum. To use any foreign language, please begin a topic in the appropriate language category. Your content has been translated to English.
@soundofthunder
Let’s hope we always stay consistent with that rule
with all the russian and french and whatnot posts that where answered by translating them to be able to read them and then responding (sometimes) in english …
… it can be overdone …
No, unfortunately not. When I right-click, I only get the properties, and it just says it’s a desktop entry. So, right-clicking the desktop icon doesn’t give me any useful information.
The problem is, I can’t find the programs at all. Neither in the Software Center nor via Pacman. They’re not installed as Flatpaks or Snaps either.
Mod edit:- Only English is permitted in the English areas of the forum. To use any foreign language, please begin a topic in the appropriate language category. Your content has been translated to English.
I still don’t know which DE we are talking about - which one you use.
I know for a fact that it does work like I just described - because I just looked and did that here.
When i click right I dont get any useful Informations. There is not this function, where i can look with binary is started by the desctop icon. And when i type in a terminal sudo pacman -R joe, the output is: Target not found. But, for heroic-games-launcher it worked. Thanks for that.
Thank you Nachlese for your support. When I type joe in the terminal the editor starts.
When I type which joe the output is /usr/bin/joe. But when I type pacman -Qi joe the return is Error: The Package joe was not found. Isnt that strange? So, when I try to remove it by sudo pacman -Rns joe the return says: Error: Target not found: joe.
One wonders how you got that thing installed … if the package manager doesn’t know about it’s existence.
One way to remove it could be to simply try to install it (again)
and then remove it.
But that may fail or you may have to force the installation, as all the files will already be present
and the package manager will tell you so and refuse overwriting …
The other way is to simply remove it “by hand”.
Here is the list of files and directories that belong to this package:
simply sudo rm each one -
it looks more daunting than it is, as many files are in dedicated directories and these can simply be removed recursively instead of one by one
Now I remember how i installed it. I downloaded it from the official Website of JOEs. There is a Link to Sourceforge. The Download is a tar.gz archive. I just looked it up. In the archive there is a install shell script (install-sh). I think i installed it that Way by starting the Script. If this was the case (99% sure) would it makes sense that the pacman package manager didnt know about the package?
On the upside:
just get that archive again.
If it has got an install script, it also has got an uninstall script
or some way to remove the files that the install script … installed.
ps:
I just looked at it - it is a source archive - the same that the AUR package uses.
make install builds and installs it - make uninstall does
Just follow the instructions to build it like you did the first time:
I can not find any uninstall script sadly. It is not so important to uninstall this program in the end. Its below 10 Megabyte or so I think. But thank you for your help, I learned a lot by this.
I had a quick look and I don’t see an actual uninstall script in the current tar.gz, but the Makefile.in has an uninstall target, so it is likely something like this will work:
/configure --prefix=/usr --sysconfdir=/etc
make
sudo make uninstall
I’ve not tried it, but it is basically the steps the INSTALL.md has for installing it, but for the uninstall target.
I just expanded on my post - it’s a source archive, the program is compiled and then installed
It can also be uninstalled using that same process.
See above @Pascal
the instructions which you likely followed back when …: