Compiling and installing Mysql 8.0.19 under linux

1 Preface There are many ways to install MySQL under linux, including the way of warehouse (yum,apt,zypper), the way of package (rpm,deb), the way of docker, the way of decompressing from the compressed package, the way of compiling and installing from the source code. Here is the last one, the way of compiling and installing from the source co ...

Posted by ThisIsMyName on Thu, 05 Mar 2020 19:55:04 -0800

Compiling arttoolkit x with Android Studio+CMakeLists

If the company wants to study the AR technology in advance, it will try to study the arttoolkit. The Internet is full of examples about compiling arttoolkit 5. Arttoolkit 5 has not been updated for a long time, and arttoolkit x is the latest version, but it has not found a way to compile arttoolkit x ...

Posted by bpops on Wed, 04 Mar 2020 00:18:11 -0800

LNMP architecture introduction and construction (source code compilation Nginx, MYSQL, PHP)

LNMP architecture introduction and construction (source code compilation Nginx, MYSQL, PHP) 1. What is LNMP 2. Working principle of LNMP 3. Source compilation of MySQL database 4. PHP source compilation 5. Source compilation of nginx 1. What is LNMP LNMP is a set of free software acronyms common ...

Posted by chard on Sat, 29 Feb 2020 23:40:03 -0800

ubuntu 18.04 install opencv3.4.5 + opencv ﹣ contrib

ubuntu 18.04 install opencv3.4.5 + opencv ﹣ contrib 1. Installation package download Opencv and opencv contrib Download Pay attention to the consistency of versions opencv Download opencv official website Opencv? Contrib Download github 2. Install dependency package sudo apt-get update sudo ap ...

Posted by 90Nz0 on Tue, 11 Feb 2020 23:42:02 -0800

Embedded development tool -- cross compiling libmysql

Article directory Preface 1, libmysql source download 2, Unzip and configure 3, Build install 4, Program testing Preface It is too cumbersome (or lazy) to transplant mysql in the development board, so we need to migrate the required libraries to the development board for C language programs. Fin ...

Posted by thegreatdanton on Sat, 08 Feb 2020 23:50:32 -0800

Python + Opencv / Dlib for face detection (video / picture)

The records of the previous articles are more general and have not been sorted out systematically. Then I want to sort out the learning process of these years by myself.This sticker is proof. python: scripting languages, computers do not recognize high-level languages, so when we run a high-level la ...

Posted by aosmith on Wed, 05 Feb 2020 20:11:17 -0800

Video decoding with ffmpeg

1. Tool preparation Computer Mac, development tool Android studio 3.4, compilation environment cmake 2. Development steps Create a new module project Create a new cpp folder and a new CMakeLists.txt file in the main directory cmake_minimum_required(VERSION 3.4.1) include_directories(../cpp/incl ...

Posted by vikela on Tue, 04 Feb 2020 10:20:14 -0800

ubuntu 18.04 configuration opencv3.4.5+contrib+cuda10.0

1: Preparations First, configure opencv3.4.5+contrib, so you only need to continue to configure cuda on this basis. For how to configure opencv-3.4.5 + opencv-3.4.5, see this blog: opencv-3.4.5+contrib Then download cuda 10.0 at: CUDA 10.0 download II. CUDA installation install Open the terminal ...

Posted by mwichmann4 on Wed, 15 Jan 2020 01:02:34 -0800

Ubuntu 18.04 install artificial intelligence image processing tool OpenCV

Picture.png python version installation $ sudo pip install opencv-python $ sudo pip install opencv-contrib-python C++ installation Install OpenCV dependency $ sudo apt-get update $ sudo apt-get upgrade # development tool $ sudo apt-get install build-essential cmake unzip pkg-config # Graphics library $ sudo apt-get instal ...

Posted by xenophobia on Wed, 01 Jan 2020 17:00:48 -0800

MySQL database - MHA high availability cluster architecture (actual combat!!!)

MHA introduction (1) Introduction At present, MySQL is a relatively mature solution in terms of high availability. It is developed by Japanese DeNA company youshimaton (now working for Facebook company), and it is an excellent high availability software for failover and master-slave improvement in MySQL high availability environment. In the p ...

Posted by avvishnu on Wed, 25 Dec 2019 05:36:49 -0800