Debian openStack 文件配置源總結整理
Debian是一個大的系統組織框架,在這個框架下有多種不同操作系統核心的分支計劃,主要為采用Linux核心的Debian GNU/Linux系統,其他還有采用GNU Hurd核心的Debian GNU/Hurd系統、采用FreeBSD核心的Debian GNU/kFreeBSD系統,以及采用NetBSD核心的Debian GNU/NetBSD系統。甚至還有應用Debian的系統架構和工具,采用OpenSolaris核心構建而成的Nexenta OS系統。在這些Debian系統中,以采用Linux核心的Debian GNU/Linux最為著名。眾多的Linux發布版,例如Ubuntu、Knoppix和Linspire及Xandros等,都建基于Debian GNU/Linux。
本文中,作者將 Debian 上部署 OpenStack 的文件配置源總結整理成經典筆記,方便大家學習。
1.靜態IP地址設置格式:
- # This file describes the network interfaces available on your system
- # and how to activate them. For more information, see interfaces(5).
- # The loopback network interface
- auto lo
- iface lo inet loopback
- #Controller
- auto eth0
- iface eth0 inet static
- address 192.168.61.132
- netmask 255.255.255.0
- boardcast 192.168.61.255
- gateway 192.168.61.2
2.debian 軟件源:
- #
- # deb cdrom:[Debian GNU/Linux 7.7.0 _Wheezy_ - Official i386 CD Binary-1 20141018-11:53]/ wheezy main
- #deb cdrom:[Debian GNU/Linux 7.7.0 _Wheezy_ - Official i386 CD Binary-1 20141018-11:53]/ wheezy main
- deb http://mirrors.163.com/debian/ wheezy main
- deb-src http://mirrors.163.com/debian/ wheezy main
- #add debian Source
- deb http://http.us.debian.org/debian stable main contrib non-free
- deb http://non-us.debian.org/debian-non-US stable/non-US main contrib non-free
- deb http://security.debian.org stable/updates main contrib non-free
- #add debian openStack
- deb http://archive.gplhost.com/debian juno-backports main
- deb http://archive.gplhost.com/debian juno main
- deb http://security.debian.org/ wheezy/updates main
- deb-src http://security.debian.org/ wheezy/updates main
- # wheezy-updates, previously known as 'volatile'
- deb http://mirrors.163.com/debian/ wheezy-updates main
- deb-src http://mirrors.163.com/debian/ wheezy-updates main
原文出自:http://blog.csdn.net/yuyezhulan/article/details/42015275