Qubes-Community-Content/docs/configuration/multimedia.md

8.4 KiB

How to Make a Multimedia TemplateVM

Note: This Howto has been written and was tested under Qubes 4rc4

You can consolidate most of your media streaming tasks into one "multimedia" App-VM. This howto explains how to create a multimedia template which can be used to play multimedia content. This includes:

  • Spotify
  • Amazon Prime
  • Netflix
  • DVDs

Installation

Start by cloning the default debian template in dom0. Hint: t-multimedia is just the template VM where we will install all packages. In the last step we will create an AppVM from this template.

qvm-clone debian-10 t-multimedia

Launch a Terminal in the new template VM:

qvm-run --auto t-multimedia gnome-terminal

Important: Enter all the following commands in the terminal of the template VM Become the root user to run all following command without the need to use sudo in the multimedia template VM

sudo -i

This howto assumes that you have xclip available in the AppVM where you download the Repository Signing keys. xclip will be used to paste the content of the clipboard to a file. You can install xclip via:

apt-get install xclip on Debian dnf install xclip on Fedora

You can of course install xclip just into the AppVM where you download the signing keys to have it available for this howto and it will be deleted if you reboot the AppVM. To have xclip available also after a reboot you need to install it in the Template VM on which your Internet AppVM is based (make sure to reboot the AppVM after you've installed any package in its template)

Installation of Spotify

Import GPG-Key for spotify As the template VM can't connect to internet you need to get the public key file from another AppVM and copy it to the template VM. The easiest way is to use the Qubes Clipboard to copy the keys from the AppVM where you get the key to the Template VM.

In an AppVM which has Internet access:

Copy the public signing key over to the multimedia template VM

  • copy the file via qvm-copy-to-vm t-multimedia spotify.pubkey
  • or create a new file on the Template VM and copy the content of the clipboard (the public key) Copy content of page to the Qubes Clipboard (Ctrl+C and then Shift+Ctrl+C) Switch to the gnome terminal in the Multimedia Template VM nano spotify.pubkey Paste the content from the Qubes Clipboard into nano (Shift+Ctrl+V and then Paste) Save the file (Ctrl+O Ctrl+X)

Check the signature of the signing key (in the multimedia Template VM). Hint: depending on your installed version of GnuPG the command to show a public might slightly be different. See this StackExchange question for more information. If this command doesn't show a fingerprint choose one of the other commands mentioned in the above link.

gpg --with-fingerprint spotify.pubkey

This should look like:

[user@t-multimedia ~]$ `gpg --with-fingerprint spotify.pubkey`

pub  4096R/130D1D45 2019-07-15 Spotify Public Repository Signing Key <tux@spotify.com>

     Key fingerprint = 2EBF 997C 15BD A244 B6EB  F5D8 4773 BD5E 130D 1D45 

You can (and should) lookup the fingerprint on at least one (or more) keyservers as the above information might be outdated.

https://keyserver.ubuntu.com/pks/lookup?op=vindex&search=0x4773BD5E130D1D45&fingerprint=on

Add the public key to the repository keyring apt-key add spotify.pubkey

Add the Spotify repository to your list of package sources:

echo deb http://repository.spotify.com stable non-free > /etc/apt/sources.list.d/spotify.list

Update the list of all known packages

apt-get update

Install Spotify apt-get install -y spotify-client

Create a spotify desktop-entry

cp -p /usr/share/spotify/spotify.desktop /usr/share/applications/

cp /usr/share/spotify/icons/spotify-linux-16.png /usr/share/icons/hicolor/16x16/apps/spotify.png

Installation of VLC

To play DVDs you can install VLC with the needed Codecs

Download the public key which signs the VLC package repositories In an AppVM which has Internet access:

Copy the public signing key over to the multimedia template VM

  • copy the file via qvm-copy-to-vm t-multimedia videolan.pubkey
  • or create a new file on the Template VM and copy the content of the clipboard (the public key) Copy content of page to the Qubes Clipboard (Ctrl+C and then Shift+Ctrl+C) Switch to the gnome terminal in the Multimedia Template VM nano videolan.pubkey Paste the content from the Qubes Clipboard into nano (Shift+Ctrl+V and then Paste) Save the file (Ctrl+O Ctrl+X)

Check the signature of the signing key

gpg --with-fingerprint videolan.pubkey

This should look like:

[user@t-multimedia ~]$ `gpg --with-fingerprint videolan.pubkey`

pub  2048R/B84288D9 2013-08-27 VideoLAN APT Signing Key <videolan@videolan.org>

      Key fingerprint = 8F08 45FE 77B1 6294 429A  7934 6BCA 5E4D B842 88D9

sub  2048R/288D4A2C 2013-08-27

You can (and should) lookup the fingerprint on at least one (or more) keyservers as the above information might be outdated.

https://keyserver.ubuntu.com/pks/lookup?op=vindex&search=0x6BCA5E4DB84288D9&fingerprint=on

Add the public key to the repository keyring apt-key add videolan.pubkey

Add the new VLC package repositories to your list of sources

echo "deb http://download.videolan.org/pub/debian/stable/ /" > /etc/apt/sources.list.d/vlc.list

echo "deb-src http://download.videolan.org/pub/debian/stable/ /" >> /etc/apt/sources.list.d/vlc.list

Update package repositories

apt-get update

Install libdvdcss and VLC

apt-get install -y libdvdcss2 vlc

Installation Google Chrome

To play Videos with Netflix, Amazon Prime & Co using Chrome is a good option as it has all needed codecs included. Hint: Using Chromium will not work for some reasons.

Download the public key which signs the Google package repositories In an AppVM which has Internet access:

Copy the public signing key over to the multimedia template VM

  • copy the file via qvm-copy-to-vm t-multimedia google.pubkey
  • or create a new file on the Template VM and copy the content of the clipboard (the public key) Copy content of page to the Qubes Clipboard (Ctrl+C and then Shift+Ctrl+C) Switch to the gnome terminal in the Multimedia Template VM nano google.pubkey Paste the content from the Qubes Clipboard into nano (Shift+Ctrl+V and then Paste) Save the file (Ctrl+O Ctrl+X)

Check the signature of the signing key (still in the AppVM where you downloaded the key)

gpg --with-fingerprint google.pubkey

This should look like:

[user@t-multimedia ~]$ `gpg --with-fingerprint google.pubkey`

pub  4096R/D38B4796 2016-04-12 Google Inc. (Linux Packages Signing Authority)

<linux-packages-keymaster@google.com>

      Key fingerprint = EB4C 1BFD 4F04 2F6D DDCC  EC91 7721 F63B D38B 4796

sub  4096R/640DB551 2016-04-12 [expires: 2019-04-12]

sub  4096R/997C215E 2017-01-24 [expires: 2020-01-24]

You can (and should) lookup the fingerprint on at least one (or more) keyservers as the above information might be outdated.

https://keyserver.ubuntu.com/pks/lookup?op=vindex&search=0x7721F63BD38B4796&fingerprint=on

or

https://www.google.com/linuxrepositories/

Add the public key to the repository keyring

apt-key add google.pubkey

Add the Google package repositories to your list of sources

echo "deb http://dl.google.com/linux/chrome/deb/ stable main"> /etc/apt/sources.list.d/google.list

Update package repositories

apt-get update

Install Chrome

apt-get install google-chrome-stable

Create a Multimedia AppVM

The last step is to create a multimedia AppVM (named "my-multimedia" here) based on the new multimedia template.

qvm-create --template t-multimedia --label orange my-multimedia