I previously used Plex on a prior install of Kubuntu with all my movie, TV, sports, and other video files on that Seagate exernal drive. Everything is neatly categorized in folders on that external drive, but Plex was having a problem letting me tell it to use that external hard drive in Plex, and I really didn't want to bloat up my internal hard drive with all that stuff. So I ran a bunch of commands and made a directory on the main drive that I pointed over to the external hard drive.
My Seagate external drive is:
And it's UUID is:
My Kubuntu home directory is:
Here's what I did in the konsole:
Then I edited the fstab file as follows:
So I got it working! There are just a few problems. First, I can no longer simply go into that external hard drive with Dolphin and just delete stuff I've already watched and copy over things I plan to watch. Turns out that hard drive that I bought thinks I don't own it. I tried running the chmode 777 command from the console without any luck. Do I need to run some kind of take file permissions command within the fstab file, something like this?:
Would that work or do I need to do it in some way specify that it's the user “tom” who gets all the permissions?
Plex is also being annoying. I've got it pointed at my TomsPlexMedia to find all my shows, movies, training vids, etc., but when I make a Plex category like “Movies,” it doesn't let me select a sub folder under TomsPlexMedia. I could ONLY pick TomsPlexMedia or a folder on the internal hard drive. So it dumped all movies, TV shows, sports shows, and work videos into the category “Movies” and then it didn't put anything into “TV Shows” even though I have a lot of those. Then in “Other videos” it dumped all movies, TV shows, work videos, etc. Into “other videos.” It runs, but it's one big mess.
Do I need to make a bunch of folders to point over to the exact sub-folder on the external drive, named things like this?:
Then will it work in the fstab file to do what I did before except multiple times? For example:
Would that work or can I only use that UUID once? Or is there some other way I need to tell Plex, “movies are only in this folder and folders under it”, “TV shows are in this folder and folders under it” and so on?
So, I need to:
1. Permanently take back all file permission rights of my external drive. (Via terminal or within fstab?)
2. Get Plex categories only directed to the folders I want.
One more thing: I'm in Kubuntu 19.10. Last time I got caught with my pants down and suddenly Kubuntu's updating no longer worked. Do I need to soon run the upgrade command in Discover? Will it upgrade me to 20.04 or 20.10? And will one of those end up being LTS? I thought I was getting LTS last time I upgraded, but I don't think that happened.
My Seagate external drive is:
Code:
/dev/sdb2
Code:
UUID=BA96D5AD96D56A81
Code:
/home/tom
Code:
sudo umount /dev/sdb2 sudo gpasswd -a plex plugdev sudo gpasswd -a plex root sudo gpasswd -a plex sudo sudo gpasswd -a tom sudo gpasswd -a tom plex mkdir TomsPlexMedia sudo gedit /etc/fstab
Code:
# Plex TomsPlexMedia USB External Mount UUID=BA96D5AD96D56A81 [hit tab here] /home/tom/TomsPlexMedia [hit tab again] ntfs [tab again] 0 [tab again] 0
Code:
sudo chmod 777 /dev/sdb2
Plex is also being annoying. I've got it pointed at my TomsPlexMedia to find all my shows, movies, training vids, etc., but when I make a Plex category like “Movies,” it doesn't let me select a sub folder under TomsPlexMedia. I could ONLY pick TomsPlexMedia or a folder on the internal hard drive. So it dumped all movies, TV shows, sports shows, and work videos into the category “Movies” and then it didn't put anything into “TV Shows” even though I have a lot of those. Then in “Other videos” it dumped all movies, TV shows, work videos, etc. Into “other videos.” It runs, but it's one big mess.
Do I need to make a bunch of folders to point over to the exact sub-folder on the external drive, named things like this?:
Code:
TomsPlexMovies TomsPlexTV TomsPlexOther
Code:
UUID=BA96D5AD96D56A81 [hit tab here] /home/tom/TomsPlexMovies [hit tab again] ntfs [tab again] 0 [tab again] 0 UUID=BA96D5AD96D56A81 [hit tab here] /home/tom/TomsPlexTV [hit tab again] ntfs [tab again] 0 [tab again] 0 UUID=BA96D5AD96D56A81 [hit tab here] /home/tom/TomsPlexOther [hit tab again] ntfs [tab again] 0 [tab again] 0
So, I need to:
1. Permanently take back all file permission rights of my external drive. (Via terminal or within fstab?)
2. Get Plex categories only directed to the folders I want.
One more thing: I'm in Kubuntu 19.10. Last time I got caught with my pants down and suddenly Kubuntu's updating no longer worked. Do I need to soon run the upgrade command in Discover? Will it upgrade me to 20.04 or 20.10? And will one of those end up being LTS? I thought I was getting LTS last time I upgraded, but I don't think that happened.
Comment