Debian openStack 文件配置源總結(jié)整理
Debian是一個大的系統(tǒng)組織框架,在這個框架下有多種不同操作系統(tǒng)核心的分支計(jì)劃,主要為采用Linux核心的Debian GNU/Linux系統(tǒng),其他還有采用GNU Hurd核心的Debian GNU/Hurd系統(tǒng)、采用FreeBSD核心的Debian GNU/kFreeBSD系統(tǒng),以及采用NetBSD核心的Debian GNU/NetBSD系統(tǒng)。甚至還有應(yīng)用Debian的系統(tǒng)架構(gòu)和工具,采用OpenSolaris核心構(gòu)建而成的Nexenta OS系統(tǒng)。在這些Debian系統(tǒng)中,以采用Linux核心的Debian GNU/Linux最為著名。眾多的Linux發(fā)布版,例如Ubuntu、Knoppix和Linspire及Xandros等,都建基于Debian GNU/Linux。
本文中,作者將 Debian 上部署 OpenStack 的文件配置源總結(jié)整理成經(jīng)典筆記,方便大家學(xué)習(xí)。
1.靜態(tài)IP地址設(shè)置格式:
- # 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