I can't recall what I did wrong but i have a folder named "usr/lib/java/jdk/1.8.0_45" that has a desktop for itself in it and all that, basicly an user for itself and all my pictures get saved in there and sometimes it messes with my downloads but I can't remove it in system settings/users. So could somebody please help me on removing it.
Asked
Active
Viewed 613 times
2 Answers
0
If, based on your comment, all you want is that folder removed then, one simple command in a terminal
sudo rm /usr/lib/java/jdk/1.8.0_45
If the issue is deeper than that, you say it has its own user ???, first find the exact name of the user you want removed user like this
cut -d: -f1 /etc/passwd
Then remove it like this
sudo userdel username
Changing username for the user you want gone.
Mark Kirby
- 18,949
- 19
- 79
- 116
0
run
sudo rm -rf /usr/lib/java/jdk/1.8.0_45
-r will delete files with the directory itself.
biozalp
- 635