Menu

Wednesday, April 24, 2013

[System] วิธีการปรับขนาดพาร์ทิชั่นของไฟล์ระบบบน Ubuntu
[System] How to Resize File System Partition on Ubuntu

ใส่แผ่นซีดี Ubuntu
Insert Ubuntu CD

หลังจากบูทจากแผ่น เลือก Try Ubuntu
After booting from CD, select Try Ubuntu

เปิดโปรแกรม Gparted (โปรแกรมนี้สามารถติดตั้งผ่านทาง Ubuntu Software Center)
Open Gparted program (This can be installed by Ubuntu Software Center)

[System] วิธีการแก้ข้อผิดพลาด "file not found" ด้วย grub rescue
[System] How to Fix Error: "file not found" with grub rescue

ข้อผิดพลาดนี้จะแสดงดังภาพด้านล่างหลังจากเปิดเครื่อง
This error is shown as image below after booting

Tuesday, April 23, 2013

[VirtualBox] วิธีการเปลี่ยนขนาดของฮาร์ดดิสก์
[VirtualBox] How to Resize the Size of Harddisk

ใช้คำสั่งดังนี้
using this command
VBoxManage modifyhd YOUR_HARD_DISK.vdi --resize SIZE_IN_MB  

โดยปกติ VBoxManage.exe จะอยู่ที่ C:\Program Files\Oracle\VirtualBox\
VBoxManage.exe is normally in C:\Program Files\Oracle\VirtualBox\

แทนที่ YOUR_HARD_DISK ด้วยชื่อฮาร์ดดิสก์
YOUR_HARD_DISK must be replace with your image name

แทนที่ SIZE_IN_MB ด้วยขนาดที่ต้องการ
SIZE_IN_MB  must be replace with your desired size

Sunday, April 14, 2013

[C#] การติดตั้งตัวคอมไพล์ C# บน Ubuntu
[C#] C# Compiler Installation on Ubuntu

สำหรับการติดตั้ง ให้ใช้คำสั่งต่อไปนี้ใน Terminal
To install, use this command on Terminal
sudo apt-get install mono-gmcs
หรือ
or
sudo apt-get install mono-dmcs

Friday, April 12, 2013

[OpenCV] วิธีการใช้ OpenCV บน Ubutu
[OpenCV] How to Use OpenCV on Ubuntu

สร้างไฟล์ใหม่ชื่อ test.cpp แล้วใส่โค้ดที่ใช้ OpenCV ตามด้านล่าง
Create a program using OpenCV by creating new text file and inserting the code as below then saving as test.cpp
  1. #include<stdio.h>
  2. #include<opencv/cv.h>
  3. #include<opencv/highgui.h>

  4. int main(){
  5.   IplImage* img=cvLoadImage("test.jpg",1);
  6. cvNamedWindow("Test",1);
  7. cvShowImage("Test",img);
  8. cvWaitKey();
  9. return 0;
  10. }

Monday, April 1, 2013

[OpenCV] การติดตั้ง OpenCV บน Ubuntu
[OpenCV] OpenCV Installation on Ubuntu

สมมติว่า แฟ้ม OpenCV ถูกสร้างอยู่ในแฟ้ม Home เรียบร้อยแล้ว
Assume that OpenCV folder is created in Home folder

ขั้นตอนแรก ดาวน์โหลด source code ของ OpenCV มาไว้ในเครื่อง โดยมีอยู่สองทางเลือก
First, get OpenCV source code. There are two options.

- ดาวน์โหลดเวอร์ชั่นที่เสถียรล่าสุดของ OpenCV
- Get the Latest Stable OpenCV Version