반응형 Development Solutions142 [Solved][Linux] source Command Description (source 명령 설명) [Solved][Linux] source Command Description source 명령 설명 source는 쉘 스크립트 명령이 childe 프로세스가 아닌, 현재 실행중인 프로세스에서 실행되도록 하는 명령어! 덕분에 스크립트가 끝났을때 바로 명령어를 적용시킬 수 있음 ex) source ./bashrc (source is a command that allows shell script commands to be executed in a currently running process, not in a child process! This allows you to apply the command as soon as the script is finished ex) source ./bashrc) 2022. 8. 24. [Solved][Docker] mount failed: Operation not permitted. 해결 방법 Docker Solution - mount failed: Operation not permitted docker 컨테이너에 privilege 권한을 줘야한다! docker run --privileged ~~ 의 형태로 컨테이너를 생성해야함 아래는 해결하는 과정에서 도움됐던 URL(Privilege permission should be given to docker containers!Container must be created in the form of docker run --privileged ~~ Below is the URL that was helpful during the resolution process) https://stackoverflow.com/questions/24614513/.. 2022. 8. 23. [Solved] /usr/bin/ld: skipping incompatible <path 1> when searching for <path 2> workaround (/usr/bin/ld: skipping incompatible <경로1> when searching for <경로2> 해결 방법) [Linux Ubuntu] /usr/bin/ld: skipping incompatible when searching for workaround /usr/bin/ld: skipping incompatible when searching for 해결 방법 64비트 환경에서 32비트 라이브러리를 필요로 하여, 컴파일 중에 발생하는 문제 우분투 11 이하 버전에서는 ia32-libs 패키지 설치 우분투 16,18 버전에서는 sudo apt-get install gcc-multilib g++-multilib 로 gcc-multilib, g++multilib 설치 중간 버전은 상황에 맞게 설치하여 해결함 (Problems with compiling 32-bit libraries in 64-bit environment.. 2022. 8. 23. [Solved] Check and add default include paths compiled and explored by g++, gcc (g++ , gcc가 컴파일하며 탐색하는 기본 include 경로 확인 및 추가) [Linux] Check and add default include paths compiled and explored by g++, gcc (g++ , gcc가 컴파일하며 탐색하는 기본 include 경로 확인 및 추가) (추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편 https://inf.run/3XmSH Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 - 입문편 강의 - 인프런 Qt QML과 C++를 사용하여 크로스플랫폼 애플리케이션 개발에 입문할 수 있습니다. 해당 강의에서는 윈도우 응용 프로그램 타겟으로 개발을 진행합니다., 강의 주제 📖 이 강의를 통해 참가자들은 www.inflearn.com g++ -v -E - 또는 gcc -v -E - 이후 #includ.. 2022. 8. 23. 이전 1 ··· 20 21 22 23 24 25 26 ··· 36 다음 반응형