Serie de links, recursos y fix rápidos para algunas cuestiones recurrentes en Linux (al menos en mi experiencia).

Recursos

Herramientas

Virtualbox: install guest additions on Ubuntu 22.04 LTS Jammy Jellyfish

$ sudo add-apt-repository multiverse
$ sudo apt update
$ sudo apt install virtualbox-guest-utils virtualbox-guest-x11
All done. Reboot your virtual machine:
$ sudo reboot
Confirm the Virtualbox guest additions:
lsmod  | grep vbox
vboxsf                 81920  0
vboxguest             344064  6 vboxsf

zsh + omz + plugins

$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Download zsh-autosuggestions by
$ git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
# Download zsh-syntax-highlighting by
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
$ nano ~/.zshrc find plugins=(git)
# Append zsh-autosuggestions & zsh-syntax-highlighting to plugins() like this
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)

How to Access USB from VirtualBox Guest OS

# Install Virtualbox Extension Pack > https://download.virtualbox.org/virtualbox/
$ sudo gpasswd -a $USER vboxusers
$ groups $USER
# Virtualbox > Enable USB Controller and Add New USB filter > Settings > USB

bpytop – Awesome resource monitor

# con python y pip instalados
$ pip3 install bpytop --upgrade
$ bpytop

Vagrant

# Instalar vagrant
$ curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
$ sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
$ sudo apt-get update && sudo apt-get install vagrant
# Running VM in VirtualBox running Ubuntu 22.04 LTS 64-bit
$ vagrant init ubuntu/jammy64
$ vagrant up
$ vagrant ssh
$ vagrant destroy

Stremio + Docker

Por lo pronto fue el método que me funcionó, evitando dependencias y otros manejes:

$ docker run --rm -d -p 11470:11470 -p 12470:12470 -e NO_CORS=1 stremio/server:latest
# URL > localhost:11470
# En el buscador de Stremio, agregar plugin de Torrentio: stremio://torrentio.strem.fun/lite/manifest.json
# Alias en .zshrc
# alias stremio-play='docker run --rm -d -p 11470:11470 -p 12470:12470 -e NO_CORS=1 stremio/server:latest'
$ stremio-play