Thursday, October 31, 2013

Tunnelling MySQL Over SSH in Linux

http://chxo.com/be2/20040511_5667.html
http://www.howtogeek.com/howto/ubuntu/access-your-mysql-server-remotely-over-ssh/

Command line (run at client terminator)
ssh -fNg -L 3307:127.0.0.1:3306 myuser@remotehost.com

The syntax is 

ssh -fNg -L hostname @ 

mysql -h 127.0.0.1 -P 3307 -u dbuser -p [db]

PHP code
&lt?php
 $smysql = mysql_connect( "127.0.0.1:3307", "dbuser", "PASS" );
 mysql_select_db( "db", $smysql );
?>

หมายเหตุ : ฝั่ง server ไม่ต้อง config อะไรเลย ที่ทดสอบแล้ว แค่ติดตั้ง msyql server ไว้ที่ port 3306 พอ

How To Install Caffeine 2.4.1 on Ubuntu 13.10


Solved
wget -c https://launchpad.net/caffeine/2.4/2.4.1/+download/caffeine_2.4.1%2B419%7Eoneiric1_all.deb 
sudo dpkg -i caffeine_2.4.1*_all.deb
sudo apt-get instal -f

Keyboard layout ใช้ Alt+Shift เปลี่ยนภาษา thai - eng ไม่ได้ ใน Ubuntu 13.10

http://askubuntu.com/questions/361516/altshift-cant-be-set-to-toggle-language/362716#362716
http://askubuntu.com/questions/356357/how-to-use-altshift-combo-to-switch-keyboard-layout-in-13-10


  • ไม่ได้ลง Ubuntu ใหม่มานานเป็นปีแหละเพราะไม่ค่อยมีเวลา
  • วันนี้ได้โอกาสลงใหม่ ซึ่งขณะนี้เป็น 13.10 Saucy แหละ แต่ไง๋พอลงเสร็จมีปัญหาใช้ Alt+Shift ในการสลับภาษา ไม่ได้หว่า
Solved
  • sudo apt-get install dconf-editor
  • open it and navigate to Desktop -> ibus -> General -> Hotkey
  • set this value "Shift_L+Alt" or "Alt_L + Shift" for
  • next-engine & next-engine-in-menu
  • reboot 1 time
  • after reboot was able to set 'Shift+Alt' key in 'Text Entry Settings' (right click at language icon at right top)
หมายเหตุ : แต่ไง๋แก้ได้แล้ว แต่ไม่สามารถ switch ได้ในหน้า login หว่า

Fix login screen resolution in Ubuntu 13.10


  • เป็นมาหลายเวอร์ชั่นแหละ ปัญหาเรื่องการแสดง resolution ของ หน้า login และ หน้าที่เข้าสู่ระบบแล้ว ความละเอียด หน้า login ไม่ปรับตาม
  • แก้ปัญหา โดยใช้ method ที่ ่2 ของการแก้ปัญหาใน เวอร์ชั่น 11.10 
  • method 1 น่าจะแก้ปัญหาได้เช่นกัน แต่ไม่ได้ทดลอง เพราะใช้ วิธีที่สองเร็วกว่า และได้ผลเลย
  • http://juuier.blogspot.com/2011/10/fix-login-screen-resolution-in-ubuntu.html

Solved

  • สร้างไฟล์ด้วยตัวเราเองโดยเปิด editor สักตัวขึ้นมา
sudo nano /etc/X11/xorg.conf
  • เพิ่มข้อมูลเข้าไปในไฟล์ xorg.conf เราซะหน่อยในที่นี้ Notebook เราใช้ค่าประมาณนี้ได้เลย (ในการแก้ปัญหา login resolution นะ)
 Section "Screen"
       Identifier "Screen0"
       Device     "Card0"
       Monitor    "Monitor0"
     
    SubSection "Display"
        Depth 24
        Modes "1024x768" "1280x960" "640x480" "800x600"
    EndSubSection
EndSection
  • สุดท้ายบันทึกไฟล์ reboot สักรอบเพื่อความชัวร์

Tuesday, October 29, 2013

6 Ways Windows 8 Is More Secure Than Windows 7

http://www.howtogeek.com/128182/6-ways-windows-8-is-more-secure-than-windows-7/

Start button in WIndows 8 with ClassicShell

ที่มา : http://www.howtogeek.com/127450/how-to-log-into-the-desktop-add-a-start-menu-and-disable-hot-corners-in-windows-8/

  • ลองใช้ หลายตัวอยู่เหมือนกัน ทั้ง stardock start8 หรือ Windows Start Menu Vistart 8
  • มันไม่ค่อยโดนใจผู้เขียนเลย ไปเจอมาตามลิ้งที่มาชื่อ ClassicShellSetup มันเยี่ยมมากเลย จอร์จ


Popular Posts