This commit is contained in:
light jiang 2019-01-25 15:32:52 +08:00
parent bbfe5ed3a6
commit 38e46d35cb
6 changed files with 48 additions and 1 deletions

22
cartographer/install.md Normal file
View File

@ -0,0 +1,22 @@
# install cartographer
```bash
sudo apt-get update
sudo apt-get install -y \
cmake \
g++ \
git \
google-mock \
libboost-all-dev \
libcairo2-dev \
libeigen3-dev \
libgflags-dev \
libgoogle-glog-dev \
liblua5.2-dev \
libprotobuf-dev \
libsuitesparse-dev \
libwebp-dev \
ninja-build \
protobuf-compiler \
python-sphinx
```

2
env/sysmonitor.sh vendored
View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
sudo add-apt-repository ppa:fossfreedom/indicator-sysmonitor -y
sudo apt-get -y install indicator-sysmonitor
sudo apt -y install indicator-sysmonitor

6
go/gocode.md Normal file
View File

@ -0,0 +1,6 @@
# gocode vim不更新提示
```bash
# 退出gocode 服务
gocode exit
```

12
go/iris/source.md Normal file
View File

@ -0,0 +1,12 @@
# 源码分析
## 入口
```go
app := iris.New()
app.Run(iris.Addr("0.0.0.0:8080"))
```

View File

@ -4,4 +4,5 @@
```bash
docker run -dit --privileged --cap-add=ALL --network=host --name=controller -h controller -v /lib/modules:/lib/modules openstack_base:rocky_ovs
docker run -dit --privileged --cap-add=ALL --network=host --name=compute -h compute -v /lib/modules:/lib/modules openstack_compute:rocky_ovs
docker run -dit --privileged --cap-add=ALL --network=host --name=cinder -h cinder -v /lib/modules:/lib/modules openstack_cinder:dscloud
```

6
openstack/version.md Normal file
View File

@ -0,0 +1,6 @@
# version
```bash
apt install software-properties-common
add-apt-repository cloud-archive:rocky
```