vivado&petalinux 개발환경 구성
vivado 2017.4 & petalinux 2017.4 install
youngsunny
2021. 4. 21. 10:11
www.zachpfeffer.com/single-post/download-and-install-xilinxs-20174-petalinux-tools
Download and Install Xilinx's 2017.4 PetaLinux Tools
This post shows how to download and install Xilinx's 2017.4 PetaLinux Tools on Ubuntu 16.04
www.zachpfeffer.com
1. bash shell 설정
#bin bash seting#############################################
ls -al /bin/sh
dash? --> bash 로 변경 필요
sudo dpkg-reconfigure dash
우분투의 기본 쉘은 bash가 아닌 dash입니다.
하지만 개발용 shell script들 중 bash 용으로 작성된 것들이 많으며
이로 인해 호환성 문제로 작업 간 문제가 발생하는 경우가 있습니다.
$ ls -al /bin/sh
lrwxrwxrwx 1 root root 4 9월 12 12:33 /bin/sh -> dash
이에 다음과 같이 조치하면 됩니다.
sudo dpkg-reconfigure dash
나오는 화면에서 No 라고 답변
조치하면 아래처럼 바뀝니다.
ls -al /bin/sh
lrwxrwxrwx 1 root root 4 9월 12 22:34 /bin/sh -> bash
2. 환경변수 추가 및 확인