Search Criteria
Package Details: plex-media-server 1.41.2.9200-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/plex-media-server.git (read-only, click to copy) |
---|---|
Package Base: | plex-media-server |
Description: | The back-end media server component of Plex. |
Upstream URL: | https://plex.tv/ |
Keywords: | DLNA |
Licenses: | custom |
Conflicts: | plex-media-server-plexpass |
Submitter: | alucryd |
Maintainer: | fryfrog (tixetsal) |
Last Packager: | fryfrog |
Votes: | 348 |
Popularity: | 0.014635 |
First Submitted: | 2014-10-14 22:11 (UTC) |
Last Updated: | 2024-11-14 23:11 (UTC) |
Dependencies (0)
Required by (14)
- jellyseerr (optional)
- kometa (optional)
- ombi (optional)
- ombi-bin (optional)
- ombi-develop (optional)
- ombi-develop-bin (optional)
- plex-anilist-bundle-git
- plex-ass-scanner-git
- plex-hama-bundle-git
- plex-hama-git
- plex-sub-zero
- plex-sub-zero-git
- plex-trakt-scrobbler
- plexwatch
Sources (10)
- https://downloads.plex.tv/plex-media-server-new/1.41.2.9200-c6bbc1b53/debian/plexmediaserver_1.41.2.9200-c6bbc1b53_arm64.deb
- https://downloads.plex.tv/plex-media-server-new/1.41.2.9200-c6bbc1b53/debian/plexmediaserver_1.41.2.9200-c6bbc1b53_armhf.deb
- https://downloads.plex.tv/plex-media-server-new/1.41.2.9200-c6bbc1b53/redhat/plexmediaserver-1.41.2.9200-c6bbc1b53.i686.rpm
- https://downloads.plex.tv/plex-media-server-new/1.41.2.9200-c6bbc1b53/redhat/plexmediaserver-1.41.2.9200-c6bbc1b53.x86_64.rpm
- plex.sysusers
- plex.tmpfiles
- plexmediaserver.conf.d
- plexmediaserver.hook
- plexmediaserver.service
- terms.txt
Latest Comments
« First ‹ Previous 1 .. 6 7 8 9 10 11 12 13 14 15 16 .. 107 Next › Last »
ectospasm commented on 2019-10-31 02:29 (UTC)
@fryfrog: I solved my issue. See https://bbs.archlinux.org/viewtopic.php?pid=1871148 for my troubleshooting effort.
tl;dr, my ~/.cache/pikaur directory was a symlink to an NFS share, and for whatever reason this location was causing the bsdtar unpacking of the rpm to have permissions of 750, not 755.
ectospasm commented on 2019-10-14 23:56 (UTC) (edited on 2019-10-14 23:57 (UTC) by ectospasm)
@fryfrog
Here is a snippet of output from
tar -tvf plex-media-server-1.18.0.1944-1-x86_64.pkg.tar.xz
:So it's definitely getting stored in the pkg tarball that way. Where am I missing the permissions setting? I am using pikaur as my AUR helper, do you think that could be causing this?
ectospasm commented on 2019-10-14 23:45 (UTC) (edited on 2019-10-14 23:46 (UTC) by ectospasm)
@techwiz My umask for both my normal and root user are both 022, so I don't think there's anything out of the ordinary there.
I do notice some messages similar to the following (this is from my memory, I rebooted for a new kernel):
Which suggests the package is overwriting the files with 750 permissions, even after I've set them with
sudo chmod o+rx -R /usr/lib/plexmediaserver
. Curiously, I did check theinstall
command in the PKGBUILD, and it has permissions of 755. I don't know where the 750 permissions are coming from. It doesn't appear to be my umask (022 leads to permissions of 755, from what I remember about umask).techwiz commented on 2019-10-08 00:26 (UTC)
@ectospasm, do you have a custom umask set in your .bashrc or the shell defaults? Perhaps it's overriding fakeroot and causing files to get created with the wrong permissions.
fryfrog commented on 2019-10-07 22:34 (UTC) (edited on 2019-10-07 22:49 (UTC) by fryfrog)
Try leaving it owned to
root:root
but with read and execute for theo
ther group. This is what mine looks like, for comparison...Also, super weird that it ends up 750. Maybe check for a systemd tmpfiles that is overriding your current one? And in your
./pkg
dir, see what the files look like? Mine are ownedfryfrog:fryfrog
but still have the same 755 permissions as above.ectospasm commented on 2019-10-07 21:49 (UTC) (edited on 2019-10-07 22:02 (UTC) by ectospasm)
@fryfrog:
My plex user is not a member of the root group, and every time I look after an upgrade the permissions on
/usr/lib/plexmediaserver/Plex Media Server
are 750 (rwxr-x---), which means the plexmediaserver.service can't start (can't read or executePlex Media Server
). Here is my/etc/conf.d/plexmediaserver
, in its entirety:So I guess if it is improper to have everything under
/usr/lib/plexmediaserver
owned byplex:plex
, then theinstall
commands in the PKGBUILD should apply at least 755 permissions/modes, not 750 like it appears now.EDIT: It looks like the main
install
command does have 755, I wonder if a previous incarnation ofplex-media-server
had 750, and for whatever reasonmakepkg -sri
isn't overwriting the modes with 755.fryfrog commented on 2019-10-06 14:36 (UTC)
@ectospasm, my
/usr/lib/plexmediaserver
isroot:root
as deep as I looked and everything works fine. Can you dig into why yours isn't working w/o being owned toplex:plex
? The/var/lib/plex
folder should beplex:plex
since that is where it stores all the data.Have you maybe modified your
/etc/conf.d/plexmediaserver
? MaybePLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=/var/lib/plex
that line is pointed at/usr
instead of/var
? Or maybe your tmp dir is in there?ectospasm commented on 2019-10-06 14:00 (UTC)
Is there any reason why the main
install
command doesn't set the ownership/group of /usr/lib/plexmediaserver to "plex:plex"? I find that I have to issue the following command every time I want to launch Plex Media Server after an upgrade:Otherwise, Plex Media Server fails to launch. I've cloned the AUR Git repository, but it's unclear to me how to issue a pull request for my updated PKGBUILD.
j1simon commented on 2019-08-31 12:35 (UTC)
Please, someone remove the outdated label. Some absent-minded person has marked it incorrectly.
fryfrog commented on 2019-08-22 21:10 (UTC)
You should probably make a habit of doing
systemctl daemon-reload
andsystemctl restart <service>
for updates. It is a PKGBUILD/AUR "standard" to not restart daemons so that service isn't disrupted and the restart can be done as needed.I wish there was a hook of some sort that could be used to make it a user options. :/
« First ‹ Previous 1 .. 6 7 8 9 10 11 12 13 14 15 16 .. 107 Next › Last »