Completely Uninstall IntelliJ on Debian
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
Can someone please tell me how I can completely uninstall IntelliJ from Debian? I followed this article but did not see anything under ~/.
for IntelliJ (for superuser or regular user)
I want to reinstall and get the installation wizard, but I am not able to. When I delete the installation directory and try and reinstall, it just runs and doesn't show me the installation wizard, so something is lingering on somewhere!
Any help would be greatly appreciated.
debian intellij
add a comment |Â
up vote
0
down vote
favorite
Can someone please tell me how I can completely uninstall IntelliJ from Debian? I followed this article but did not see anything under ~/.
for IntelliJ (for superuser or regular user)
I want to reinstall and get the installation wizard, but I am not able to. When I delete the installation directory and try and reinstall, it just runs and doesn't show me the installation wizard, so something is lingering on somewhere!
Any help would be greatly appreciated.
debian intellij
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
1
You need to runls -a
,ls
wonâÂÂt show directories starting with.
.
â Stephen Kitt
Feb 26 at 9:57
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Can someone please tell me how I can completely uninstall IntelliJ from Debian? I followed this article but did not see anything under ~/.
for IntelliJ (for superuser or regular user)
I want to reinstall and get the installation wizard, but I am not able to. When I delete the installation directory and try and reinstall, it just runs and doesn't show me the installation wizard, so something is lingering on somewhere!
Any help would be greatly appreciated.
debian intellij
Can someone please tell me how I can completely uninstall IntelliJ from Debian? I followed this article but did not see anything under ~/.
for IntelliJ (for superuser or regular user)
I want to reinstall and get the installation wizard, but I am not able to. When I delete the installation directory and try and reinstall, it just runs and doesn't show me the installation wizard, so something is lingering on somewhere!
Any help would be greatly appreciated.
debian intellij
asked Feb 26 at 9:36
Ciwan
1216
1216
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
1
You need to runls -a
,ls
wonâÂÂt show directories starting with.
.
â Stephen Kitt
Feb 26 at 9:57
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03
add a comment |Â
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
1
You need to runls -a
,ls
wonâÂÂt show directories starting with.
.
â Stephen Kitt
Feb 26 at 9:57
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
1
1
You need to run
ls -a
, ls
wonâÂÂt show directories starting with .
.â Stephen Kitt
Feb 26 at 9:57
You need to run
ls -a
, ls
wonâÂÂt show directories starting with .
.â Stephen Kitt
Feb 26 at 9:57
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
3
down vote
accepted
To completely remove the preferences stored by IntelliJ, and thus see its setup wizard the next time you run it, remove the hidden directories it uses from your home directory:
rm -rf ~/.IdeaIC* ~/.IntelliJIdea* ~/.ideaLibSources
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
add a comment |Â
up vote
0
down vote
The folders starting with a '.' are hidden folders in Linux, meaning you need to add the flag -a (all) to ls to view them. Try this:
ls -la ~/
And you should find the folders starting with a dot created by IntelliJ on your home folder.
Also, if you installed it with a .deb or from a repo use the "purgue" option or apt to automatically remove the configuration files, which is what is being stored in that folder:
sudo apt purge intelliJ
You'll have to check the name of the package though, I don't know if it's called like that.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
To completely remove the preferences stored by IntelliJ, and thus see its setup wizard the next time you run it, remove the hidden directories it uses from your home directory:
rm -rf ~/.IdeaIC* ~/.IntelliJIdea* ~/.ideaLibSources
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
add a comment |Â
up vote
3
down vote
accepted
To completely remove the preferences stored by IntelliJ, and thus see its setup wizard the next time you run it, remove the hidden directories it uses from your home directory:
rm -rf ~/.IdeaIC* ~/.IntelliJIdea* ~/.ideaLibSources
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
To completely remove the preferences stored by IntelliJ, and thus see its setup wizard the next time you run it, remove the hidden directories it uses from your home directory:
rm -rf ~/.IdeaIC* ~/.IntelliJIdea* ~/.ideaLibSources
To completely remove the preferences stored by IntelliJ, and thus see its setup wizard the next time you run it, remove the hidden directories it uses from your home directory:
rm -rf ~/.IdeaIC* ~/.IntelliJIdea* ~/.ideaLibSources
answered Feb 26 at 10:03
Stephen Kitt
141k22307367
141k22307367
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
add a comment |Â
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
Thank you, that worked, and I got the wizard again! much appreciated.
â Ciwan
Feb 26 at 10:08
add a comment |Â
up vote
0
down vote
The folders starting with a '.' are hidden folders in Linux, meaning you need to add the flag -a (all) to ls to view them. Try this:
ls -la ~/
And you should find the folders starting with a dot created by IntelliJ on your home folder.
Also, if you installed it with a .deb or from a repo use the "purgue" option or apt to automatically remove the configuration files, which is what is being stored in that folder:
sudo apt purge intelliJ
You'll have to check the name of the package though, I don't know if it's called like that.
add a comment |Â
up vote
0
down vote
The folders starting with a '.' are hidden folders in Linux, meaning you need to add the flag -a (all) to ls to view them. Try this:
ls -la ~/
And you should find the folders starting with a dot created by IntelliJ on your home folder.
Also, if you installed it with a .deb or from a repo use the "purgue" option or apt to automatically remove the configuration files, which is what is being stored in that folder:
sudo apt purge intelliJ
You'll have to check the name of the package though, I don't know if it's called like that.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
The folders starting with a '.' are hidden folders in Linux, meaning you need to add the flag -a (all) to ls to view them. Try this:
ls -la ~/
And you should find the folders starting with a dot created by IntelliJ on your home folder.
Also, if you installed it with a .deb or from a repo use the "purgue" option or apt to automatically remove the configuration files, which is what is being stored in that folder:
sudo apt purge intelliJ
You'll have to check the name of the package though, I don't know if it's called like that.
The folders starting with a '.' are hidden folders in Linux, meaning you need to add the flag -a (all) to ls to view them. Try this:
ls -la ~/
And you should find the folders starting with a dot created by IntelliJ on your home folder.
Also, if you installed it with a .deb or from a repo use the "purgue" option or apt to automatically remove the configuration files, which is what is being stored in that folder:
sudo apt purge intelliJ
You'll have to check the name of the package though, I don't know if it's called like that.
edited Feb 26 at 10:36
answered Feb 26 at 10:00
Jordi
2687
2687
add a comment |Â
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%2f426627%2fcompletely-uninstall-intellij-on-debian%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
@StephenKitt maybe "install wizard" is the wrong term, but there definitely was a wizard, and I exited it too soon, but among other things, it allowed for creation of desktop icons
â Ciwan
Feb 26 at 9:46
Yep, here is a screenshot.
â Ciwan
Feb 26 at 9:53
1
You need to run
ls -a
,ls
wonâÂÂt show directories starting with.
.â Stephen Kitt
Feb 26 at 9:57
Thanks, I didn't know that! I'm a linux n00b
â Ciwan
Feb 26 at 10:03