본문 바로가기

반응형

ubuntu

C276x260 우분투에서 시스템을 업데이트하는 방법 우분투에서 시스템을 업데이트하는 방법현재 시스템 버전 정보$ lsb_release -dDescription: Ubuntu 22.04.1 LTS$ uname -aLinux k8s-lb1 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux우분투 업그레이드패키지 목록 업데이트sudo apt update패키지 업그레이드sudo apt upgrade시스템 전체 업그레이드(선택 사항)sudo apt dist-upgrade불필요한 패키지 정리sudo apt autoremovesudo apt clean시스템 재부팅sudo reboot업그레이드sudo do-release-upgrade$ sudo do.. 더보기
C276x260 우분투에서 cfssl와 cfssljson을 최신 버전으로 설치하는 방법 우분투에서 cfssl와 cfssljson을 최신 버전으로 설치하는 방법cfssl(Cloudflare's PKI and TLS toolkit)은 인증서 생성 및 관리를 위한 강력한 도구입니다.cfssl releasescfssl 설치curl -sfSL https://github.com/cloudflare/cfssl/releases/download/v1.6.5/cfssl_1.6.5_linux_amd64 -o /usr/local/bin/cfsslchmod +x /usr/local/bin/cfsslcfssl version$ cfssl versionVersion: 1.6.5Runtime: go1.22.0cfssljson 설치curl -sfSL https://github.com/cloudflare/cfssl/rele.. 더보기
C276x260 apt-cacher-ng 컨테이너를 Docker Compose로 설정하는 방법 apt-cacher-ng 컨테이너를 Docker Compose로 설정하는 방법apt-cacher-ng 컨테이너 디렉토리 생성sudo mkdir /app/container/aptproxycd /app/container/aptproxydocker-compose.yml 작성docker-compose.yml 파일을 작성하여 Docker Compose 설정을 정의합니다.vim docker-compose.ymlservices: apt-cacher-ng: image: sameersbn/apt-cacher-ng container_name: apt-cacher-ng hostname: apt-cacher-ng restart: unless-stopped volumes: - /usr/sh.. 더보기
C276x260 우분투에 Python 3를 설치하는 방법 우분투에 Python 3를 설치하는 방법일반적으로 우분투에는 Python 3이 이미 설치되어 있습니다. 그러나 최신 버전을 설치하거나 필요에 따라 추가 패키지를 포함하여 설치할 수 있습니다.기본 Python 3 설치 확인일반적으로 우분투에는 Python 3이 기본적으로 설치되어 있습니다.$ python3 --versionPython 3.10.12Python 최신 버전 다운로드https://www.python.orgPython 3 설치Python 3를 설치할 수 있습니다.sudo apt-get updatesudo apt-get install -y python3파이썬 패키지 관리자 pip3 설치Python 패키지를 설치하고 관리하기 위해 pip3를 설치하는 것이 좋습니다.sudo apt-get install.. 더보기
C276x260 [url] 우분투 서버 문서(Ubuntu Server documentation) 우분투 서버 문서(Ubuntu Server documentation)Ubuntu Server documentation : https://ubuntu.com/server/docs 더보기
C276x260 우분투에 CBand 모듈을 설치하고 설정하는 방법 우분투에 CBand 모듈을 설치하고 설정하는 방법 CBand는 아파치 웹 서버의 대역폭 제어 모듈로서 대역폭 사용량 제한, 대역폭 제한 초과 시 처리, 그래프 출력 등의 기능을 제공합니다. 1. Apache 설치 sudo apt-get update sudo apt-get install -y apache2 Apache 버전 확인 $ apache2 -v Server version: Apache/2.4.52 (Ubuntu) Server built: 2023-10-26T13:44:44 Apache 서비스 확인 sudo systemctl status apache2.service 2. CBand 모듈 설치 CBand 모듈을 설치하려면 아래 명령어를 입력합니다. sudo apt-get install libapache.. 더보기
C276x260 리눅스 nload 명령어 사용법 정리 리눅스 nload 명령어 사용법 정리nload는 터미널에서 네트워크 트래픽을 실시간으로 모니터링하는 도구입니다.1. nload 설치Ubuntu 시스템sudo apt-get install nloadCentOS 시스템sudo yum install nload2. nload 명령어의 기본 사용 구문 및 옵션nload [options]$ nload -hnload version 0.7.4Copyright (C) 2001 - 2012 by Roland Riegel nload comes with ABSOLUTELY NO WARRANTY. This is free software, and you arewelcome to redistribute it under certain conditions. For more detail.. 더보기
C276x260 리눅스 bmon 명령어 사용법 정리 리눅스 bmon 명령어 사용법 정리bmon은 터미널에서 네트워크 밴드위스 사용량을 그래픽으로 표시하는 간단한 도구입니다.1. bmon 설치Ubuntu 시스템sudo apt-get install bmonCentOS 시스템sudo yum install bmonbmon versionbmon -V$ bmon -Vbmon 4.0Copyright (C) 2001-2015 by Thomas Graf Copyright (C) 2013 Red Hat, Inc.bmon comes with ABSOLUTELY NO WARRANTY. This is free software, and youare welcome to redistribute it under certain conditions. See the sourcecode fo.. 더보기

728x90
반응형