- You have a VM with small disk
- You have GPT partition table
- You NOT USE LVM (you should)
- You need to extend a partition on the main drive
- You use Debian 8.x aka Jessie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove all cookies that do not match the following rules | |
if ( | |
# Any HTTP POST request | |
!(req.request == "POST") && | |
# Admin URLs | |
!(req.url ~ "^/admin|Security/") && | |
# Allow /dev/build and /dev/tasks URLs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $time_start = microtime(true); ?> | |
<!DOCTYPE html> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Delete Flamingo messages and contacts</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
</head> | |
<body> | |
<h1>Delete Flamingo messages and contacts</h1> |
This is a slightly modified update to Daniel Kornev's excellent post which goes into more detail about why building from source is necessary on 18.04. His post was missing a few dependencies that I didn't have installed namely cmake
, opencv
and pkg-config
. The following steps should get you a working build of openalpr
on a fresh install of Ubuntu 18.04.
If you're not working with a fresh install, this might be a good time to clean and update your system before proceeding. (Optional)
$ sudo apt update #fetch list of available updates
$ sudo apt upgrade #install updates – does not remove packages