Debian でIPアドレスを固定にする

/etc/network/interfacesを編集する
下みたいになっているのを
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp

↓の様に直す(192.168.0.11)にする場合
# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.11
netmask 255.255.255.0
gateway 192.168.0.1

直したら
#ifdown eth0
#ifup eth0
でおk
# /etc/init.d/networking restart
でもいけるがその場合は↓を書いておくこと(ifup -aの対象となる)
auto eth0

※VirtualPCではallow-hotplugはコメントアウトしておいた方がよさげ

参考リンク
http://asaasa.tk/wiki/?Debian%2FSettings%2FStaticIP