본문 바로가기

리눅스/문제해결

(16)
우분투(ubuntu) 16.04에서 swig 업그레이드 방법 링크 우분투(Ubuntu) 16.04http://chandong83.blog.me/221130068042에서 패키지 툴(apt)로 swig를 설치하면최신 버전이 적용이 안된다. 아래의 링크는 최신버전으로 업그레이드 하는 방법에 대한 글이다. http://chandong83.blog.me/221130068042
Ubuntu 16.04 brew(Homebrew) 설치하기 - 링크 기존 macOS에서 지원하는 homebrew를 리눅스에서(Linuxbrew) 사용할 수 있는 프로그램 설치 하는 방법 http://chandong83.blog.me/221133644230
yacc: command not found mkdir -p Libtest -z "1" || (cd CCache && make)echo "/* SWIG warning codes */" > Lib/swigwarn.swgcat Source/Include/swigwarn.h | grep "^#define WARN\|/\*.*\*/\|^[ \t]*$" | sed 's/^#define \(WARN.*[0-9][0-9]*\)\(.*\)$/%define SWIG\1 %enddef\2/' >> Lib/swigwarn.swgmake[1]: Entering directory '/root/swig/CCache'gcc -g -O2 -Wall -W -I. -c -o ccache.o ccache.cgcc -g -O2 -Wall -W -I. -c -o mdfour.o mdf..
Could not find a package configuration file provided by "dynamic_reconfigure" CMake Warning at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:76 (find_package): Could not find a package configuration file provided by "dynamic_reconfigure" with any of the following names: dynamic_reconfigureConfig.cmake dynamic_reconfigure-config.cmake Add the installation prefix of "dynamic_reconfigure" to CMAKE_PREFIX_PATH or set "dynamic_reconfigure_DIR" to a directory containin..
Could not find a package configuration file provided by "nodelet" CMake Warning at /opt/ros/kinetic/share/catkin/cmake/catkinConfig.cmake:76 (find_package): Could not find a package configuration file provided by "nodelet" with any of the following names: nodeletConfig.cmake nodelet-config.cmake Add the installation prefix of "nodelet" to CMAKE_PREFIX_PATH or set "nodelet_DIR" to a directory containing one of the above files. If "nodelet" provides a separate d..
404 Not Found [IP: 91.189.88.161 80] 404 Not Found [IP: 91.189.88.161 80] Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/u/util-linux/bsdutils_2.17.2-0ubuntu1.10.04.2_amd64.deb 404 Not Found [IP: 91.189.88.161 80]Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl0.9.8_0.9.8k-7ubuntu8.15_amd64.deb 404 Not Found [IP: 91.189.88.161 80]Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/p/pyt..
arm-2009q3/bin/arm-none-linux-gnueabi-gcc: No such file or directory arm-2009q1/bin/arm-none-linux-gnueabi-gcc: No such file or directory arm-2009q3/bin/arm-none-linux-gnueabi-gcc: No such file or directory arm-none-linux-gnueabi-gcc가 존재하지만 실행이 안된다.. 문제는 64비트 OS에서 32비트 gcc 실행파일을 인식하지 못하는 것이다. 해결 방법은 libc6-i386라는 패키지를 설치해주면 된다. $ sudo apt-get install libc6-i386
[FFmpeg] common.mak:166: *** missing separator. Stop. FFmpeg를 윈도우에서 빌드하면 아래와 같은 에러가 발생 할 수 있다. 위처럼 에러가 발생하였다면 아래와 같이 git 설정을 변경해주고다시 소스를 내려받으면 해결이 된다. $ git config --global core.autocrlf false 즉, 아래와 같이 진행하면 해결이 된다. $ git config --global core.autocrlf false$ git clone https://github.com/FFmpeg/FFmpeg.git$ cd FFmpeg$ git checkout release/3.0