2017-02-26

Ubuntu 리눅스 에서 구글 크롬 사용하기

UBUNTU 12.04 DESKTOP






Root account activate~


# sudo passwd root
# . /etc/lightdm/lightdm.conf  수정


autologin-guest=false
autologin-user=root
autologin-user-timeout=0
autologin-session=lightdm-autologin
greeter-session=unity-greeter
user-session=ubuntu




“Google chrome can not be run as root” resolved


“opt/google/chrome/chreme”
※chrome is binary file.

find string “geteuid” and replace “getppid”

Installation of GCC


(# run command as root)
※apt-get install build-essential

   build-essential
   dpkg-dev
   g++
   g++-4.1
   libc6-dev
   libstdc++6-4.1-dev
   linux-libc-dev
※ After command, totaly 7 package was installed.

※confirm GCC file.

Eclipse CDT Setting with Autotools project on UBUNTU

eclipse autotools를 사용한 C/C++ 프로젝트 개발 자동화
What is The Eclipse Autotools 를 확인해보자.

(# run command as root)
※apt-get install autoconf automake libtool


How to check Architecture on Linux system


root@ubuntu:~# uname -a
Linux ubuntu 3.2.0-25-generic-pae #40-Ubuntu SMP Wed May 23 22:11:24 UTC 2012 i686 i686 i386 GNU/Linux
root@ubuntu:~# uname -m
i686
root@ubuntu:~# arch
i686

※redhat의 경우에는 지원하는 CPU arch가 x86_64 와 같은 형태로 표현된다.  ubuntu의 i386, i486, i586, i686은 모두 x86(43bit) arch로 인텔 이 개발한 마이크로 프로세서 의 아키텍처다.

No comments:

Post a Comment