ubuntu 18.04 failed to respond to startup after installing virtualbox

1. ubuntu 18.04 After the Ubuntu 18.04 AMD64 corresponding to the virtualbox is installed, the startup of virtualbox does not respond. After a flash, the startup fails 2. Direct command line start Find the command cd /usr/bin Start / usr / bin $. / VirtualBox WARNING: The vboxdrv kernel module is not loaded. Either the ...

Posted by yahelb on Sun, 05 Jan 2020 13:37:19 -0800

Ubuntu 16.04 FTP server installation + configuration

ftp server installation and configuration 1. Installation of FTP server If the server configured before or after ftp server fails to start the service, the basic problem is that there is an error in the configuration. You can uninstall it completely before installing it. If you cannot locate the image source, replace the ali ...

Posted by nebb on Sat, 04 Jan 2020 09:56:14 -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

Linux basic settings

Download CentOS version 6.4 system 1: Modify IP address (system -- > preferences -- > network connections) 2. Add user [root@localhost ~]# adduser hadoop [root@localhost ~]# passwd hadoop Changing password for user hadoop. New password: BAD PASSWORD: it is based on a dictionary word BAD PASSWORD: is too simple Retyp ...

Posted by morphius on Tue, 31 Dec 2019 07:15:00 -0800

The introduction of python 3 tool library boost using c + + to write extensions for python

Summary There are different ways to extend Python with C + +: Swig With Boost.Python, you can choose to use Py + + preprocessing Use python. Before the advent of python, Boost.Python was the best way to write C + + extension modules. Boost.Python is integrated in Boost C++ Libraries. To install on Ubuntu system; $ sudo apt-get in ...

Posted by richrock on Sun, 29 Dec 2019 11:09:52 -0800

google gcr.io, k8s.gcr.io domestic image

1. First add the official domestic image of docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://registry.docker-cn.co"] } EOF 2. gcr.io image According to the open source project: https://github.com/anjia0532/gcr.io_mirror The author will pull the gcr.io related image down, and then push it to the official d ...

Posted by reversenorm on Wed, 18 Dec 2019 07:56:49 -0800

Command that operation and maintenance must master -- Systemd instruction

I. origin Historically, Linux startup Always used init Process. The following command is used to start the service. $ sudo /etc/init.d/apache2 start # perhaps $ service apache2 start This method has two disadvantages. First, it takes a long time to start. init process is started serially. The next process will be started only afte ...

Posted by mwkdesign on Wed, 18 Dec 2019 02:23:27 -0800

Ubuntu replacement and use of apt source and python source (only applicable to zju intranet)

Ubuntu replacement and use of apt source and python source.md One click change script content #! /bin/bash echo "Set up image source of Zhejiang University" (cat << EOF deb http://mirrors.zju.edu.cn/ubuntu xenial main universe restricted multiverse deb http://mirrors.zju.edu.cn/ubuntu xenial-security main universe restricted multiverse de ...

Posted by shedokan on Sun, 15 Dec 2019 10:24:24 -0800

Compiling C/C + + interface of TensorFlow

TensorFlow's Python interface is popular because of its convenience and practicability, but we may need other programming language interfaces in practical application. This article will introduce how to compile TensorFlow's C/C + + interface.Installation environment:Ubuntu 16.04Python 3.5CUDA 9.0cuDNN 7Bazel 0.17.2TensorFlow 1.11.0 1. Install ...

Posted by - - NC - - on Sun, 15 Dec 2019 08:49:31 -0800

Kubernetes builds Zookeeper and Kafka clusters

Main references https://www.cnblogs.com/00986014w/p/9561901.html This blog post, but he's not using the official image of zookeeper I use the Zookeeper cluster with three nodes, which can be modified by reference. ##Build Zookeeper cluster zookeeper-svc.yaml of cluster Service apiVersion: v1 kind: Service metadata: labels: app: zookeeper ...

Posted by tunage on Tue, 10 Dec 2019 07:43:35 -0800