linux
-
[Linux 공부] Bandit wargames 0 단계 SSHLinux 2025. 5. 17. 01:43
Level Goal The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 222" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit0.html" data-og-url="https://overthewire.org/wargames/bandit/bandit0.html" data-og-image=""> OverTheWire: Level GoalWe're hackers, and we are..
-
[공식 문서 훑어보기] 1. Redis 기초 관리 - Linux, MemoryRedis 2025. 4. 27. 01:32
해당 내용은 Redis 공식문서를 기반으로 설정 관련 팁 중 Linux에 대해 작성하였습니다.아래 예시는 모두 Docker를 통해 Redis를 실행하고 있습니다.Linux1. Redis는 Linux 환경에서 사용하세요.Redis를 운영할때는 Linux 운영 환경에서 하는 것을 권장합니다.물론 Mac OS, FreeBSD, OpenBSD에서도 테스트가 진행되었기 때문에 사용은 할 수 있지만 Linux 환경에서 가장 많은 테스트가 진행되었기 때문입니다.2. vm.overcommit_memory 설정을 해주세요.Linux 환경에는 vm.overcommit_memory라는 옵션이 존재합니다.해당 옵션을 이해하기 위해서는 Memory Commit에 대해 먼저 알아보겠습니다.2-1. Memory Commit 이란?..
-
[구름 ide / Linux] 리눅스 자바 설치 및 환경 변수 설정하기JAVA 2023. 1. 5. 10:48
1. 파일 다운로드 명령어 wget을 통해 다운로드할 수 있다. 링크 : https://download.java.net/java/GA/jdk16.0.2/d4a915d82b4c4fbb9bde534da945d746/7/GPL/openjdk-16.0.2_linux-x64_bin.tar.gz wget https://download.java.net/java/GA/jdk16.0.2/d4a915d82b4c4fbb9bde534da945d746/7/GPL/openjdk-16.0.2_linux-x64_bin.tar.gz 2. 압축 풀기 다운로드한 경로로 가서 java(jdk) 파일을 압축을 풀어야 사용할 수 있습니다. (ls 명령어를 통해 명령어 입력 전 압축파일이 있는지 확인해 보세요.) tar -zxvf openjdk..