Learning and using fdbus
1: fdbus address
https://github.com/jeremyczhen/fdbus
2: build fdbus (ubuntu environment)
cd ~/workspace
git clone https://github.com/jeremyczhen/fdbus.git #get fdbus source code
cd fdbus;mkdir -p build/install;cd build #create directory for out-of-source build
cmake -DCMAKE_INSTALL_PREFIX=install ...
Posted by Scriptor on Tue, 30 Jun 2020 06:48:29 +0200
nginx adds new modules using hot deployment
brief introduction
When nginx is first compiled and installed, http_ ssl_ The module module is not compiled into the nginx binary file by default. If you need to add SSL certificate. That is to say, use the https protocol. Then you need to add http_ssl_module module. Suppose your nginx installation pa ...
Posted by biopv on Tue, 30 Jun 2020 03:42:35 +0200
docker distributed warehouse harbor
Article catalog
docker distributed warehouse harbor
1. Official introduction to harbor function
2. Install Harbor
2.1 solving dependent environment
1. Install docker
2. Install docker compose
2.2 and configure harbor startup
2.3. Harbor later modification configuration
3. Use harbor and upload i ...
Posted by schilly on Sat, 27 Jun 2020 08:24:42 +0200
Install MySQL on Ubuntu 20.04
How to install MySQL on Ubuntu 20.04
MySQL is the most popular open source relational database management system. It's fast, easy to use, easy to expand, and part of the popular LAMP and LEMP.
This guide explains how to install and protect MySQL on Ubuntu 20.04.
prerequisite
Make sure you are logged in as sudo user
Install MySQL on Ubuntu
At th ...
Posted by dorgon on Tue, 16 Jun 2020 08:57:06 +0200
Docker Learning Diary
Introduction:Docker is an open source application container engine based on the Go language and compliant with the Apache 2.0 protocol.Docker s can allow developers to package their applications and dependencies into a lightweight, portable container that can then be published to any popular Linux machine, or they can be virtualized.Containers ...
Posted by fabrice on Sat, 13 Jun 2020 19:22:01 +0200
Image image and Container basic chapter
preface
This is a basic article about image and container, although some of it is related to the article written in 18 years Enter the door of Docker and Kubernetes container world There are overlaps, but with my familiarity with containers in recent years, I would like to share some of my knowledge and serve as a technical foreshadowing for my ...
Posted by jchemie on Sat, 13 Jun 2020 09:16:31 +0200
Use your own index camera to run orbslam 2 mono, binocular, and depth modes (common to minimax and realsense)
Process Overview
Configure ROS
ROS environment preparation (take 16.04 ROS Kinetic as an example)
Create your own workspace:
Configure orblam
Compiling ORBSLAM2 ROS
Common errors and Solutions
Run build-ros.sh Problem 1:
Run build-ros.sh Problem 2: the core of this problem is the problem with the ...
Posted by GeXus on Tue, 09 Jun 2020 09:10:33 +0200
[Kubernetes] Docker + K8s practice Road (Docker chapter)
Meet Docker
definition
Docker is an open-source application container engine based on Go language. Based on cgroup, namespace of Linux kernel and Union FS of OverlayFS class, it encapsulates and isolates processes, which belongs to virtualization technology at the operating system level.
Docker ...
Posted by PickledOnion on Tue, 09 Jun 2020 05:58:05 +0200
How to install Tomcat 9 on Ubuntu 20.04
This article was first published in: https://www.itcoder.tech/posts/how-to-install-tomcat-9-on-ubuntu-20-04/
This guide describes how to install and configure Tomcat 9 on Ubuntu 20.04.
Apache Tomcat is an open source Web server and Java servlet container.It is the most popular choice in the world for building Java-based websites and applicatio ...
Posted by muadzir on Thu, 28 May 2020 04:43:56 +0200
Docker learning notes: image, container, data volume
Core concepts
Image: a read-only template, similar to the image of a virtual machine.
Container: it can be understood as a running instance of the image. The runtime is similar to a sandbox, with multiple containers independent of each other.
Warehouse: the place where image files are stored.
image
Command table
command
explai ...
Posted by evildarren on Sat, 16 May 2020 09:07:41 +0200