본문 바로가기

설치3

[Network] WireShark 설치 (1) Terminal 열기 (2) 관련 패키지 설치 $ sudo add-apt-repository ppa:wireshark-dev/stable (3) 패키지 업데이트 $ sudo apt update (4) WireShark 설치 $ sudo apt install wireshark (6) WireShark 실행 $ sudo wireshark * WireShark 설치 OR 실행 중에 'Wireshark xdg_runtime_dir not set' 에러가 발생하면? ==> 터미널에서 아래 명령어 입력 $ sudo dpkg-reconfigure wireshark-common https://www.geeksforgeeks.org/how-to-install-and-use-wireshark-on-ubuntu-li.. 2023. 4. 16.
[Kali] Kali 설치 - USB 8GB ==> 4GB 등 용량이 부족한 디스크로 하면 설치하다가 에러날 수 있다. 1) Kali 공식 홈페이지에서 iso 다운로드 ==> Installer Images. recommended 버전으로 다운로드 ==> https://www.kali.org/get-kali/#kali-installer-images Get Kali | Kali Linux Home of Kali Linux, an Advanced Penetration Testing Linux distribution used for Penetration Testing, Ethical Hacking and network security assessments. www.kali.org 2) Rufus 프로그램 설치 및 부팅 USB 제작 ==>.. 2023. 2. 27.
[GIT] GIT 설치 및 관리 (with VScode, win10) - git repository는 파일 및 폴더의 저장소 기능만 함. - 파일 변경 이력 별로 저장되기에, 작업 중 error 났으나 감당하기 어려우면, 이전 변경 이력 상태로 돌아갈 수 있음 - server에서 관리하는 '원격 저장소', PC에서 관리하는 'Local 저장소'로 나뉨 1) Github 아이디 만들기 https://github.com/ 2) git 설치 https://git-scm.com/ 설치시 아래 두 부분을 필수 선택 설치 이후 GIt Bash or Git CMD 에서 이름, 이메일 설정 버전 관리를 위한 정보 등록 => $ git config --globla user.name "Localhost" $ git config --global user.email "localhost@gmai.. 2022. 5. 13.