Skip to main content

ကမ္းမမွန္သူမ်ား ့ ့ ့ ့ ့ ့ ့ ့ ့

ဟိုဘက္ကမ္းကသူက ့ ့ ့ ့ ့ ဒီဘက္ကမ္းကိုလာခ်င္ရဲ႕ ့ ့ ့ ့ ့ ့
ဒီဘက္ကမ္းကသူက ့ ့ ့ ့ ့ ့ ဟိုဘက္ကမ္းကိုျပန္ခ်င္တယ္တဲ႕ ့ ့ ့ ့ ့ ့ ့ ့ ့
ရတာမလို လိုတာမရ ဗိုလ္က်ခံရတဲ႕ တို႕ရဲ႕ဘ၀ ့ ့ ့ ့ ့
ဘယ္ေတာ့မ်ားဆင္းမွာလဲ ့ ့ ့ ့ ့ ့ ေပးတက္ပါဦးခင္ဗ်ာ ့ ့ ့ ့ ့ ့
ေျမစာပင္ေတာင္ဘယ္ေနမွန္းမသိတဲ့ဘ၀မွာ ့ ့ ့ ့ ့ ့ ့ ့ ့ ဒီဟာႀကီးၿပီးလဲ ဘာထူးမွာမို႕လို႕တုန္း ့ ့ ့ ့ ့
အေသသာအကုန္သတ္လိုက္ ့ ့ ့ ့ ့ ့ ့ ့ ့ ဒါမွျမက္ဘဲက်န္ခဲ႕မွာ ့ ့ ့ ့ ့ ့ ့ ့
အဲဒါမွဘဲသားဒန္ေပါက္ ေပၚေပါက္လို႕လာမွာေပါ႕

Comments

Popular posts from this blog

Journey to the linux kernel world.

Lately, I am trying to figure out how to get the 2.6.25 kernel workk with some usb camera support on the AT91RM9200DK base board. However, the board designer who design the board does not follow the exect hardware design as the original design and don't write the proper documentation. It is very difficult for me to find out and figure out how he intend to work the board. I manage to boot the kernel and get the root file system up yesterday. I still trying to figure out how to mount the NAND flash file system work with jffs2 file system. I hope to solve and mount the jffs2 part at the end of the day. to solve - 1. get the nand file system mount 2. get onboard 2 x rs232 and 2 x rs485 work properly 3. get the usb camera work (ov511 and zc0301) 4. compile all other necessary exe to new kernel 5. test test test the whole system and make sure it work properly. 6. release to the wild.

Odoo 9 and 10 Install on Ubuntu 16.04 LTS

Update the system and install all necessary packages sudo apt-get update && sudo apt-get -y upgradesudo apt-get install git python-pip python-dev python-virtualenv libevent-dev gcc libjpeg-dev libxml2-dev libssl-dev libsasl2-dev node-less libldap2-dev libxslt-dev Install  PostgreSQL sudo apt-get install postgresql-9.5 postgresql-server-dev-9.5 sudo systemctl enable postgresql.service sudo systemctl start postgresql.service Create Odoo users sudo adduser --system --group odoo10 --home /opt/odoo10 sudo adduser --system --group odoo9 --home /opt/odoo9 Create PostgreSQL database users, odoo10 and odoo9: sudo su - postgres -c "createuser --createdb --username postgres --no-createrole --no-superuser --no-password odoo10" sudo su - postgres -c "createuser --createdb --username postgres --no-createrole --no-superuser --no-password odoo9" Switch to user odoo10   sudo su - odoo10 -s /bin/bash Clone the Odoo 10.0  git clone http://www.github...