Posts: 63
Joined: Jan 2017
Reputation:
1
2020-06-06, 09:25
(This post was last modified: 2020-06-06, 11:35 by Karellen.)
If I can't get my current issue resolved (being addressed in a separate thread), then maybe I should reset the Kodi installation.
Googling leads me to various mentions of a @Karellen- removed zip (there appears to be various variations of the name) like in @Karellen- Link removed. Is it safe, and the only way?
Posts: 3,925
Joined: Sep 2013
Reputation:
365
Hmm, don't have one of those but I would imagine that you can enable SSH on your NAS via the web interface. Once done and set up with a password then you can connect using putty. Once connected, navigate to the required directory with cd /opt/Kodi18
then do mv .kodi .kodi-bak
. To check that the directory has been renamed you can enter ls -alh
which should give you a directory listing of all files and directories in the current directory (/opt/Kodi18) including hidden ones (the .
in front of kodi means that that directory is normally hidden).
Do note that unlike Windows, Linux is cAsE sensitive so Kodi18
is not the same as kodi18
.
Learning Linux the hard way !!
Posts: 4,528
Joined: Jan 2011
Reputation:
152
DaVu
Team-Kodi Member
Posts: 4,528
2020-06-06, 11:25
(This post was last modified: 2020-06-06, 11:26 by DaVu.)
As you might have some kind of a master password to access your NAS, that password should also apply to an SSH connection. So first you should educate yourself how to SSH into your NAS. While using Windows, you are able to use putty and then use the username and password for your master user. You also might have to enable ssh on your NAS first (depends on the system in use). After you are logged in via SSH, then the only commands you need to know are:
cd <directoryname>
- to change into a directory
cd ..
- to go back to the directory where you have been before
ls -al
- to show the content of a directory (also hidden files as the ".kodi" folder is a hidden one)
mv <current_name> <new_name>
- to rename folder/files
rm -rf <name>
- to remove folders or files. Use that with caution as files/folder which are deleted with that command are completely gone
You are searching for a folder named ".kodi". After you found it use either the "rm -rf" or the "mv" command to either remove that folder or rename it.
Posts: 63
Joined: Jan 2017
Reputation:
1
2020-06-06, 16:50
(This post was last modified: 2020-06-06, 16:50 by DoctorJellybean.)
I finally managed to rename the .kodi folder using WinSCP. Thank you for all your help, I wouldn't have been able to do it without your assistance.