සියලුම මෙහෙයුම් පද්ධති ලැයිස්තුගත කරන්න
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
දකුණු මෙහෙයුම් පද්ධතිය තෝරා ගැනීම
භාවිතය අනුව
| භාවිතය |
නිර්දේශිත මෙහෙයුම් පද්ධතිය |
හේතුව |
| 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 - ස්ථාවරත්වය සහ විශේෂාංග විශාල සමතුලිතතාවයක්
- උසස්/ව්යවසාය: රොකී ලිනක්ස්9, AlmaLinux9- ව්යවසාය විශේෂාංග සහ දිගු සහාය
- සංවර්ධකයින්: Fedora 39 - නවතම විශේෂාංග සහ නවීන මෘදුකාංග
තෝරන්න උදව් ඕනද? අපගේ සහාය කණ්ඩායම අමතන්න
hello@vps.org ඔබේ විශේෂ අවශ්යතා මත පදනම්ව පෞද්ගලික OS නිර්දේශ සඳහා.
ස්ථාපනය සහ සැකසීම
මෙහෙයුම් පද්ධතිය ස්ථාපනය කිරීමේදී සිදුවන දේ
- පිළිඹිබු තෝරාගැනීම: OS ආකෘතිය අපගේ කෞතුකාගාරයෙන් තෝරාගනු ලැබේ
- තැටි කොටස් කිරීම: සැලැස්ම ප්රමාණයට අනුව ස්වයංක්රීයව බෙදාහැරීම
- මූලික ස්ථාපනය: Core OS පැකේජ ස්ථාපනය කර ඇත (5-10 විනාඩි)
- ජාල සැකසුම්: IP ලිපිනය, DNS, හා ගේට්වේ සකසා ඇතName
- SSH ස්ථාපනය: 22 පෝර්ට් හි SSH ධාරකය සක්රීයයි
- root පිවිසුම: විද්යුත් තැපෑලෙන් යවන ලද root මුරපදය
- වලාකුළ-අරඹය: ආරම්භක සැකසුම භාවිතයට ගෙන ඇත (සහය දක්වයි නම්)
ස්ථාපනයට පසු පියවර
- පද්ධතිය යාවත්කාලීන කරන්න: ස්ථාපනය කිරීමෙන් පසු වහාම පද්ධති යාවත්කාලීන ක්රියාත්මක කරන්න
- ග්නූ/ ලිනක්ස් ස්ථාපනය UFW (උබුන්ටු / ඩෙබියන්) හෝ ෆයර්වෝල්ඩ් (RHEL-පාදක) සකසන්න
- පරිශීලකයන් නිර්මාණය කරන්න: sudo පිවිසුම සහිත root නොවන පරිශීලක ගිණුම් එක් කරන්න
- SSH යතුරු: SSH යතුරු සහතික කිරීම සහ මුරපද සහතික කිරීම අක්රීය කරන්නName
- ආරක්ෂක යාවත්කාලීන: ස්වයංක්රීය ආරක්ෂක යාවත්කාලීන සක්රීය කරන්න
- අධීක්ෂණය: අධීක්ෂණ මෙවලම් ස්ථාපනය කරන්න (විකල්ප)
පෙරනිමි සහතික කිරීම්
වැදගත්: රූට් සහතිකය ඔබේ ලියාපදිංචි ඊ-තැපැල් ලිපිනයට සර්වරය නිර්මාණය කිරීමෙන් පසු වහාම යවනු ලැබේ. ආරක්ෂාව සඳහා පළමු පිවිසීමේදී පෙරනිමි මුරපදය වෙනස් කරන්න.
සහාය සහ ලේඛන
මෙහෙයුම් පද්ධතිය-විශේෂිත ස්ථාපනය මාර්ගෝපදේශ සඳහා, අපගේ ලේඛන මධ්යස්ථානය: