Configuration 6

Ubuntu LLVM 설치 및 버전확인 방법 (export LLVM_CONFIG)

버전확인 설치된 llvm 버전확인 /usr/lib/ 경로에서 설치된 llvm-N 폴더를 확인하면된다. cd /usr/lib # llvm-N 폴더 여부 확인 현재 설정된 환경변수(LLVM_CONFIG) 값 확인 LLVM을 사용하여 컴파일을 진행할 경우 LLVM_CONFIG라는 환경변수에 llvm 버전을 넣어준다. 이에 아래와 같이 해당 환경변수 값을 세팅하고, 확인할 수 있다. export LLVM_CONFIG="llvm-config-12" export $LLVM_CONFIG LLVM 설치 sudo apt-get install -y lld-12 llvm-12 llvm-12-dev clang-12 || sudo apt-get install -y lld llvm llvm-dev clang

Configuration 2024.02.10

sudo시에 E: Could not get lock /var/lib/dpkg/lock-frontend 해결

오류 E: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 5031 (unattended-upgr) N: Be aware that removing the lock file is not a solution and may break your system. E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 해결 sudo rm /var/lib/apt/lists/lock sudo rm /var/cache/apt/archives/lock sudo rm /var/lib/dpkg/lock* sudo dpkg ..

Configuration 2023.11.22

v8 engine Fuzzing을 위한 v8 컴파일 및 Fuzzilli Configuration

https://lateral-button-588.notion.site/Fuzzilli-Configuration-e9f12b4db7394594ab9f01303d836060 Fuzzilli Configuration 결국 quick start docker로 성공 ⇒ 9월 7일 lateral-button-588.notion.site https://github.com/antonio-morales/Fuzzing101/tree/main/Exercise%2010 GitHub - antonio-morales/Fuzzing101: An step by step fuzzing tutorial. A GitHub Security Lab initiative An step by step fuzzing tutorial. A GitHu..

Configuration 2022.09.03

docker ps 와 docker ps -a 의 차이점 (docker container 확인) & docker start vs docker run - 예전에 썼던 컨테이너 rm없이 재사용하기

도커를 다시 쓰려고 docker run 명령어를 해보면, 다음과 같은 오류가 뜰때가 있다. #도커 이미지 확인 sudo docker images #도커 이미지 ID 이용하여 새로운 컨테이너 제작 sudo docker run -i -t -d -p 9080:8080 --name arvm 3c4869872aac jun@ubuntu:~/jun/CTF/20220226/arvm$ sudo docker run -i -t -d -p 9080:8080 --name arvm 3c4869872aac docker: Error response from daemon: Conflict. The container name "/arvm" is already in use by container "a7f4227f8b123eb3dda71d..

Configuration 2022.03.06
728x90