跳至主要内容

博文

目前显示的是 七月, 2020的博文

软路由 之 openwrt

资料 https://openwrt.org/docs/guide-user/installation/openwrt_x86 https://openwrt.org/docs/techref/image.format https://github.com/openwrt/openwrt lede大神 https://github.com/coolsnowwolf/lede 如何编译自己需要的 OpenWrt 固件 蓝灯vpn https://github.com/getlantern/lantern ubuntu下载 https://releases.ubuntu.com/ ubuntu安装 https://www.linuxtechi.com/ubuntu-18-04-lts-desktop-installation-guide-screenshots/ https://ubuntu.com/tutorials/install-ubuntu-desktop#1-overview                OpenWrt是用于嵌入式设备(通常是无线路由器)的高度可扩展的GNU / Linux发行版。与路由器的许多其他发行版不同,OpenWrt完全是为嵌入式设备构建的,功能全面,易于修改的操作系统。实际上,这意味着您可以拥有所需的所有功能,而无需担心,由现代Linux内核提供支持。 下载想要的固件 https://openwrt.org/ Downloads ----> Stable Release builds https://downloads.openwrt.org/releases/ 例如下载 https://downloads.openwrt.org/releases/18.06.8/targets/x86/generic/ openwrt-18.06.8-x86-generic-combined- ext4 .img.gz 该固件包含一个常规的ext4 Linux分区。通常用于x86和x86_x64系统。 openwrt-18.06.8-x86-generic-combined- squashfs .img.gz 该固件包含一种压缩的分区类型,并以只读方式...

docker 入门

https://github.com/docker/labs/tree/master/beginner/ Docker Compose https://docs.docker.com/compose/install/ https://docs.docker.com/samples/django/        DOCKER是用于虚拟化的计算机软件,以便在同一主机上运行多个操作系统。与用于创建VM(虚拟机)的虚拟机监控程序不同,Docker中的虚拟化是在系统级的所谓Docker容器中执行的,如您所见,下面的镜像有所不同,Docker容器在主机的操作系统之上运行。这可以帮助您提高效率和安全性。此外,由于容器使用较少的资源,因此与在虚拟机上运行的容器相比,在同一基础架构上可以运行更多的容器。 简单来说,镜像是模板,容器是该模板的副本。您可以具有同一镜像的多个容器(副本)。 下面我们有一张图像,完美地代表了不同组件之间的交互以及Docker容器技术的工作方式。 资料 http://tutorials.jenkov.com/docker/index.html https://www.cnblogs.com/bigben0123/p/7592970.html https://docker-curriculum.com/ https://docs.docker.com/docker-for-windows/ https://adamtheautomator.com/docker-for-windows/ https://devblogs.microsoft.com/premier-developer/getting-started-with-docker-for-windows/ https://www.guru99.com/docker-tutorial.html https://www.runoob.com/docker/windows-docker-install.html https://hub.docker.com/ https://www.runoob.com/w3cnote/docker-tricks.html Docker Hub是创建,管理和交付团队的容器应用程序的世界上最简单的方法 https://docs.microso...