Life has its own fate, and meeting may not be accidental.

0%

Centos7搭建Facebook CTF平台(三)(ubuntu:14.04使用)

进入ubuntu容器交互系统:
# docker run -i -t ubuntu /bin/bash
# docker exec -it ubuntu /bin/bash

进入ubuntu容器交互系统:
# docker run -i -t ubuntu /bin/bash
# docker exec -it ubuntu /bin/bash

当试图直接使用 apt-get 安装一个软件的时候,会提示 E: Unable to locate package。

1
2
3
4
5
root@543356e8a428:/# apt-get install git
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package git

这并非系统不支持 apt-get 命令。Docker 镜像在制作时为了精简清除了 apt 仓库信息,因此需要先执行 apt-get update 命令来更新仓库信息。更新信息后即可成功通过 apt-get 命令来安装软件。

我发现我之前安装的ubuntu并不能后台运行

输入下面的代码,-d表示的就是后台运行,这点可以直接通过docker run –help查看该命令的功能。下面这句话的意思就是在镜像的程序中添加引号内的代码,并在后台运行。

docker run -d ubuntu:16.04 /bin/sh -c “while true; do echo hello world; sleep 1;done

1
2
3
docker run -it -d -p 8080:80 ubuntu:14.04 /bin/bash
-d表示的就是后台运行、-p分配端口,把80分配到服务器的8080
/bin/bash的作用是因为docker后台必须运行一个进程,否则容器就会退出,在这里表示启动容器后启动bash。

(不好意思,今天刚学习)

我说之前:docker ps -a 为什么没东西,发现好多次下载好fctf之后都得从新下一遍

如果我们想要进入后台运行的容器的命令行而不创建新的容器,只需要输入以下命令:

#exec是进入已经存在的容器,run是创建新容器
id可以先$ docker ps  得到
  (长的ID)
docker exec -it d90b2bdfc9d86657fd61363548b58abe20c1c2b673171852b19607154e8c6602 /bin/bash
(短的ID)
docker exec -it b45fab8d5eef /bin/bash
1
2
3
4
5
wget https://mirrors.tuna.tsinghua.edu.cn/HHVM/conf/hhvm.gpg.key | sudo apt-key add hhvm.gpg.key

echo "deb https://mirrors.tuna.tsinghua.edu.cn/HHVM/ubuntu Trusty main">> sudo tee /etc/apt/sources.list.d/hhvm.list

sudo echo "deb https://mirrors.tuna.tsinghua.edu.cn/HHVM/ubuntu/dists/ Trusty main">> sudo tee /etc/apt/sources.list.d/hhvm.list