-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'를 입력하면 된다. |