Duplicates of .desktop files in Linux
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I have a duplication of NetBeans for .desktop . I cannot find where these .desktop files are, I have searched for them using the GUI file explorer and cannot find them. And yes, I have looked in /usr/share/applications
and i still cannot find them there. I have uninstalled NetBeans and reinstalled it, however the .desktop entry is still there? Is there anyway to remove 2 and keep the proper one?
gnome kali-linux .desktop
add a comment |Â
up vote
2
down vote
favorite
I have a duplication of NetBeans for .desktop . I cannot find where these .desktop files are, I have searched for them using the GUI file explorer and cannot find them. And yes, I have looked in /usr/share/applications
and i still cannot find them there. I have uninstalled NetBeans and reinstalled it, however the .desktop entry is still there? Is there anyway to remove 2 and keep the proper one?
gnome kali-linux .desktop
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have a duplication of NetBeans for .desktop . I cannot find where these .desktop files are, I have searched for them using the GUI file explorer and cannot find them. And yes, I have looked in /usr/share/applications
and i still cannot find them there. I have uninstalled NetBeans and reinstalled it, however the .desktop entry is still there? Is there anyway to remove 2 and keep the proper one?
gnome kali-linux .desktop
I have a duplication of NetBeans for .desktop . I cannot find where these .desktop files are, I have searched for them using the GUI file explorer and cannot find them. And yes, I have looked in /usr/share/applications
and i still cannot find them there. I have uninstalled NetBeans and reinstalled it, however the .desktop entry is still there? Is there anyway to remove 2 and keep the proper one?
gnome kali-linux .desktop
edited Nov 11 '17 at 19:36
Jeff Schaller
32k849109
32k849109
asked Nov 11 '17 at 19:25
MarkPrescher
114
114
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
0
down vote
Check within $XDG_DATA_HOME
, $XDG_DATA_DIRS
Per the XDG Spec ç Environment Variables these will be set to ~/.local/share
, /usr/local/share
, and /usr/share
if not specified. Within each those directories, you should see an applications
folder.
tl;dr
Checking within
~/.local/share/applications
/usr/local/share/applications
would likely show these up, I'd guess.
add a comment |Â
up vote
0
down vote
Or else
sudo find / -name *.desktop | grep -i netbeans
If they are anywhere else.
orsudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one command
â Jeff Schaller
Nov 18 '17 at 13:38
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Check within $XDG_DATA_HOME
, $XDG_DATA_DIRS
Per the XDG Spec ç Environment Variables these will be set to ~/.local/share
, /usr/local/share
, and /usr/share
if not specified. Within each those directories, you should see an applications
folder.
tl;dr
Checking within
~/.local/share/applications
/usr/local/share/applications
would likely show these up, I'd guess.
add a comment |Â
up vote
0
down vote
Check within $XDG_DATA_HOME
, $XDG_DATA_DIRS
Per the XDG Spec ç Environment Variables these will be set to ~/.local/share
, /usr/local/share
, and /usr/share
if not specified. Within each those directories, you should see an applications
folder.
tl;dr
Checking within
~/.local/share/applications
/usr/local/share/applications
would likely show these up, I'd guess.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Check within $XDG_DATA_HOME
, $XDG_DATA_DIRS
Per the XDG Spec ç Environment Variables these will be set to ~/.local/share
, /usr/local/share
, and /usr/share
if not specified. Within each those directories, you should see an applications
folder.
tl;dr
Checking within
~/.local/share/applications
/usr/local/share/applications
would likely show these up, I'd guess.
Check within $XDG_DATA_HOME
, $XDG_DATA_DIRS
Per the XDG Spec ç Environment Variables these will be set to ~/.local/share
, /usr/local/share
, and /usr/share
if not specified. Within each those directories, you should see an applications
folder.
tl;dr
Checking within
~/.local/share/applications
/usr/local/share/applications
would likely show these up, I'd guess.
answered Nov 11 '17 at 20:24
Andrew Siplas
1815
1815
add a comment |Â
add a comment |Â
up vote
0
down vote
Or else
sudo find / -name *.desktop | grep -i netbeans
If they are anywhere else.
orsudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one command
â Jeff Schaller
Nov 18 '17 at 13:38
add a comment |Â
up vote
0
down vote
Or else
sudo find / -name *.desktop | grep -i netbeans
If they are anywhere else.
orsudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one command
â Jeff Schaller
Nov 18 '17 at 13:38
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Or else
sudo find / -name *.desktop | grep -i netbeans
If they are anywhere else.
Or else
sudo find / -name *.desktop | grep -i netbeans
If they are anywhere else.
answered Nov 18 '17 at 12:57
bu5hman
1,164214
1,164214
orsudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one command
â Jeff Schaller
Nov 18 '17 at 13:38
add a comment |Â
orsudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one command
â Jeff Schaller
Nov 18 '17 at 13:38
or
sudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one commandâ Jeff Schaller
Nov 18 '17 at 13:38
or
sudo find / -name '*.desktop' -iname '*netbeans*'
if you have GNU find and would like to do it all in one commandâ Jeff Schaller
Nov 18 '17 at 13:38
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f403939%2fduplicates-of-desktop-files-in-linux%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password