9

I need a screen recorder and OBS is the best. How can I install the latest version on Ubuntu?

Zanna
  • 69,223
  • 56
  • 216
  • 327
Adam
  • 91
  • 1
  • 1
  • 7
  • 1
    A useful question: Google offered me no less than eight how-to-install tutorials, most of which were long obsolete. – user535733 Jan 08 '18 at 21:03

2 Answers2

8

obs-studio package is available in Ubuntu 18.04 LTS, 19.04 and 19.10 (pre-beta).

You can install it with sudo apt-get install obs-studio.

N0rbert
  • 97,162
  • 34
  • 239
  • 423
  • it says: "E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? " – Adam Jan 09 '18 at 08:08
  • @Adam are you sure `dpkg` is not running? Try to kill the process of dpkg by running `sudo killall -SIGTERM dpkg`. If you still can't, might as well as removing file inside `/var/lib/dpkg/lock`. (only do it for last resort!) – Aryo Adhi Jan 09 '18 at 08:50
  • Permition denied – Adam Jan 09 '18 at 09:36
  • Just FYI, note that this does not seem to work for Ubuntu 16.04. You need to use the ppa for that. – jrh Aug 16 '19 at 15:00
6

Referring to the official GitHub wiki page, you can also use ppa provided by them to install it for 15.04 and above (if there is no package in the repository).

Run this commands:

$ sudo add-apt-repository ppa:obsproject/obs-studio
$ sudo apt update && sudo apt install obs-studio
N0rbert
  • 97,162
  • 34
  • 239
  • 423
Aryo Adhi
  • 1,397
  • 2
  • 15
  • 41