IT
우분투 PLEX MEDIA SERVER 설치, 업데이트
똥손。
2023. 2. 15. 10:31
728x90
SSH에서 아래 명령어로 플렉스 미디어 서버 패키지를 설치합니다.
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
sudo apt install apt-transport-https
sudo apt update
sudo apt install plexmediaserver
sudo systemctl status plexmediaserver
PLEX MEDIA SERVER 업그레이드
WINDOWS나 SYNOLOGY NAS에서는 PLEX SERVER의 패키지 업데이트하는 방법이 쉽지만
우분투에서는 파일을 업로드하여 업데이트하는 방법이 번거롭습니다
따라서 SSH를 통해 업데이트를 하면 간편하게 해결됩니다.
아래의 명령어는 'sudo -i'명령어를 실행하지 않은 상태에서 입력해야 합니다.
728x90
bash -c "$(wget -qO - https://raw.githubusercontent.com/mrworf/plexupdate/master/extras/installer.sh)"
실행중 나오는 물음에는 'Y'를 입력합니다.
만약 password입력창에 비밀번호를 입력해도 넘어가지 않는다면 비밀번호를 생성한 후 다시 실행해 줍니다.
#패스워드 설정
sudo passwd ubuntu
#패스워드 입력, 패스워드 확인 입력
728x90