I'm following this guide.
I'm at the part where it talks about installing transcoding tools.
The wget command is failing with a 404. If I visit http://ftp.us.debian.org/debian/pool/main/g/glibc/ the file specified isn't there which is probably why it's 404ing.
There are a few files with a similar file name, specifically this one libc-bin_2.19-18+deb8u2_armhf.deb but I obviously don't want to go installing any old random file.
Which file should I be installing?
I'm at the part where it talks about installing transcoding tools.
Code:
cd /tmp/
mkdir libc6
cd libc6
wget http://ftp.us.debian.org/debian/pool/main/g/glibc/libc6_2.19-18_armhf.deb
dpkg-deb -x libc6_2.19-18_armhf.deb ./
cp -a lib/arm-linux-gnueabihf/libm-2.19.so /usr/lib/plexmediaserver
cd /usr/lib/plexmediaserver
chmod ugo+x libm-2.19.so
unlink libm.so.6
ln -s libm-2.19.so libm.so.6
There are a few files with a similar file name, specifically this one libc-bin_2.19-18+deb8u2_armhf.deb but I obviously don't want to go installing any old random file.
Which file should I be installing?