Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Flutter Tutorial
- ListTile
- FutureBuilder
- Row
- listview
- Cached Image
- Flutter 앱 배포
- node.js
- HTTP
- InkWell
- Flutter 예제
- Networking
- Hello World
- Flutter 강좌
- Column Widget
- MainAxisAlignment
- ListView.builder
- Row Widget
- flutter
- Flutter Example
- CrossAxisAlignment
- navigator
- WillPopScope
- 반석천
- sqlite
- Load Image
- AppBar
- Scaffold
- Image.network
- Snackbar
Archives
- Today
- Total
꿈꾸는 시스템 디자이너
우분투에 임베드디 개발환경 구성 본문
root 권한에서 수행한다.
1. 환경 설치
2. vim 설치
3. profile 수정을 통한 PATH설정
vim 상에서 다음과 같이 PATH 추가
변경된 PATH 설정 적용 및 확인
arm-linux-gcc의 버전 정보가 표시되면 정상적으로 설치된 것이다.
1. 환경 설치
$ sudo apt-get install xinetd tftp tftpd minicom nfs-kernel-server build-essential $ wget ftp://ftp.arm.linux.org.uk/pub/armlinux/toolchain/cross-3.2.tar.bz2 $ tar xjvf cross-3.2.tar.bz2 $ sudo mv usr/local/arm /usr/local/ |
2. vim 설치
$ apt-get install vim |
3. profile 수정을 통한 PATH설정
$ vim /etc/profile |
vim 상에서 다음과 같이 PATH 추가
export PATH=$PATH:/usr/local/arm/bin/ |
변경된 PATH 설정 적용 및 확인
$ source /etc/profile $ arm-linux-gcc -v |
arm-linux-gcc의 버전 정보가 표시되면 정상적으로 설치된 것이다.
'Development > Linux & Ununtu' 카테고리의 다른 글
Ubuntu에서 고정ip 사용하기 (0) | 2009.08.02 |
---|---|
Virtualbox를 이용한 임베디드 개발환경 설정 (0) | 2009.08.02 |
Ubuntu의 .profile 위치 (0) | 2009.07.30 |
우분투(Ubuntu)에 gcc 설치하기 (2) | 2009.05.11 |
우분투(Ubuntu)에 root 계정 만들기 (0) | 2009.05.11 |
Comments