Kodi Community Forum
Kodi Shared Disk - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: Kodi Shared Disk (/showthread.php?tid=369062)



Kodi Shared Disk - NariNari - 2022-07-26

How do I share the drive where kodi is installed over network to be accessed by my pc to drag and drop files into shared drive?


RE: Kodi Shared Disk - DaVu - 2022-07-31

You should probably at least mention which OS is in use. 

Most OSs (at least Windows and/or Linux) can share everything via the common protocols (SMB or NFS) over the network. So...in order to answer your "how to" question, we need to know which OS is in use. 

And we also need to know what the "PC" is and which OS runs on it from which you want to access the shared drive.


RE: Kodi Shared Disk - NariNari - 2022-08-01

Kodi is installed by itself on a laptop separate from my pc. My pc runs Linux specifically Fedora 36


RE: Kodi Shared Disk - DaVu - 2022-08-01

And now I still don't know the OS which runs on the machine Kodi runs on Wink

I guess it's Linux as well. If that's the case I would recommend to use NFS as a protocol as it's way easier to be set up in comparsion to SMB. 

So...from my guesses, I think you want to use your Fedora machine to access another PC (which probably runs linux as well) which has Kodi installed to drag some files onto it at some random folder, correct?

I would recommend to read this: https://wiki.archlinux.org/title/NFS

Most important is the "/etc/exports" file which defines which folders are shared over the network. The syntax looks similar to:

Code:
/path/to/shared/folder <ip which is allowed to access it> (some options)

# examples
/home/nari/videos 192.168.0.1/24 (rw,insecure)

The example means: 
  • share the /home/nari/videos folder over the network
  • "192.168.0.1/24" says that any machine on the network is able to access that share (this for sure depends on the IP range on your network and might differ from my example
  • "rw" mean that you will have read and write access to that share
  • "insecure" means that ports above 1024 will be used as well
If my assumptions are wrong, then please get us more infos Wink


RE: Kodi Shared Disk - NariNari - 2022-08-01

I dont think you understood me. Kodi is the only os on the machine. The specific os is lebreELEC


RE: Kodi Shared Disk - DaVu - 2022-08-01

Great...now you mentioned the other OS

So on one machine you run LibreELEC with Kodi and you want to access libreelec from your Fedora PC, correct? 

LibreELEC, by default, shares SMB shares. Simply access them via your file browser which Fedora provides: 

https://www.youtube.com/watch?v=oBlHCuGGrJ8

This video shows how to do it from a Windows machine. Simply change the path matching to your OS. smb://<ip> if I'm not mistaken. That used to work.


RE: Kodi Shared Disk - NariNari - 2022-08-01

Thank you so much for solving my problem and being patient with me.


RE: Kodi Shared Disk - DaVu - 2022-08-01

I'm glad it works for you Wink