모든 운영 체제 목록을 나열하세요
VPS 서버에 설치할 수 있는 모든 사용 가능한 운영 체제 목록을 검색합니다.
쿼리 매개변수
| 파라미터 |
유형 |
필수의 |
설명 |
os_type |
string |
아니요 |
Filter by OS type: linux, windows |
featured |
boolean |
아니요 |
Show only featured operating systems |
예시 요청
cURL
Python
JavaScript
PHP
curl -X GET "https://admin.vps.org/api/v1/operating-systems/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
import requests
url = "https://admin.vps.org/api/v1/operating-systems/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch('https://admin.vps.org/api/v1/operating-systems/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const os = await response.json();
console.log(os);
$ch = curl_init('https://admin.vps.org/api/v1/operating-systems/');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer YOUR_API_TOKEN',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$operating_systems = json_decode($response, true);
curl_close($ch);
예시 답변
{
"count": 12,
"results": [
{
"id": 1,
"name": "Ubuntu 22.04 LTS",
"slug": "ubuntu-22-04",
"version": "22.04",
"os_type": "linux",
"distribution": "Ubuntu",
"architecture": "x86_64",
"featured": true,
"available": true,
"min_disk_gb": 10,
"description": "Ubuntu 22.04 LTS (Jammy Jellyfish) - Long Term Support until 2027",
"icon_url": "https://cdn.vps.org/os-icons/ubuntu.svg"
},
{
"id": 2,
"name": "Debian 12",
"slug": "debian-12",
"version": "12",
"os_type": "linux",
"distribution": "Debian",
"architecture": "x86_64",
"featured": true,
"available": true,
"min_disk_gb": 10,
"description": "Debian 12 (Bookworm) - Stable release",
"icon_url": "https://cdn.vps.org/os-icons/debian.svg"
},
{
"id": 3,
"name": "CentOS Stream 9",
"slug": "centos-stream-9",
"version": "9",
"os_type": "linux",
"distribution": "CentOS",
"architecture": "x86_64",
"featured": false,
"available": true,
"min_disk_gb": 10,
"description": "CentOS Stream 9 - Rolling release tracking RHEL development",
"icon_url": "https://cdn.vps.org/os-icons/centos.svg"
},
{
"id": 4,
"name": "Fedora 39",
"slug": "fedora-39",
"version": "39",
"os_type": "linux",
"distribution": "Fedora",
"architecture": "x86_64",
"featured": false,
"available": true,
"min_disk_gb": 15,
"description": "Fedora 39 - Cutting-edge Linux distribution",
"icon_url": "https://cdn.vps.org/os-icons/fedora.svg"
},
{
"id": 5,
"name": "Rocky Linux 9",
"slug": "rocky-linux-9",
"version": "9",
"os_type": "linux",
"distribution": "Rocky Linux",
"architecture": "x86_64",
"featured": true,
"available": true,
"min_disk_gb": 10,
"description": "Rocky Linux 9 - Enterprise-grade Linux, RHEL compatible",
"icon_url": "https://cdn.vps.org/os-icons/rocky.svg"
}
]
}
응답 필드
| 필드 |
유형 |
설명 |
id |
integer |
Unique operating system identifier |
name |
string |
Full operating system name with version |
slug |
string |
URL-friendly OS identifier |
version |
string |
OS version number |
os_type |
string |
Operating system type: linux or windows |
distribution |
string |
Distribution name (Ubuntu, Debian, CentOS, etc.) |
architecture |
string |
CPU architecture (x86_64, arm64, etc.) |
featured |
boolean |
Whether OS is featured/recommended |
available |
boolean |
Whether OS is currently available for installation |
min_disk_gb |
integer |
Minimum disk space required in gigabytes |
description |
string |
Brief description of the operating system |
icon_url |
string |
URL to OS icon/logo image |
응답 상태 코드
| 200 |
운영 체제 목록을 성공적으로 가져왔습니다. |
| 401 |
권한 없음 - 인증 토큰이 유효하지 않거나 누락되었습니다. |
운영 체제 세부 정보 가져오기
특정 운영 체제에 대한 자세한 정보를 검색합니다.
경로 매개변수
| 파라미터 |
유형 |
필수의 |
설명 |
os_id |
integer |
예 |
Unique operating system ID |
예시 요청
curl -X GET "https://admin.vps.org/api/v1/operating-systems/1/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
import requests
os_id = 1
url = f"https://admin.vps.org/api/v1/operating-systems/{os_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
const osId = 1;
const response = await fetch(`https://admin.vps.org/api/v1/operating-systems/${osId}/`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const os = await response.json();
console.log(os);
예시 답변
{
"id": 1,
"name": "Ubuntu 22.04 LTS",
"slug": "ubuntu-22-04",
"version": "22.04",
"os_type": "linux",
"distribution": "Ubuntu",
"architecture": "x86_64",
"featured": true,
"available": true,
"min_disk_gb": 10,
"description": "Ubuntu 22.04 LTS (Jammy Jellyfish) - Long Term Support until 2027",
"icon_url": "https://cdn.vps.org/os-icons/ubuntu.svg",
"release_date": "2022-04-21",
"support_end_date": "2027-04-21",
"default_user": "root",
"package_manager": "apt",
"init_system": "systemd",
"kernel_version": "5.15",
"features": [
"Long Term Support (LTS) until 2027",
"5 years of free security updates",
"Extended Security Maintenance available",
"Large community support",
"Extensive package repository",
"Cloud-optimized kernel",
"Regular point releases"
],
"recommended_for": [
"Web servers (Apache, Nginx)",
"Application servers",
"Database servers (MySQL, PostgreSQL)",
"Docker containers",
"Kubernetes nodes",
"Development environments",
"Production workloads"
],
"installation_notes": [
"Requires minimum 10GB disk space",
"SSH enabled by default on port 22",
"UFW firewall available but not enabled by default",
"Automatic security updates can be configured",
"Cloud-init supported for automated setup"
]
}
응답 상태 코드
| 200 |
Successfully retrieved operating system details |
| 401 |
권한 없음 - 인증 토큰이 유효하지 않거나 누락되었습니다. |
| 404 |
Not Found - Operating system does not exist |
Featured Operating Systems
VPS.org은 대부분의 사용 사례에 대해 다음과 같은 운영 체제를 권장합니다.
Ubuntu 22.04 LTS
- Best for: General purpose servers, web hosting
- Support: Until April 2027
- Package Manager: APT
- Why choose: Most popular, extensive documentation, large community
Debian 12
- Best for: Stability-focused production servers
- Support: ~5 years
- Package Manager: APT
- Why choose: Rock-solid stability, security-focused
Rocky Linux 9
- Best for: Enterprise applications, RHEL workloads
- Support: ~10 years
- Package Manager: DNF/YUM
- Why choose: RHEL compatible, enterprise-grade
AlmaLinux 9
- Best for: Enterprise servers, cPanel hosting
- Support: ~10 years
- Package Manager: DNF/YUM
- Why choose: RHEL compatible, backed by CloudLinux
올바른 OS 선택
사용 사례별
| 사용 사례 |
권장 OS |
이유 |
| Web Hosting |
Ubuntu 22.04 LTS, Debian 12 |
Excellent LAMP/LEMP stack support, large community |
| Docker/Containers |
Ubuntu 22.04 LTS, Debian 12 |
Native Docker support, optimized kernels |
| Enterprise Apps |
Rocky Linux 9, AlmaLinux 9 |
RHEL compatibility, long support cycles |
| Development |
Ubuntu 22.04 LTS, Fedora 39 |
Latest packages, developer-friendly tools |
| Database Servers |
Debian 12, Rocky Linux 9 |
Stability, performance, long-term support |
| cPanel Hosting |
AlmaLinux 9, Rocky Linux 9 |
Official cPanel support |
경험 수준별
- 초보자: 우분투 22.04 LTS - 대부분의 문서 및 튜토리얼을 사용할 수
- 중간: 데비안 12 - 안정성과 기능의 균형
- 고급/엔터프라이즈: Rocky Linux 9, AlmaLinux 9 - 엔터프라이즈 기능과 장기 지원
- 개발자: Fedora 39 - 최신 기능과 최첨단 소프트웨어
선택에 도움이 필요하십니까? 저희 지원팀에 문의하십시오.
hello@vps.org 특정 요구 사항에 기반한 개인화된 OS 권장 사항을 제공합니다.
설치 & 설정
OS 설치 중에 무슨 일이 일어나는지
- 이미지 선택: OS 템플릿은 저장소에서 선택됩니다.
- 디스크 파티션: 플랜 크기에 기반한 자동 분할
- 기본 설치: 코어 OS 패키지가 설치됩니다 (5-10분)
- 네트워크 설정: IP 주소, DNS 및 게이트웨이 구성
- SSH 설정: 포트 22에서 SSH 서버 사용 가능
- 루트 접근: 루트 비밀번호를 이메일로 보내드립니다
- 클라우드 시작: 적용된 초기 구성(지원되는 경우)
설치 후 단계
- 시스템 업데이트: 설치 후 즉시 시스템 업데이트 실행
- 방화벽 설정: UFW(우분투/데비안) 또는 firewalld(RHEL 기반) 설정
- 사용자 만들기: sudo 액세스로 비루트 사용자 계정 추가
- SSH 키: SSH 키 인증 설정 및 암호 인증 비활성화
- 보안 업데이트: 자동 보안 업데이트 사용
- 모니터링: 모니터링 도구 설치(선택 사항)
기본 자격 증명
중요: 루트 자격 증명은 서버 생성 후 등록된 이메일 주소로 즉시 전송됩니다. 보안을 위해 처음 로그인 시 기본 암호를 변경하십시오.
지원 & 문서
OS별 설치 가이드는 다음을 방문하십시오. 문서 센터: