Skip to content

Instantly share code, notes, and snippets.

@souhaiebtar
Last active May 14, 2020 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save souhaiebtar/6de2195a5a287767ebce65066c73d1b4 to your computer and use it in GitHub Desktop.
Save souhaiebtar/6de2195a5a287767ebce65066c73d1b4 to your computer and use it in GitHub Desktop.
[install jibri on ubuntu 1804] install jibri on ubuntu 1804 #jibri #jitsi

install requirements:

sudo apt-get install -y linux-image-extra-virtual

run: echo "snd-aloop" >> /etc/modules modprobe snd-aloop

/etc/default/grub file:

GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
GRUB_DISABLE_SUBMENU=y
export GRUB_CONFIG=`sudo find /boot -name "grub.cfg"`

sudo update-grub

run: sudo grep 'menuentry ' $GRUB_CONFIG | cut -f 2 -d "'" | nl -v 0

will list something like this

     0	Ubuntu, with Linux 4.18.0-15-generic
     1	Ubuntu, with Linux 4.18.0-15-generic (recovery mode)
     2	Ubuntu, with Linux 4.15.0-99-generic
     3	Ubuntu, with Linux 4.15.0-99-generic (recovery mode)
     4	Memory test (memtest86+)
     5	Memory test (memtest86+, serial console 115200)

we want to make Ubuntu, with Linux 4.15.0-99-generic kernel, the default one:

sudo grub-set-default 2

also we can boot on a specific kernel temporarely using: `sudo grub-reboot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment