လည်ပတ်မှုစနစ်အားလုံးကို စာရင်းပြုစုပါ
VPS ဆာဗာများပေါ်တွင် install လုပ်နိုင်သည်သောအားလုံးရရှိနိုင်သော operating systems များ၏စာရင်းကိုရယူပါ.
မေးမြန်းချက် ကန့်သတ်ချက်များ
| သတ်မှတ်ချက် |
အမျိုးအစား |
လိုအပ်သည် |
ဖော်ပြချက် |
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 |
ခွင့်ပြုချက်မရှိပါ - အထောက်အထားစိစစ်ခြင်း တိုကင် မမှန်ကန်ပါ သို့မဟုတ် ပျောက်ဆုံးနေပါသည် |
လည်ပတ်မှုစနစ် အသေးစိတ်အချက်အလက်များကိုရယူပါ
တိကျသော operating system အကြောင်း အသေးစိတ်အချက်အလက်များကို ပြန်လည်ရယူပါ
လမ်းကြောင်း ကန့်သတ်ချက်များ
| သတ်မှတ်ချက် |
အမျိုးအစား |
လိုအပ်သည် |
ဖော်ပြချက် |
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 အများစုအသုံးပြုမှုအတွက်အောက်ပါ operating systems ကိုအကြံပြု:
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 |
အတွေ့အကြုံအဆင့်
- အစပြုသူများအတွက် Ubuntu 22.04 LTS - အများစုမှာစာရွက်စာတမ်းများနှင့်သင်ခန်းစာများရရှိနိုင်
- အလယ်အလတ်: Debian 12 - တည်ငြိမ်မှုနှင့်အင်္ဂါရပ်များကြီးမားသောဟန်ချက်
- အဆင့်မြင့်/Enterprise: Rocky Linux 9, AlmaLinux 9- လုပ်ငန်းအင်္ဂါရပ်များနှင့်ရှည်လျားသောထောက်ခံမှု
- ဖန်တီးသူများ: Fedora 39 - နောက်ဆုံးပေါ် features များနှင့် cutting-edge software
ရွေးချယ်ရာတွင် အကူအညီလိုပါသလား။ တွင်ကျွန်တော်တို့ရဲ့ထောက်ခံမှုအဖွဲ့ကိုဆက်သွယ်ပါ
hello@vps.org သင့်ရဲ့တိကျတဲ့လိုအပ်ချက်များကိုအခြေခံပြီးကိုယ်ပိုင် OS ကိုအကြံပြုချက်များများအတွက်.
သွင်းခြင်းနှင့် တည်ဆောက်ခြင်း
OS ထည့်သွင်းစဉ်အတွင်း ဖြစ်ပျက်သည်
- ရုပ်ပုံ ရွေးချယ်ချက်: OS template ကိုကျွန်တော်တို့ရဲ့ repository မှရွေးချယ်ထားသည်
- ခွေခွဲခြင်း စီမံကိန်းအရွယ်အစားပေါ်မူတည်ပြီးအလိုအလျောက်ခွဲခြမ်းစိတ်ဖြာခြင်း
- အခြေခံ သွင်းပါ: Core OS packages များ ထည့်သွင်းထားခြင်း (5-10 မိနစ်)
- ကွန်ရက် တည်ဆောက်မှု IP လိပ်စာ, DNS, နှင့် gateway ကို configuration
- SSH တည်ဆောက်မှု SSH ဆာဗာကို ဆိပ်ကမ်း ၂၂ တွင် ခွင့်ပြုထားသည်
- root ဝင်ရောက်ခွင့် root စကားဝှက်ကို အီးမေးလ်ဖြင့်ပို့သည်
- Cloud-Init: အစပိုင်း ပြုပြင်ထိန်းသိမ်းမှု အသုံးပြုခြင်း (ထောက်ခံပါက)
သွင်းပြီးသည့်နောက် အဆင့်များ
- စနစ်ကို ပြန်လည်ဆန်းစစ်ခြင်း စက်ထဲသို့ သွင်းပြီးသည်နှင့်အမျှ စနစ်အသစ်များကို ချက်ချင်း လုပ်ဆောင်ပါ
- Firewall ကို ချိန်ညှိပါ UFW (Ubuntu / Debian) သို့မဟုတ် firewalld (RHEL-based) ကို set up လုပ်ပါ
- သုံးစွဲသူများကိုဖန်တီးပါ sudo အသုံးပြုခွင့်ဖြင့် root မဟုတ်သောအသုံးပြုသူအကောင့်များထည့်ပါ
- SSH ကီးများ SSH ကီးအတည်ပြုခြင်းကို ချိန်ညှိပြီး စကားဝှက်အတည်ပြုခြင်းကို ပိတ်ပါ
- လုံခြုံရေး Updates: အလိုအလျောက်လုံခြုံရေးအသစ်တင်ခြင်းကို ခွင့်ပြုပါ
- စောင့်ကြည့်ခြင်း - စောင့်ကြည့်ရေးကိရိယာများ Install (ရွေးချယ်စရာ)
မူလအတည်ပြုချက်
အရေးကြီးသည်- root credentials ကို server ကိုဖန်တီးပြီးနောက်သင့်ရဲ့မှတ်ပုံတင်အီးမေးလ်လိပ်စာသို့ချက်ချင်းပို့ပေးကြသည်. လုံခြုံရေးအတွက်ပထမဦးဆုံး login အပေါ် default password ကိုပြောင်းလဲ.
ထောက်ပံ့မှုနှင့် စာရွက်စာတမ်းများ
OS ကို-တိကျတဲ့ setup ကိုလမ်းညွှန်များအတွက်, ကျွန်တော်တို့ရဲ့သွားရောက်ကြည့်ရှု စာရွက်စာတမ်းများ: