Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##### Install Jellyfin Ubuntu #####
- ### Mount network share ###
- ## install smb utility ##
- apt-get update
- apt-get install cifs-utils
- ## creat mountpoint ##
- mkdir /jellyfin/
- mkdir /jellyfin/media
- ## create fstab entry ##
- nano /etc/fstab
- //192.168.0.137/Media /jellyfin/media cifs credentials=/home/.smbcredentials,uid=1000,gid=1000 0 0
- nano /home/.smbcredentials
- username=
- password=
- ### Run jellyfin Installer ###
- ## Install HTTPS transport for APT ##
- apt install apt-transport-https
- ## Enable the Universe repository ##
- add-apt-repository universe
- ## Import the GPG signing key ##
- wget -O - https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | sudo apt-key add -
- ## Add a repository configuration ##
- /etc/apt/sources.list.d/jellyfin.list:
- echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/ubuntu $( lsb_release -c -s ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list
- ## Install jellyfin package ##
- apt update
- apt install jellyfin
- ## Run jellyfin at startup ##
- systemctl enable jellyfin
Advertisement
Add Comment
Please, Sign In to add comment