
apt update ## 아래와 같이 업데이트 시 에러발생 ## vi /etc/apt/sources.list.d/pve-enterprise.list ## proxmox 8버전 기준 아래와 같이 변경 ## #deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription vi /etc/apt/sources.list.d/ceph.list ## proxmox 8버전 기준 아래와 같이 변경 ## #deb https://enterprise.proxmox.com/debian/ceph-quincy bookworm enterpris..
![[proxmox]LXC create](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FEg5ZS%2FbtsGuOjN2jk%2FkJ2Y5TRKUZvo5KOuoRyXdK%2Fimg.png)
업데이트root@pve:~# pveam update update successful 다운로드 가능한 리눅스 컨테이너 리스트root@pve:~# pveam available mail proxmox-mail-gateway-8.1-standard_8.1-1_amd64.tar.zst mail proxmox-mailgateway-7.3-standard_7.3-1_amd64.tar.zst mail proxmox-mailgateway-8.0-standard_8.0-1_amd64.tar.zst system almalinux-9-default_20221108_amd64.tar.xz system alpine-3.18-default_20230607_amd64.tar.xz system alpine-3.19-default_20..

version: "3"services: windows: image: hectorm/qemu-win2000 container_name: qemu-win2000 devices: - /dev/kvm ports: - 3389:3389/tcp - 5900:5900/tcp - 6080:6080/tcp https://github.com/hectorm/docker-qemu-win2000 GitHub - hectorm/docker-qemu-win2000: A Docker image for Windows 2000 Advanced Server with SP4.A Docker image for Windows 2000 Advanced Server with SP4. - ..

https://nginxproxymanager.com/ Nginx Proxy Manager Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt nginxproxymanager.com 시놀로지 vmm에 설치 version: '3' services: app: image: 'jc21/nginx-proxy-manager:latest' ports: - '80:80' - '81:81' - '443:443' environment: DB_MYSQL_HOST: "db" DB_MYSQL_PORT:..

import smtplib import imaplib import email import time from email.utils import make_msgid from email.mime.text import MIMEText # SMTP 서버 설정 smtp_server = 'SMTP서버' smtp_port = 465 smtp_username = '사용자ID' smtp_password = '비밀번호' # IMAP 서버 설정 imap_server = 'IMAP서버' imap_port = 993 imap_username = '사용자ID' imap_password = '비밀번호' # 이메일 발신자, 수신자, 제목 및 내용 설정 from_email = '발신자 메일주소' to_email = '수신자 메일주소' ..