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
- ListView.builder
- CrossAxisAlignment
- flutter
- Networking
- 반석천
- FutureBuilder
- Scaffold
- Row
- AppBar
- Cached Image
- HTTP
- Flutter Tutorial
- Flutter 강좌
- MainAxisAlignment
- sqlite
- Row Widget
- Flutter 앱 배포
- Flutter Example
- InkWell
- Image.network
- WillPopScope
- navigator
- listview
- node.js
- Snackbar
- Flutter 예제
- Load Image
- ListTile
- Column Widget
- Hello World
Archives
- Today
- Total
꿈꾸는 시스템 디자이너
Ubuntu에서 nfs설정하기 본문
임배디드 장비를 이용한 개발에서 부족한 파일 시스템을 확충하기 위해 nfs(network file system)을 이용한다.
Host PC의 파일 시스템과 타켓 보드의 파일 시스템을 연동하는 것이다.
1.Host PC에 nfs 설치
$> sudo apt-get install nfk-kernel-server
2. Host PC에 nfs 영역 생성
$> mkdir /nfs
$> chmod 777 /nfs
$> chwon nobody /nfs
3. nfs 환경 수정
$> vim /etc/exports
해당 파일에 아래의 내용을 추가
/nfs localhost(rw,insecure) /nfs 192.168.10.0/24(rw,insecure) |
4. nfs 데몬 실행
$> /etc/init.d/portmap restart
$> /etc/init.d/nfs-kernel-server restart
$> exportfa -a
5. 새로운 nfs 영역 추가
$> mkdir /tmp/nfs
$> mount -n localhost:/nfs /tmp/nfs
6. 서버의 nfs 영역에 임의에 파일을 추가한다.
$> vim test
6. 개발보드로 이동
$> minicom
7. nfs 서버와 연동될 영역 생성
$> mkdir /mnt/nfs
8. nfs 서버와 연동
ip주소는 Host PC의 ip주소로 입력한다.
/nfs: 연결될 nfs 서버의 영역
/mnt/nfs: nfs 서버와 연결될 타겟 보드의 영역
$> mount -t nfs -o nolock 192.168.10.2:/nfs /mnt/nfs
$> cd /mnt/nfs
$> ls
완벽하게 연동되었다면 6. 단계에서 생성한 임의의 파일이 표시된다.
'Development > Linux & Ununtu' 카테고리의 다른 글
Ubuntu 12.04에 java6 설치 방법 [펌] (0) | 2012.10.10 |
---|---|
우분투(Ubuntu)에서 ncurses 라이브러리 설치하는 방법 (0) | 2011.12.27 |
Ubuntu에서 고정ip 사용하기 (0) | 2009.08.02 |
Virtualbox를 이용한 임베디드 개발환경 설정 (0) | 2009.08.02 |
우분투에 임베드디 개발환경 구성 (0) | 2009.07.31 |
Comments