सर्व ऑपरेटिंग सिस्टीमची यादी करा
VPS सर्वरवर प्रतिष्ठापीत करता येण्याजोगी सर्व उपलब्ध संचालन प्रणालींची यादी प्राप्त करा.
क्वेरी पॅरामीटर्स
| परिमाण |
प्रकार |
आवश्यक |
वर्णन@ title: window |
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"
}
]
}
प्रतिसाद फील्ड
| क्षेत्र |
प्रकार |
वर्णन@ title: window |
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 |
अनधिकृत - अवैध किंवा गहाळ प्रमाणीकरण टोकन |
कार्यप्रणालीची माहिती प्राप्त करा
विशिष्ट कार्यप्रणालीविषयी विस्तृत माहिती प्राप्त करा.
पथ पॅरामीटर्स
| परिमाण |
प्रकार |
आवश्यक |
वर्णन@ title: window |
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 recommends the following operating systems for most use cases:
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
योग्य ऑपरेटिंग सिस्टीम निवडणे
वापरणी नुसार
| वापरा प्रकरण |
शिफारस केलेले ऑपरेटिंग सिस्टम |
कारण |
| 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 - बहुतेक सर्व दस्तऐवजीकरण आणि मार्गदर्शक उपलब्ध आहे
- मध्यवर्ती: डेबियन १२ - स्थिरता व वैशिष्ट्यांचे उत्तम संतुलन
- प्रगत/उद्योजक: रॉकी लिनक्स ९, अल्मा लिनक्स ९ - उद्योजक वैशिष्ट्ये आणि दीर्घकालीन समर्थन
- डेव्हलपर: Fedora 39 - नवीनतम वैशिष्ट्ये व अत्याधुनिक सॉफ्टवेअर
निवडताना मदत हवी आहे का? आमच्या समर्थन गटशी संपर्क करा
hello@vps.org तुमच्या विशिष्ट गरजेनुसार वैयक्तिकृत ऑपरेटिंग सिस्टम सुचने करीता.
प्रतिष्ठापन & संयोजना
OS प्रतिष्ठापन दरम्यान काय घडते
- प्रतिमा निवड: OS नमुना आपल्या रेकॉर्डर पासून निवडले गेले आहे
- डिस्क विभाजन: प्लॅन आकारावर आधारित स्वचलित विभाजन
- आधार संस्थापित करा: कोर OS पॅकेजेस संस्थापित झाले (5-10 मिनिट)
- संजाळ संयोजना: IP पत्ता, DNS, व गेटवे संयोजीत केलेName
- SSH संयोजना: SSH सर्वर पोर्ट 22 वर कार्यान्वीत केले
- रूट प्रवेश: ईमेल द्वारे पाठविलेले रूट गुप्तशब्द
- गडद-इंटी: प्रारंभिक संयोजना लागू केले (समर्थीत असल्यास)
प्रतिष्ठापन नंतरचे टप्पे
- प्रणाली अद्ययावत करा: प्रतिष्ठापन नंतर लगेचच प्रणाली अद्ययावत चालवा
- फायरवाल संयोजीत करा: UFW (उबुन्टू/डेबियन) किंवा फायरवॉलडी (RHEL-आधारित) स्थापित करा
- वापरकर्ता बनवा: sudo प्रवेश सह गैर- रूट वापरकर्ता खाते जोडा
- SSH कि: SSH कि प्रमाणीकरण संयोजीत करा व गुप्तशब्द प्रमाणीकरण अकार्यान्वीत कराName
- सुरक्षा अद्ययावत: स्वयंचलित सुरक्षा अद्ययावत कार्यान्वीत करा
- नियंत्रित करत आहे: नियंत्रक साधन संस्थापित करा (वैकल्पिक)
मुलभूत माहिती
महत्वाचे: सर्वर बनविल्यानंतर लगेचच रूट प्रमाणपत्र तुमच्या नोंदणीकृत ईमेल पत्ता करीता पाठविले जाते. सुरक्षेकरीता प्रथम दाखलनवेळी मुलभूत गुप्तशब्द बदलवा.
समर्थन & दस्तऐवजीकरण
For OS-specific setup guides, visit our दस्तऐवजीकरण केंद्र: