-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.html
More file actions
37 lines (35 loc) · 1.22 KB
/
Copy pathcompile.html
File metadata and controls
37 lines (35 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tree10 컴파일 가이드</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Tree10 컴파일 가이드</h1>
<nav>
<ul>
<li><a href="index.html">홈</a></li>
<li><a href="features.html">기능 설명</a></li>
<li><a href="compile.html">컴파일 가이드</a></li>
<li><a href="apps.html">기본 앱 소개</a></li>
</ul>
</nav>
</header>
<section id="compile-instructions">
<h2>Tree10 컴파일 단계</h2>
<ol>
<li>NASM 설치: <code>sudo apt-get install nasm</code></li>
<li>GCC 설치: <code>sudo apt-get install gcc</code></li>
<li>컴파일 명령어 실행: <code>make</code></li>
<li>QEMU에서 Tree10 실행: <code>qemu-system-i386 -fda os-image</code></li>
</ol>
<p>이 단계를 따라 Tree10을 쉽게 컴파일하고 실행할 수 있습니다.</p>
</section>
<footer>
<p>© 2024 Tree10 프로젝트</p>
</footer>
</body>
</html>