일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- aes decrypt
- build:12
- aes-ctr
- OS1
- floyld
- ar과 make 사용법
- ros
- gcc를 사용한 컴파일 예제
- geth 설치 안됨
- catkin_make
- geth 설치
- c
- geth 설치 에러
- gcc
- Linux
- build 에러
- ethereum
- c언어로 쉽게 풀어쓴 자료구조
- LIDAR
- aes_ctr
- 시스템프로그래밍
- studio
- ouster
- build:15
- error
- gcc 실행
- aes-128-ctr
- aes ctr
- ousterstudio
- aes ctr decrypt
- Today
- Total
CODERJH
ubuntu wireshark 빌드 버전 설치 본문
2.1 UNIX : Installation and Build Instructions
2.1.1 Build environment setup
1. C compiler and C++ compiler;
// $gcc/g++ 또는 $gcc/g++ --version 입력 시 gcc 설치 확인 및 버전 확인 가능
$sudo apt-get install gcc | g++
2. the Flex lexical analyzer;
$ sudo apt-get install flex
3. Either Bison or Berkeley YACC;
$ sudo apt-get install bison
4. Perl;
$ perl --version
// linux에 기본적으로 다운로드 받아져있는 것 같음.
5. Python 3;
$ sudo apt-get install python3.8
6. CMake;
$ sudo apt install cmake
7. Ninja
$ sudo apt-get update -y
$ sudo apt-get install -y ninja-build
8. Several required libraries
// wireshark/tools/debian-setup.sh 파일로 이동
$ --install-optional
// 추가 도구를 설치하고 모든 Wireshark 기능에 필요한 라이브러리를 설치
$ --install-deb-deps
// Wireshark용 .deb 파일을 빌드하는 데 필요한 패키지를 설치
$ --install-test-deps
// 모든 테스트를 실행하는 데 필요한 패키지를 설치
$ git clone https://github.com/wireshark/wireshark.git
$ mkdir ../shark
$ cd ../shark
$ cmake -G Ninja ../wireshark
$ ninja
'Ethereum Nodediscovery v5' 카테고리의 다른 글
이더리움 프라이빗 네트워크 노드 구축 (0) | 2022.11.25 |
---|---|
ethereum geth 설치 방법 (0) | 2022.05.20 |