This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Older distro (e.g. lenny) and newer kernel may result in this when ssh-ing in: | |
| PTY allocation request failed on channel 0 | |
| You can run ssh $serverip 'bash -i' to get one off access. | |
| You can 'fix' things with: | |
| ssh $server 'echo "none /dev/pts devpts gid=5,mode=620 0 0" >> /etc/fstab; mount /dev/pts; cat /etc/fstab' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Bug per https://bugs.eclipse.org/bugs/show_bug.cgi?id=527275#c1 | |
| Pre-format: | |
| <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> | |
| <%String foo = "foo"; %> | |
| <script type="text/javascript"> | |
| var hss = '<%=foo%>'; | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Plex has some ids per server that should be unique per plex server. If you clone a Plex setup (e.g. via settin up a new mac with a timemachine backup from another Plex server) you need to manually change some values. | |
| For Windows it would be like: | |
| https://forums.plex.tv/discussion/comment/1170859/#Comment_1170859 | |
| On a Mac you can use the defaults command. | |
| Show the values: | |
| # defaults read com.plexapp.plexmediaserver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| VER=1.3.1 | |
| wget "http://www-eu.apache.org/dist/tomcat/tomcat-connectors/native/$VER/source/tomcat-native-$VER-src.tar.gz" | |
| tar xzf tomcat-native-$VER-src.tar.gz | |
| cd tomcat-native-$VER-src/native | |
| apt install libapr1-dev libssl-dev gcc make | |
| ./configure && make && make install | |
| Add to /usr/local/tomcat/bin/setenv.sh: | |
| export CATALINA_OPTS="$CATALINA_OPTS -Djava.library.path=$PATH:/usr/local/apr/lib/" |
NewerOlder