cross compiler 설치 후

linux 2020. 8. 27. 11:16

make: /usr/local/arm_linux_4.2/bin/arm-linux-gcc: Command not found
make: *** [path/filename.o] Error 127 발생시 해결방법
위의 명시된 경로에 컴파일러 경로를 symbolic link 시켜주면 됨
ex) afewgoodIT
cd /usr/local¶
ln -s /usr/arm-afewgoodIT/arm_linux_4.2 arm_linux_4.2¶
ln -s /usr/arm-afewgoodIT/model_name/ arm_linux_4.3¶

'linux' 카테고리의 다른 글

EmbeddedLinux 무선랜 사용  (0) 2021.07.20
VirtualBox Ubuntu14.04 설치 시 참고사항  (0) 2021.07.08
sudo 명령어 패스워드 없이 사용하기  (0) 2019.12.30
Linux 명령어 모음 ...ing  (0) 2019.10.16
자동 압축해제 스크립트  (0) 2019.06.19
Posted by afewgood
,

sudo -s
비밀번호입력
vi /etc/sudores 또는 visudo

모든명령어에 패스워드를 묻지 않게 하려면
계정명 ALL=(ALL) NOPASSWD:ALL
ex) afewgood ALL=(ALL)NOPASSWD:ALL

특정 명령어에 패스워드를 묻지 않게 하려면[(,)로 구분]
계정명 ALL=(ALL) NOPASSWD:명령어1, 명령어2
ex) afewgood ALL=(ALL) NOPASSWD:/bin/mount, /bin/umount

'linux' 카테고리의 다른 글

VirtualBox Ubuntu14.04 설치 시 참고사항  (0) 2021.07.08
cross compiler 설치 후  (0) 2020.08.27
Linux 명령어 모음 ...ing  (0) 2019.10.16
자동 압축해제 스크립트  (0) 2019.06.19
[Ubuntu] ShellPrompt 변경  (0) 2019.06.07
Posted by afewgood
,

바로가기 만들기 ->
대상 "C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" startvm "Image_Name"
  ex)"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" startvm "Ubuntu14.04"
시작위치 "C:\Program Files\Oracle\VirtualBox"

'etc' 카테고리의 다른 글

SK브로드밴드 H614G 모뎀 설정  (0) 2021.07.20
VirtualBox 관련  (0) 2021.07.19
libpng warning: 해결방법  (0) 2021.06.17
openssl을 이용한 RSA 개인키 공개키 생성  (0) 2019.11.12
CR(Carriage Return) / LF(Line Feed)  (0) 2019.09.04
Posted by afewgood
,