Kodi Community Forum

Full Version: Instructions to unistall Kodi
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm going through the learning process with Ubuntu, so please do check with someone who knows what they're talking about, but.....

In the wiki for How to install Kodi on Linux the uninstall instructions in section 1.6 says:

Code:
Then remove the settings folder to remove all settings and library data. This will not delete any videos or music, but just the settings and library data itself:

rm ~/.kodi/

When I tried this the terminal replied "cannot do this to a directory". Google says that command only works if the directory is empty and to use the following command which did work for me. So, either I've screwed up my system or the wiki could be updated?

Code:
rm -r ~/.kodi/
Yeah, Linux won't allow you to remove a directory that isn't empty, so the wiki is indeed wrong !!

Code:
rm -rf directoryname
will remove a directory and all its contents, including other directories and files. That's assuming that your user has the necessary rights to delete the files and directories - ie they are your users files and directories.

This can seem a bit of a pain at first, but it helps stop you deleting stuff by mistake. There's no trashcan for command line deletions Wink
moved to WIKI subforum.
thx! updated the wiki.