This gist will give you all installation steps needed to install properly virt-manager
with all dependencies.
Here is the list of all dependencies required to install properly virt-manager
on your ubuntu based distrib.
- libvirt-bin
- qemu
This gist will give you all installation steps needed to install properly virt-manager
with all dependencies.
Here is the list of all dependencies required to install properly virt-manager
on your ubuntu based distrib.
" _ _ " | |
" _ /|| . . ||\ _ " | |
" ( } \||D ' ' ' C||/ { % " | |
" | /\__,=_[_] ' . . ' [_]_=,__/\ |" | |
" |_\_ |----| |----| _/_|" | |
" | |/ | | | | \| |" | |
" | /_ | | | | _\ |" | |
It is all fun and games until someone gets hacked! |
#!/bin/sh | |
set -ex | |
PATH=/bin:/sbin:/usr/bin:/usr/sbin | |
KEYMAP="us us" | |
HOST=alpine | |
USER=anon | |
ROOT_FS=ext4 | |
BOOT_FS=ext4 |
I use the first | |
ββ BEGIN LICENSE ββ | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
node1: | |
image: hauptmedia/mariadb:10.1 | |
hostname: node1 | |
ports: | |
- 13306:3306 | |
environment: | |
- MYSQL_ROOT_PASSWORD=test | |
- REPLICATION_PASSWORD=test | |
- MYSQL_DATABASE=maria | |
- MYSQL_USER=maria |
#!/usr/bin/env bash | |
# DEPRECATED! | |
# See: https://forums.opera.com/topic/37539/solving-the-problem-of-the-opera-browser-with-video-playback-in-ubuntu-and-similar-distributions-linux-mint-kde-neon/ | |
echo "Deprecated!" | |
echo "Please refer here https://github.com/xZero707/opera-fix-ffmpeg for an updated version." |
# Update: Development moved to separate repository https://github.com/N0rthernL1ghts/attr |
Drop unecessary privileges: https://www.redhat.com/en/blog/secure-your-containers-one-weird-trick
# Source: https://stackoverflow.com/a/66101344/1797452 | |
# Mostly useful for Docker so installation of some packages that require systemd is possible. | |
# When systemctl is run, it will ALWAYS execute successfuly. | |
ln -s /bin/true /sbin/systemctl |
#!/usr/bin/env sh | |
set -e | |
LOCATION="$(echo ${1:-} | sed -e 's/ /%20/g')" | |
curl --get "https://wttr.in/${LOCATION}" | |
exit $? |