본문 바로가기
반응형

trouble shooting4

[Solved][Docker] mount failed: Operation not permitted. 해결 방법 [Docker] 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/can-n.. 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] error adding sysmbols when compiling ccdv: Bad value (ccdv 컴파일시 error adding sysmbols: Bad value) [Linux Ubuntu] error adding sysmbols when compiling ccdv: Bad value ccdv 컴파일시 error adding sysmbols: Bad value ccdv는 컴파일할 때의 과정을 보다 가시성을 높여서 보여준다! 이를 컴파일하는 도중 에러가 발생하여 정리함. ccdv: error adding symbols: Bad value collect2: error: ld returned 1 exit status 발생하여 문제점을 찾아본 결과, 컴파일 할 때 옵션 값을 잘못주었을때 발생하였던 것이었다. 예를 들어 -o 옵션의 다음으로는 아웃풋 이름 argument가 위치해야하는데 다른 옵션 정보 등이 들어오면 발생함! (ccdv shows the process of .. 2022. 8. 23.
[flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) 예를 들어, 아래와 같은 코드에서는 Column 안에 여러 위젯과 함께 ListView가 구현되어있다. (For example, In the code below, ListView is implemented with several widgets in the column.) @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar( title: new .. 2021. 11. 6.
반응형