Skip to content

Commit

Permalink
new post: Proxmox 설치 후 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
GGos3 committed Aug 11, 2024
1 parent 0fba669 commit 56dfdc7
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions content/blog/Proxmox-설치-후-설정/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
title: "Proxmox VE 설치 후 설정"
date: 2023-03-11
tags: [Server, Linux, Proxmox]
---

Proxmox VE를 설치한 후, 기본적인 설정을 진행해보자.

## Proxmox 설치 후

Proxmox VE를 설치하고 나면 꼭 해야 할 설정들이 있다.

### 필수 설정

- `Enterprise Repo` 비활성화
- `PVE Source` 추가
- `Test Repo` 추가
- `No-Subscription` 메시지 제거
- `Proxmox Update` 확인 및 적용

이 작업들은 몇 번은 직접 할 수 있지만, 반복되면 귀찮아진다.

다행히, 이 작업들을 간편하게 해결할 수 있는 스크립트가 있다.

## tteck/Proxmox

[tteck.github.io](https://tteck.github.io/Proxmox)에서는 Proxmox를 위한 여러 스크립트를 제공한다. 이 스크립트들은 Proxmox VE Shell에서 사용 가능하다.

그 중에서도 `Proxmox VE Post Install` 스크립트를 사용하면, 앞서 언급한 필수 설정들을 한 번에 해결할 수 있다.

### Proxmox VE Post Install 스크립트 실행

```bash
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/post-pve-install.sh)"
```

위 명령어를 실행하면 Proxmox VE Post Install 스크립트가 실행되어 필요한 설정들을 자동으로 처리해준다.

스크립트 내용에는 문제될 것이 없으니, 모든 항목에 'y'를 입력하면 된다.

0 comments on commit 56dfdc7

Please sign in to comment.