You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
86 lines
4.0 KiB
HTML
86 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-hans">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<title>特性 | KernelSU Next</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="icon" href="../assets/icons/ksu-next-tab.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<link rel="stylesheet" href="../assets/css/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-md sticky-top py-3">
|
|
<div class="container">
|
|
<a class="navbar-brand d-flex align-items-center" href="../zh">
|
|
<span>KernelSU Next</span>
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link text-light" href="../">主页</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link text-light" href="#installation">安装</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="https://github.com/rifsxd/KernelSU-Next/zh" target="_blank">
|
|
<i class="fab fa-github fa-lg"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Header -->
|
|
<header>
|
|
<div class="container text-center">
|
|
<h1 class="fw-bold">轻松集成</h1>
|
|
<p class="lead">复制、粘贴并运行!轻松集成的 CLI 命令。</p>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Installation Section -->
|
|
<section id="installation" class="py-5">
|
|
<div class="container">
|
|
<h2 class="text-center mb-4">安装</h2>
|
|
<p class="text-center">在内核源代码目录的根目录下运行以下命令以获取不同的安装选项。</p>
|
|
<h3 class="mt-4">最新发行版本</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
<h3 class="mt-4">Next 分支(开发版本)</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s next</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
<h3 class="mt-4">指定版本标签</h3>
|
|
<div class="highlight mt-3">
|
|
<code>curl -LSs "https://raw.githubusercontent.com/rifsxd/KernelSU-Next/next/kernel/setup.sh" | bash -s v1.0.3</code>
|
|
<button class="btn btn-copy mt-2" onclick="copyToClipboard(this)">复制</button>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p>© 2025 KernelSU Next 团队。保留所有权利。在 <a href="https://github.com/rifsxd/KernelSU-Next" target="_blank">GitHub</a>上查看源代码</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="../assets/js/copy.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|