Build the host Nginx + Docker WordPress Mysql

Environmental Science Linux 3.10.0-693.el7.x86_64 Docker version 18.09.0 docker-compose version 1.17.0 install Required dependencies for installing docker $ sudo yum install -y yum-utils device-mapper-persistent-data lvm2 Install docker CE $ sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo $ s ...

Posted by thenewguy on Mon, 09 Dec 2019 06:21:46 -0800

002.Docker installation and deployment

One docker installation CentOS system 1.1 docker automatic installation script 1 root@docker:~# wget -qO- https://get.docker.com/ | sh 2 Or - 3 root@docker:~# curl -sSL https://get.docker.com/ | sh   Note: if the following error occurs, you can use yum to resolve the dependency—— Delta RPMs disabled because /usr/bin/yum prov ...

Posted by spstieng on Sat, 07 Dec 2019 22:30:31 -0800

Bosh install Concourse continuous deployment tool

How to use Bosh to deploy applications Updated: April 23, 2018 Install bosh environment Download Bosh binary installer click download Install virtulbox wget https://download.virtualbox.org/virtualbox/5.2.10/virtualbox-5.2_5.2.10-122088~Ubuntu~trusty_amd64.deb dpkg -i virtualbox-5.2_5.2.10-122088~Ubuntu~trusty_amd64.deb Install some dependen ...

Posted by Cal on Thu, 05 Dec 2019 10:23:50 -0800

SDR development environment construction

SDR development environment construction Compilation and installation Installation dependency Compile and install UHD Compile and install hackrf support Compile and install gnuradio Compile and install soapysdr Compile and install Limesuite Compiling and installing gr osmosdr Compilation and installation The installati ...

Posted by stangoe on Mon, 02 Dec 2019 22:59:05 -0800

Deep in Debian Linux install ffmpeg

Installing CMake and CCMake sudo apt install cmake sudo apt install cmake-curses-gui Install X265 development library sudo apt-get install libx265-dev Install Yasm Download address: http://www.tortall.net/projects/yasm/releases/ tar -xvf yasm-1.3.0.tar.gz cd yasm-1.3.0/ ./configure make && make install Install OpenCoreAMR Download addr ...

Posted by dlgilbert on Mon, 02 Dec 2019 14:23:04 -0800

onos2.0 compilation and installation

onos compilation and installation 1 pre download and installation 1.1 front package installation sudo apt-get install git sudo apt-get install python #Oracle JDK8 sudo apt-get install software-properties-common -y && \ sudo add-apt-repository ppa:webupd8team/java -y && \ sudo apt-get update && ...

Posted by myitanalyst on Sat, 30 Nov 2019 10:42:34 -0800

Ubuntu Server 18.04 configure rsync (xinetd)

[server configuration] System version # lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic Official documents: https://rsync.samba.org/documentation.html install sudo apt install rsync xinetd Modify or add in / etc/default/rsync file RSYNC_ENABLE=inetd Create th ...

Posted by chodges on Sat, 30 Nov 2019 04:26:38 -0800

Configuration Secrets used by drone

Repository secrets are used to store passwords, secret keys, tokens and other confidential information.repository secrets can be configured in the setting interface of the warehouse Usage: kind: pipeline name: default steps: - name: build image: alpine environment: USERNAME: from_secret: docker_username PASSWORD: from_ ...

Posted by DfyAnt on Fri, 29 Nov 2019 12:09:49 -0800

pypi uploads its own projects

Upload and publish package files to PyPI Create a PyPI account Very simple, register directly through the official website https://pypi.python.org/pypi?. ... , but you need to verify the message and confirm activation. Create user authentication file ~ /. pypirc Create a new blank file named. pypirc in your own user direct ...

Posted by stovellp on Thu, 28 Nov 2019 12:37:20 -0800

How to Cross-compile the GO Program with ARM Architecture on Ubuntu

We all know that when CGO is not involved, cross-compilation of Go s is very simple and requires only the corresponding GOOS and GOARCH to be set, but when CGO is involved, the problem becomes a bit complicated because you need to specify a specific GCC. For example, if you want to cross-compile a dynamic library with CGO on Ubuntu and the tar ...

Posted by Deadman2 on Wed, 27 Nov 2019 15:29:44 -0800