2016년 1월 28일 목요일

ARM Architecture

ARM EABI ( Embedded-Application binary Interface ) ( armel ) : older 32-bit ARM devices
ARM hard-float ( armhf ) : powerful 32-bit devices using version 7 of the ARM
64bit ARM : 64-bit ARM-powered devices

intel x86 : i386
amd 64, intel 64 : amd64
ARM : armel
ARM, hw FPU : armhf
64-bit ARM : arm64

2016년 1월 26일 화요일

cubrid start/stop with windows

cmd prompt start
cd cubrid installed path/bin
cubrid service start / stop / status

2016년 1월 21일 목요일

2016년 1월 18일 월요일

nfs mount failure with ubuntu

mount: wrong fs type, bad option, bad superblock on 192.168.0.62:/home/musesoft/work2,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so

apt-get install nfs-common

2016년 1월 14일 목요일

x window disable with ubuntu 14.04

disable

cp -n /etc/default/grub /etc/default/grub.enable

vi /etc/default/grub

#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX="text"
GRUB_TERMINAL=console

update-grub

reboot

enable

cp /etc/default/grub /etc/default/grub.disable

vi /etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
#GRUB_TERMINAL=console

update-grub

reboot


or

service lightdm start
service lightdm stop