debain 必备软件
debain 必备软件安 开机启动项设置 apt-get install sysv-rc-conf 启动守护工具 apt-get install supervisor «««< HEAD swap cd /var/ dd if=/dev/zero of=swapfile bs=1024 count=1038336 /sbin/mkswap swapfile swapon swapfile swapon –s echo "/var/swapfile swap swap defaults 0 0" >>/etc/fstab 更新内核 ======= docker 安装drocker 1. nano /etc/apt/sources.list 2.添加 deb http://http.debian.net/debian jessie-backports main 3. apt-get update 4. apt-get install docker.io 5. docker run --rm hello-world 清除drocker包 使用purge命令清除docker-io包。 apt-get purge docker-io 或 apt-get autoremove --purge docker-io 或 (根本清除) rm -rf /var/lib/docker 更新……