Saturday, July 26, 2014

การ Export และการ deploy VM แบบ OVF,OVA

ไฟล์ .OVF คืออะไร?
ไฟล์ .OVF คือ ไฟล์นามสกุล open virtualization format
ไฟล์ .OVF คือ มาตรฐาน แบบ Distributed Management Task Force (DMTF) ที่ช่วยให้ Virtual Machine หรือ Virtual Appliance สามารถ Import และ Export ได้ด้วยระยะเวลาอันสั้น พูดง่ายๆ มันคือการที่ใช้ในการ Copy OS อีกวิธีหนึ่งนั่นเอง และตอน import ยังสามารถปรับแต่งค่าได้โดยสามารถใช้งานได้เลยอีกด้วย
ส่วนไฟล์ .OVA คือ open Vvirtualization appliance ครับ ไฟล์นี้จะรวมเอาไฟล์ที่ตอนเรา Export เป็น ovf อยู่ในไฟล์เดียว ก็คือรวมเอาไฟล์ .ovf , ไฟล์ .mf(check sha1 sum), ไฟล์ .vmdk ไว้ครับ

ทีนี้มาเริ่มขั้นตอนในการ Export VM ออกมาเป็น OVF กันเลยดีกว่าครับ
  • เลือก VM ที่ต้องการ อ่อ การ Export เป็น OVF ต้องทำตอน power off อยู่นะครับ จากนั้น คลิก file -> Export -> Export OVF Templete

  • จากนั้นจะมีหน้าต่างขึ้นมา ตรงหัวข้อ directory ให้คลิก ...

  • จากนั้นเลือกที่อยู่ที่ต้องการเก็บไฟล์ครับ เมื่อได้แล้วจะกลับมาที่หน้าเดิม คลิก OK ครับ

  • จากนั้นก็รอจนเสร็จครับ

ขั้นตอนการ Export ก็มีเพียงเท่านี้ครับ
ต่อปไปเรามาดูขั้นตอนการ Deploy กันต่อนะครับ
  • เลือก file -> Deploy OVF Templete จากนั้นในหน้าต่างที่เด้งขึ้นมา ให้เลือก browe ครับ

  • เลือกไฟล์ที่ต้องการครับ **เป็น .ovf หรือ .ova ก็ได้ครับ

  • คลิก next ครับ

  • หน้านี้จะแสดงข้อมูลของ templete ครับ คลิก next

  • ตั้งชื่อให้ VM ครับแล้วคลิก next

  • เลือก Disk provision ตามที่ต้องการแล้วคลิก next ครับ

  • จับคู่ virtual network interface card กับ virtual switch ครับ

  • ตรวจสอบการตั้งค่าถ้าตรงตามต้องการก็คลิก finish โลดเลยครับ

  • จากนั้นก็จิบกาแฟ ฟังเพลงรอครับ

มีขั้นตอนเพียงเท่านี้เองครับสำหรับการ Export และ Deploy virtual machine ขอให้สนุกกับโลกเสมือนนะครับ 555

Wednesday, July 23, 2014

add new virtual disk to vmware linux guest no reboot

     When you add new disk to linux guest virtual machine. You cannot see new disk. But You must be re-scan new scsi device or rebooting OS.

     In this tutorial. I will re-scan disk without rebooting OS. Please follow this step

  • click edit VM you want add new disk.

  • In this window.Click add.

  • Select Hardisk and click next.

  • choose Create new virtual disk.

  • Assign disk size, Choose disk provisioning
    - Thick provision lazy zeroed is Creates a virtual disk in a default thick format. Space required for the virtual disk is allocated when the virtual disk is created. Data remaining on the physical device is not erased during creation, but is zeroed out on demand at a later time on first write from the virtual machine.
      Using the default flat virtual disk format does not zero out or eliminate the possibility of recovering deleted files or restoring old data that might be present on this allocated space. You cannot convert a flat disk to a thin disk.
    - Thick provision eager zeroed is A type of thick virtual disk that supports clustering features such as Fault Tolerance. Space required for the virtual disk is allocated at creation time. In contrast to the flat format, the data remaining on the physical device is zeroed out when the virtual disk is created. It might take much longer to create disks in this format than to create other types of disks.
    - Thin provinsion is Use this format to save storage space. For the thin disk, you provision as much datastore space as the disk would require based on the value that you enter for the disk size. However, the thin disk starts small and at first, uses only as much datastore space as the disk needs for its initial operations.

  • Click next.

  • Verify disk option and click finsh.

  • open console of VM guest.
  • runcommand
    # ls /sys/class/scsi_host/
  • output
    host{x}
  • rum command for re-scan disk.
    # echo "- - -" > /sys/class/scsi_host/host{x}/scan
  • run command for format disk.
    # fdisk -l /dev/sdb
    # mkfs.ext3 /dev/sdb
  • make directory for mount point.
    # mkdir /data
  • mount disk.
    # mount /dev/sdb /data
  • follow next step to auto mount.
    # vi /etc/fstab
  • type this text to last line file.
    /dev/sdb     /disk3     ext3     defaults     1 2
     Congraturation!!! You add new virtual disk to Linux VM guest complete.

Monday, July 21, 2014

How to install phpMyAdmin on debian7 or ubuntu

phpMyAdmin is a free web software to work with MySQL on the web. It provides a convenient visual front end to the MySQL capabilities.

Before working with phpMyAdmin, you need to have LAMP installed on your server. If you don't have the Linux, Apache, MySQL, PHP stack on your server, you can find the tutorial for setting it up here.

Install phpMyAdmin

In Debian and Ubuntu it simple.You can use apt-get for setup it.

# su -
# apt-get install phpmyadmin
or

# sudo apt-get install phpmyadmin


if you enabled sudo

During the installation, phpMyAdmin will walk you through a basic configuration. Once the process starts up, follow these steps:
Select Apache2 for the server
Choose YES when asked about whether to Configure the database for phpmyadmin with dbconfig-common
Enter your MySQL password when prompted
Enter the password that you want to use to log into phpmyadmin

After the installation has completed, add phpmyadmin to the apache configuration.
# sudo Include /etc/phpmyadmin/apache.conf > /etc/apache2/apache2.conf

Restart apache2 Service.
# sudo /etc/init.d/apache2 restart

You can then access phpmyadmin by going to youripaddress/phpmyadmin.

Sunday, July 20, 2014

How to install GlusterFS on Debian 7 wheezy

This tutorial I will explain GlusterFS configuration in Debian 7.6.0 and You can use this tutorial for ubuntu. GlusterFS is an open source distributed file system which provides easy replication over multiple storage nodes. Gluster File System is a distributed filesystem allowing you to create a single volume of storage which spans multiple disks, multiple machines and even multiple data centres.

How to use it? It simply.Please follow this step below.

Prerequisites
  • 2 x Debian 7 Server
  • IPaddr and hostname for all server
    I use :
  • Server 1 ipaddr : 192.168.207.129
    Server 1 hostname : debian7n1
  • Server 2 ipaddr : 192.168.207.130
    Server 2 hostname : debian7n2
     Install GlusterFS
The next step is to make the all machines server.
     


$ su -
# wget -O - http://download.gluster.org/pub/gluster/glusterfs/3.5/3.5.1/Debian/pubkey.gpg | apt-key add -
# echo deb http://download.gluster.org/pub/gluster/glusterfs/3.5/3.5.1/Debian/apt wheezy main > /etc/apt/sources.list.d/gluster.list
# apt-get install glusterfs-server glusterfs-client -y
# update-rc.d glusterd defaults
# gluster --version

glusterfs 3.5.1 built on Jun 28 2014 04:14:49

Repository revision: git://git.gluster.com/glusterfs.git

Copyright (c) 2006-2011 Gluster Inc. <http://www.gluster.com>

GlusterFS comes with ABSOLUTELY NO WARRANTY.

You may redistribute copies of GlusterFS under the terms of the GNU General Public License.


Now it is mandatory that both machines must listen to each other with their hostname
   
# vi /etc/hossts

192.168.207.129         debian7n1
192.168.207.130         debian7n2

Now step : run this command gluster peer probe [hostname] in debian7n1 for connect both machine

# gluster peer probe devian7n2
peer probe: success

# gluster peer status

Number of Peers: 1

Hostname: debian7n2
Uuid: 58e8bbb2-6067-47b3-b1c7-1f2316d55013
State: Peer in Cluster (Connected)

Now I will create a common folder on both debian virtual machine at /data

# fdisk -l /dev/sd*
Disk /dev/sdb: 5368 MB, 5368709120 bytes 255 heads, 63 sectors/track, 652 cylinders, total 10485760 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000 Disk /dev/sdb doesn't contain a valid partition table 
# mkfs.ext3 /dev/sdb
mke2fs 1.42.5 (29-Jul-2012)
/dev/sdb is entire device, not just one partition!
Proceed anyway? (y,n)  y
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
327680 inodes, 1310720 blocks
65536 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1342177280
40 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks: 
32768, 98304, 163840, 229376, 294912, 819200, 884736
Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done 
# mkdir /data
#mount /dev/sdb /data

If you wish you can use any other mount points on both machines.
Now we need to create the volume where the data will reside. The volume will be called GlusterVol. Now run on any machine.
please follow this step on one machine:
# gluster volume create GlusterVol replica 2 transport tcp debian7n1:/data debian7n2:/data force
volume create: GlusterVol: success: please start the volume to access data

run this command to start volume

# gluster volume start GlusterVol volume start: GlusterVol: success # gluster volume info 
Volume Name: GlusterVol
Type: Replicate
Volume ID: 63bc4f7e-beb1-47b5-9cb9-9f111cb6b510
Status: Started
Number of Bricks: 1 x 2 = 2
Transport-type: tcp
Bricks:
Brick1: debian7n1:/data
Brick2: debian7n2:/data

Saturday, July 19, 2014

How to install LAMP on Debian 7

     หลังจากที่เราติดตั้ง Debian 7 กันไปแล้ว คราวนี้เรามาทำ web server หรือที่เค้าเรียกกันว่า LAMP(Linux, Apache, My Sql, PHP) กันดีกว่าครับ

     ว่าแล้วเราก็มาเริ่มกันเลยดีกว่าครับ
  • ก่อนอื่นเราต้องเข้าเป็น root ของระบบก่อนนะครับ
    $ su -
  • จากนั้นเรามาทำการอัพเดตกันหน่อยครับ
    root@debian:~# apt-get update
  • จากนั้นก็ติดตั้ง my sql ครับ
    root@debian:~# apt-get install mysql-server mysql-client
  • ตั้งรหัสผ่าน root ของ mysql ครับ

  • ยืนยันรหัสผ่านครับ

  • ติดตั้ง apache ครับ
    root@debian:~# apt-get install apache2 -y
  • ต่อไปก็ติดตั้ง Php, perl และ pyton ครับ

    root@debian:~# apt-get install php5 php-pear php5-mysql libapache2-mod-php5 -y
    root@debian:~# apt-get install perl libapache2-mod-perl2 -y
    root@debian:~# apt-get install python libapache2-mod-python -y
  • รีสตาร์ท service อีกทีครับ

    root@debian:~# /etc/init.d/apache2 restart
  • ทดสอบการใช้งาน php

    root@debian:~# nano -w /var/www/test.php
  • ใส่ Code นี้ลงไปครับเป็น code แสดงข้อมูลต่างๆของ php ที่ติดตั้งไปครับ

    <?php
         phpinfo();
    ?>
  • ทดสอบโดยการเปิด browser แล้วไปที่ http://<IP-address or Server name>/test.php ถ้าขึ้นก็เป็นอันใช้ได้ครับ

**หมายเหตุ
ถ้าจะเข้าใช้จากชื่อเครื่องต้องไปใส่ที่ไฟล์ /etc/hosts ก่อนนะครับโดยเพิ่ม

ip-address            hostname

เข้าไปครับ
เสร็จเรียบร้อยแล้วครับสำหรับการติดตั้ง ถ้าจะเอาหน้าเพจไปใส่ก็ใส่ที่ /var/www/ ได้เลยครับ

credit by : https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-debian

Thursday, July 17, 2014

How to install Debian 7.5 on VMware ESXi 5.5

     Debian Linux(เดเบียน ลินุกซ์)

     Debian คือ Linux Distro เจ้าหนึ่งที่มีผู้ใช้งานมากมายทั่วโลก ไม่แพ้ตัวอื่นๆเลย แต่ยังไม่มากนักในไทย = = และที่สำคัญเจ้าตัวนี้ยังเป็นต้นแบบของตัวอื่นๆ เช่น Ubuntu ครับ

     How to install Debian 7.5 on VMware ESXi 5.5

     ในครั้งนี้ผมขอข้ามขั้นตอนการสร้าง virtual machine ปไเลยนะครับ เนื่องจากเคยลงไว้แล้ว ก็แค่เลือก OS ให้ตรงกับที่เราต้องการในครั้งนี้ นั่นก็คือ Debian 7 ครับ ถ้าเสร็จแล้วก็มาเริ่มกันเลยครับ

download link www.debian.org
  • เปิดเครื่องก่อนครับ เมื่อเปิดขึ้นมาแล้วจะได้หน้าตาแบบนี้ครับ ถ้าใครไม่ได้แบบนี้ให้รีสตาร์ท VM 1 ทีครับ แล้วเลือก install หรือ Graphic install ครับ แต่ในที่นี้ผมจะเลือก install ครับ

  • จากนนั้นเลือกภาษาครับ เป็น English หรือใครถนัดภาษาอื่นก็แล้วแต่ครับ ฮี่ๆๆ (ไม่มีภาษาไทยนะครับ)

  • เลือก location ครับ

  • เลือกภาษาคีย์บอร์ดครับ

  • ใส่ชื่อเครื่องครับ

  • ใส่ชื่อโดเมนครับ

  • ตั้งรหัสผ่านของ user root ครับ

  • อีกครั้งครับ

  • สร้างบัญชีผู้ใช้งาน(user account) ครับ

  • ตั้ง user name ของบัญชีผู้ใช้ที่เราสร้างเมื่อสักครู่ครับ

  • ตั้งรหัสผ่านครับ

  • เลือก Time zone ครับ

  • กำหนด partition ครับ เลือกบรรทัดแรกไปได้เลยครับ

  • Enter เลยครับ

  • เลือกว่าจะแยก /home /usr /var ... หรือไม่ ถ้ายังไม่รู้คืออะไรให้เลือกบรรทัดแรกไปก่อนครับ

  • ตรวจสอบ และเลือก finish ได้เลยครับ

  • เลือก yes เพื่อยืนยันการเปลี่ยนแปลงครับ

  • จากนั้นก็จะถามว่าต้องการติดตั้ง package เลยหรือไม่ ถ้าต้องการก็ตอบ ใช่ ได้เลยครับ หรือจะรอติดตั้งเองหลังจากติดตั้ง OS เสร็จแล้วก็ได้ครับ

  • เลือก package ที่ต้องการติดตั้งครับ

  • เสร็จแล้วก็รอครับ
  • จากนั้นจะถามว่าต้องการติดตั้ง grub boot loader หรือไม่ ตอบ ใช่ ไปเลยครับ

  • กด Continue เพื่อสิ้นสุดการติดตั้งครับ หลังจากนั้นเครื่องจะรีสตาร์ทครับ

  • หน้าตาหลังจากรีสตาร์ทเสร็จ ก็ล็อกอินเข้า user ที่เราได้สร้างเอาไว้เพื่อเข้าใช้งานได้เลยครับ





  • เท่านี้ก็เป็นอันเสร็จเรียบร้อยแล้วครับสำหรับการติดตั้ง Debian 7.5 ครับ
    ก็ขอให้สนุกกับการใช้งานกันนะครับ ^ ^

Wednesday, July 9, 2014

How to config Bonding network interface on CentOS

1. เรียง interface ใหม่ โดยเข้าไปแก้ไฟล์
vi /etc/udev/rules.d/70-persistent-net.rules
2. แก้ไข modprob
vi /etc/modprobe.d/bonding.conf
โดย mode ที่เราจะใช้ จะเป็น mode 0 ซึ่งจะ config ดังนี้
options bond0 mode=1 miimon=100
อ้างอิง mode (https://wiki.centos.org/TipsAndTricks/BondingInterfaces)
mode=0 ==> Round-robin (Balance RR)
mode=1 ==> Active-Standby
mode=2 ==> Balance XOR
mode=3 ==> Broadcast
mode=4 ==> IEEE 802.3ad (Dynamic Link Aggregation or Cisco EtherChannel)
mode=5 ==> Adaptive Transmit Load Balancing (Balance TLB)
mode=6 ==> Adaptive Load Balancing (Balance ALB)
3. จากนั้น ให้ไปสร้างไฟล์ bonding ขึ้นมา ซึ่งโดยปกติแล้ว จะใช้ชื่อไฟล์ประมาณ ifcfg-bond0 ซึ่งจะสร้างไว้ใน /etc/sysconfig/network-scripts/
vi /etc/sysconfig/network-scripts/ifcfg-bond0
ตัวอย่าง config
DEVICE=bond0
BOOTPROTO=none
ONBOOT=yes
TYPE="Unknown"
IPADDR=10.217.202.13
NETMASK=255.255.255.0
GATEWAY=10.217.202.254
DEFROUTE=yes
IPV6INIT=no
NAME="System bond0"
USERCTL=no
4. จากนั้น จะต้องไป config ไฟล์ ifcfg-eth0, ifcfg-eth1 เพื่อให้ทั้ง 2 Interface นั้น เป็น bonding interface โดย config ดังนี้
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
HWADDR=00:50:56:A2:55:01
IPV6INIT=no
NAME="System eth0"
USERCTL=no
MASTER=bond0
SLAVE=yes
DEVICE=eth1
BOOTPROTO=none
HWADDR=00:50:56:A2:55:02
ONBOOT=yes
MASTER=bond0
SLAVE=yes
IPV6INIT=no
USERCTL=no
5. จากนั้น reboot ก็เป็นอันเสร็จเรียบร้อยแล้วครับ

Monday, July 7, 2014

How to install GlusterFS 3.5.1 on CentOS6.4

วิธีติดตั้ง และ ใช้งาน glusterFS แบบ replicate volume ทั้ง Server และ Client บน CentOS
Server(ใช้การติดตั้งแบบ rpm)

ข้อ 1-4 ต้องทำทุกเครื่อง

1.Download ตัวติดตั้ง glusterFS lasted version จาก
http://download.gluster.org/pub/gluster/glusterfs/LASTED

2.ติดตั้ง glusterfs server โดยใช้คำสั่งตามนี้

rpm -ivh glusterfs-libs-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-fuse-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-cli-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-api-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-extra-xlators-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-devel-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-api-devel-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-server-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-debuginfo-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-geo-replication-3.5.1-1.el6.x86_64.rpm

2.1 ติดตั้ง glusterfs client โดยใช้คำสั่ง

rpm -ivh glusterfs-libs-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-fuse-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-cli-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-api-3.5.1-1.el6.x86_64.rpm
rpm -ivh glusterfs-rdma-3.5.1-1.el6.x86_64.rpm

3. Start service ด้วยคำสั่ง
/etc/init.d/glusterd start หรือ service glusterd start


4. ทำ auto start เมื่อ boot เครื่อง
chkconfig --level 235 glusterd on

ตั้งแต่ข้อนี้ไปทำแค่เครื่องเดียว

5.เชื่อม server แต่ละ node เข้าด้วยกัน (มีกี่เครื่องก็ใส่ทุกเครื่อง แต่ไม่ต้องใส่ตัวมันเอง)
[root@SERVER1]# gluster peer probe [SERVER2]
[root@SERVER1]# gluster peer probe [SERVER3]

ตรวจสอบการตั้งค่าด้วย
[root@SERVER1]# gluster peer status


6. create volume
[root@SERVER1]# gluster volume ctreate [VolName] replica [count replica] transport tcp [Host1Name]:/data [Host2Name]:/data [Host3Name]:/data


[count replica] : ใส่ตามจำนวน server
/data1 : คือ mount point ที่ mount disk ให้แต่ละ server เพื่อทำ replicate volume
replica : คือโหมดของ glusterFS สามารถเปลี่ยนเป็น stripe หรือถ้าไม่ใส่ จะเป็นแบบ distribute

ตรวจสอบการสร้าง volume
[root@SERVER1]# gluster volume info


7.start volume
[root@SERVER1]# gluster volume start [VolName]

ถ้าเรียบร้อยก็แสดงว่า gluster พร้อมใช้งานแล้ว

Client

1.ใช้งานด้วยการ mount เหมือน device ธรรมดาได้เลย
[root@CLIENT]# mkdir /data/glusterfs-share
[root@CLIENT]# mount -t glusterfs [host1]:/[volName] /data/glusterfs-share


2.auto mount โดยการแก้ไขไฟล์ /etc/fstab/
[root@CLIENT]# vi /etc/fstab/

เพิ่ม
[host1]:/[volName]          MountPoint          glusterfs          default,_netdev          0 0

เข้าไปท้ายไฟล์

ข้อมูลเพิ่มเติม http://www.gluster.org/

Sunday, July 6, 2014

How to install Ubuntu 14.04 LTS on VMware workstation 10

สวัสดีครับ วันนี้เรามาลองติดตั้ง Ubuntu ซึ่งเป็นระบบปฏิบัติการ Linux กันนะครับ
ก่อนอื่นเราต้องไปโหลดตัว ISO installer กันก่อนเลยนะครับ โดยไปที่ลิงค์
   http://www.ubuntu.com/download/desktop/contribute/?version=14.04&architecture=amd64

พอโหลดเสร็จแล้วก็ทำตามขั้นตอนได้เลยครับ



  • เปิด VMware workstation ขึ้นมาครับ

  • คลิกที่ New Virtual Machine หรือ กดปุ่ม Ctrl+N ที่คีย์บอร์ดครับ

  • เลือก Typical และคลิด Next

  • เลือก iso installer และคลิก browe จากนั้นเลือกที่ไฟล์ที่เราทำหารโหลดไว้กด open และ คลิก Next



  • ใส่ชื่อ และ รหัสตามที่ต้องการครับ

  • คลิก Next ผ่านไปเลยหรือถ้าท่านใดต้องการเปลี่ยนชื่อเครื่องก็เปลี่ยนได้ครับ

  • กำหนดขนาดของดิสก์ครับแล้วเลือกว่าจะใช้แบบไหน
    อันบนจะเป็นแบบเก็บไว้เป็นไฟล์เดียว ส่วนอันล่างจะแบ่งเป็นหลายๆไฟล์ ในที่นี้แนะนำแบบล่างครับ

  • ตรวจสอบฮาร์ดแวร์ว่าตรงตามต้องการหรือไม่ ถ้าอยากแก้ไขเพิ่มเติมก็กดที่ Customize Hardware ถ้าเรียบร้อยแล้วคลิก Next เลยครับ

  • ทีนี้เครื่องจะเปิดขึ้นมา แล้วในเวอร์ชันใหม่ๆ จะมีฟังก์ชัน easy install ให้เราก็ไม่ต้องทำอะไรเลยครับแค่รอเฉยๆ หาอะไรทำไปพลางๆก่อนครับ



  • พอเสร็จแล้วก็จะได้หน้าแบบนี้ครับ ใส่รหัสที่ตั้งไว้แล้ว Enter เลยครับ

  • จะได้หน้าตาแบบนี้



    ติดตั้งเรียบร้อยแล้วเดี๋ยวครั้งหน้ามาเริ่มต้นใช้งานกันนะครับ สำหรับวันนี้ขอลาไปก่อนครับ