Command line Ubuntu ที่ใช้บ่อย ๆ
เมื่อวานนั่ง Install Ubuntu Server 10.04 เป็นครั้งแรกที่ลงแบบ Server ครับ หลังจาก เล่น Desktop มาเกือบ ๆ สองปี
จริง ๆ แล้ว ก็การ configure ก็ไม่ต่างอะไรกับ desktop นัก เพียงแต่ว่า server นั้นจะมี tool พื้นฐานพวก database , web server ,openssh - server , mail server มาให้ เพียงแต่ในส่วนของ GUI นั้นต้องลงเสริม
แต่ผมเลือกที่จะใช้ terminal mode ดีกว่า ก็เลยอยากรวบรวม คำสั่งที่ใช้บ่อยไว้กันลืมนะครับ
1. เกี่ยวกับ network card และ ip
$ ifconfig -a # ดูว่าภายในเครื่องมี network card อันใดสนับสนุนอยู่บ้าง ปกติแล้ว ระบบจะลงไดรเวอร์ให้อัติโนมัติ
$ sudo pico /etc/network/interfaces # เพื่อทำการแก้ไข ip address
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
# ค่าเริ่มต้นเป็น iface eth0 inet dhcp ถ้า Fix ip จึงเปลี่ยนเป็น static
auto eth0
iface eth0 inet static
address 202.129.16.26
netmask 255.255.255.192
network 202.129.16.0
broadcast 202.129.16.63
gateway 202.129.16.1
# dns-* options are implemented by the resolvconf package, if #installed
dns-nameservers 61.19.245.51 61.19.245.52
$ sudo /etc/init.d/networking restart # ทำการ restart network service
จริง ๆ แล้ว ก็การ configure ก็ไม่ต่างอะไรกับ desktop นัก เพียงแต่ว่า server นั้นจะมี tool พื้นฐานพวก database , web server ,openssh - server , mail server มาให้ เพียงแต่ในส่วนของ GUI นั้นต้องลงเสริม
แต่ผมเลือกที่จะใช้ terminal mode ดีกว่า ก็เลยอยากรวบรวม คำสั่งที่ใช้บ่อยไว้กันลืมนะครับ
1. เกี่ยวกับ network card และ ip
$ ifconfig -a # ดูว่าภายในเครื่องมี network card อันใดสนับสนุนอยู่บ้าง ปกติแล้ว ระบบจะลงไดรเวอร์ให้อัติโนมัติ
$ sudo pico /etc/network/interfaces # เพื่อทำการแก้ไข ip address
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
# ค่าเริ่มต้นเป็น iface eth0 inet dhcp ถ้า Fix ip จึงเปลี่ยนเป็น static
auto eth0
iface eth0 inet static
address 202.129.16.26
netmask 255.255.255.192
network 202.129.16.0
broadcast 202.129.16.63
gateway 202.129.16.1
# dns-* options are implemented by the resolvconf package, if #installed
dns-nameservers 61.19.245.51 61.19.245.52
$ sudo /etc/init.d/networking restart # ทำการ restart network service
ไม่มีความคิดเห็น:
แสดงความคิดเห็น