-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewerwith a pve-spice.vv file downloaded from proxmox web interface
- change from buster to bullseye
- sudo apt install libnet-cidr-lite-perl libtext-csv-xs-perl libgeoip2-perl
for day of writing, there is a problem with building by dkms this package xtables-addons-common so wehave to install this from source
- sudo apt install pkg-config libxtables-dev
- wget http://inai.de/files/xtables-addons/xtables-addons-3.13.tar.xz
- tar xf xtables-addons-3.13.tar.xz
- cd xtables-addons-3.13/
- ./configure
- make
I think most of us realize that macOS isn't a Linux OS, but what that also means is that instead of shipping with the GNU flavor of command line tools, it ships with the FreeBSD flavor. As such, writing shell scripts which can work across both platforms can sometimes be challenging.
Homebrew can be used to install the GNU versions of tools onto your Mac, but they are all prefixed with "g" by default.
All commands have been installed with the prefix "g". If you need to use these commands with their normal names, you can add a "gnubin" directory to your PATH from your bashrc.
This is a guide for getting LineageOS (an older and unofficial version) onto an Amazon Fire 2015 7" tablet (also known as the 5th generation 7" Amazon Fire or under the internal codename "ford").
NOTE: This guide was originally written before someone figured out how to unlock the bootloader. There is now a newer method. Here it is very briefly. The old guide can be found below.
First unlock the bootloader using this guide.
Once you're booted into TWRP download the latest LineageOS 14 release for your device here.
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| # Replace "projectname" and "username" | |
| image: golang:1.9 | |
| variables: | |
| BIN_NAME: projectname | |
| ARTIFACTS_DIR: artifacts | |
| GO_PROJECT: gitlab.com/username/projectname | |
| stages: | |
| - build |
| #!/usr/bin/env bash | |
| echo "php-cs-fixer pre commit hook start" | |
| PHP_CS_FIXER="bin/php-cs-fixer" | |
| PHP_CS_CONFIG=".php_cs" | |
| CHANGED_FILES=$(git diff --cached --name-only --diff-filter=ACM -- '*.php') | |
| if [ -n "$CHANGED_FILES" ]; then | |
| $PHP_CS_FIXER fix --config "$PHP_CS_CONFIG" $CHANGED_FILES; | |
| git add $CHANGED_FILES; |
| # ########################################################## # | |
| # Makefile for Golang Project | |
| # Includes cross-compiling, installation, cleanup | |
| # ########################################################## # | |
| # Check for required command tools to build or stop immediately | |
| EXECUTABLES = git go find pwd | |
| K := $(foreach exec,$(EXECUTABLES),\ | |
| $(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH))) |
This guide offers the least time-consuming way of setting up Nginx for serving Git repositories over HTTP using Gitweb. The stuff here has been tested with Git 1.9.1 and Nginx 1.6.0 on Debian Wheezy. Probably also works for Ubuntu, etc.
Total time ~ 10 minutes.
Enable wheezy-backports by adding this line to /etc/apt/sources.list:
deb http://http.debian.net/debian wheezy-backports main