Skip to content

Instantly share code, notes, and snippets.

@jk195417
Last active November 25, 2016 07:43
Show Gist options
  • Save jk195417/af33430fe37c0435e3a92cd5e73cd869 to your computer and use it in GitHub Desktop.
Save jk195417/af33430fe37c0435e3a92cd5e73cd869 to your computer and use it in GitHub Desktop.

電網期中考筆記

Ubuntu on 虛擬機

Install VirtualBox

https://www.virtualbox.org/wiki/Downloads

Download Ubuntu ISO

https://www.ubuntu-tw.org/modules/tinyd0/

配置

  • 記憶體大小
  • 磁碟空間大小
  • 光碟機放入ubuntu的iso檔

啟動

  • 跟著步驟安裝ubuntu在虛擬機上
  • 創建使用者,並登入

Ubuntu 網路設定

步驟一

啟動 terminal,輸入

$ export LANG=C 

編輯 /etc/network/interfaces

$ vim /etc/network/interfaces

這個文件是用來設定ip address,gateway等項目的,進到此文件後,看到的應該是 :

# /etc/network/interfaces
# 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
                                                                                
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp

請將第9行 : iface eth0 inet dhcp
更改為 : iface eth0 inet static

再加上其他設定 :
address 140.127.233.75

這裡75請不要照打,請打你們機器的ip

netmask 255.255.255.0
network 140.127.233.0
broadcast 140.127.233.255
gateway 140.127.233.254

文件應該變成這樣 :

# 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
                                                                                
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address     140.127.233.75  
netmask     255.255.255.0  
network     140.127.233.0  
broadcast   140.127.233.255  
gateway     140.127.233.254  

步驟二

編輯 /etc/resolv.conf

$ vim /etc/resolv.conf

這個文件是用來設nameserver的。如果這個文件原本就是空的,請直接打:

# /etc/resolv.conf
nameserver 140.127.198.1

如果這個文件原本已經有東西了,請把其他的東西都刪掉,只留那一行nameserver。

nameserver:域名和網頁寄存的關係好像家裡的電話線,每當有人打你家的電話號碼(輸入你的域名),電話公司就會轉駁到你家(寄存公司)。當你搬家的時候(轉用其他寄存公司),你需要向電話公司說你的新地址。Nameserver就是這個地址,不過是一個IP Address。註冊了域名後,你需要更新Nameserver。寄存公司會給你2個nameserver,你只需登入域名註冊公司的網站,例如godaddy.com, register.com中輸入這2個nameserver的資料。)

只要更改過 /etc/ 下的文件,請記得一定要打以下這一行更新設定

$ /etc/init.d/networking restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment