2023-04-03 19:08:28 +02:00
<!doctype html>
<!--
Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose
Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
Free for personal and commercial use under the MIT license
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
-->
< html lang = "en" class = "no-js" >
< head >
< meta charset = "utf-8" >
<!-- begin _includes/seo.html --> < title > A9LH를 B9S로 업데이트 - 3DS Hacks Guide< / title >
< meta name = "description" content = "A complete guide to 3DS custom firmware" >
< meta name = "author" content = "Nintendo Homebrew" >
< meta property = "og:type" content = "website" >
< meta property = "og:locale" content = "en_US" >
< meta property = "og:site_name" content = "3DS Hacks Guide" >
< meta property = "og:title" content = "A9LH를 B9S로 업데이트" >
< meta property = "og:url" content = "https://3ds.hacks.guide/ko_KR/a9lh-to-b9s.html" >
< meta property = "og:description" content = "A complete guide to 3DS custom firmware" >
< link rel = "canonical" href = "https://3ds.hacks.guide/ko_KR/a9lh-to-b9s.html" >
< script type = "application/ld+json" >
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Nintendo Homebrew",
"url": "https://3ds.hacks.guide/"
}
< / script >
< meta name = "google-site-verification" content = "jVXoPK_-qzKJp4SScnZYpOIX3yDXfGnAoTBJYixUOwg" / >
< meta name = "msvalidate.01" content = "F3532011519E308583A0A2CAF2DD69E8" >
<!-- end _includes/seo.html -->
<!-- https://t.co/dKP3o1e -->
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< script >
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
< / script >
<!-- For all browsers -->
< link rel = "stylesheet" href = "/assets/css/main.css" >
< link rel = "preload" href = "https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css" as = "style" onload = "this.onload=null;this.rel='stylesheet'" >
< noscript > < link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css" > < / noscript >
<!-- start custom head snippets -->
2023-09-30 18:54:58 +02:00
2024-01-16 21:33:13 +01:00
<!-- insert favicons. use https://realfavicongenerator.net/ -->
2023-04-03 19:08:28 +02:00
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: cookie consent, favicon, locales -->
2024-01-16 21:33:13 +01:00
< link rel = "apple-touch-icon" sizes = "180x180" href = "/images/site-config/apple-touch-icon.png?v=PYEmwKvQAx" >
< link rel = "icon" type = "image/png" href = "/images/site-config/favicon-16x16.png?v=PYEmwKvQAx" sizes = "16x16" >
< link rel = "icon" type = "image/png" href = "/images/site-config/favicon-32x32.png?v=PYEmwKvQAx" sizes = "32x32" >
< link rel = "icon" type = "image/png" href = "/images/site-config/favicon-194x194.png?v=PYEmwKvQAx" sizes = "194x194" >
< link rel = "icon" type = "image/png" href = "/images/site-config/android-chrome-192x192.png?v=PYEmwKvQAx" sizes = "192x192" >
< link rel = "manifest" href = "/images/site-config/manifest.json?v=PYEmwKvQAx" >
< link rel = "mask-icon" href = "/images/site-config/safari-pinned-tab.svg?v=PYEmwKvQAx" color = "#2E3440" >
< link rel = "shortcut icon" href = "/images/site-config/favicon.ico?v=PYEmwKvQAx" >
2023-04-03 19:08:28 +02:00
< meta name = "apple-mobile-web-app-title" content = "Guide" >
< meta name = "application-name" content = "Guide" >
< meta name = "msapplication-TileColor" content = "#2E3440" >
2024-01-16 21:33:13 +01:00
< meta name = "msapplication-TileImage" content = "/images/site-config/mstile-144x144.png?v=PYEmwKvQAx" >
< meta name = "msapplication-config" content = "/assets/xml/browserconfig.xml?v=PYEmwKvQAx" >
2023-04-03 19:08:28 +02:00
< meta name = "theme-color" content = "#2E3440" >
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.1/cookieconsent.min.css" integrity = "sha512-LQ97camar/lOliT/MqjcQs5kWgy6Qz/cCRzzRzUCfv0fotsCTC9ZHXaPQmJV8Xu/PVALfJZ7BDezl5lW3/qBxg==" crossorigin = "anonymous" referrerpolicy = "no-referrer" / >
< script src = "https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.1/cookieconsent.min.js" integrity = "sha512-yXXqOFjdjHNH1GND+1EO0jbvvebABpzGKD66djnUfiKlYME5HGMUJHoCaeE4D5PTG2YsSJf6dwqyUUvQvS0vaA==" crossorigin = "anonymous" referrerpolicy = "no-referrer" > < / script >
< script >
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
2024-01-16 21:33:13 +01:00
"background": "#2e3440"
2023-04-03 19:08:28 +02:00
},
"button": {
"background": "#60818f"
}
},
"theme": "edgeless",
"position": "top",
"static": true,
"content": {
"message": "이 사이트는 현재 진행상황을 표시하고 사용자 경험을 향상시키기 위해 쿠키를 사용합니다."
}
})});
< / script >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
<!-- end custom head snippets -->
2023-09-30 18:54:58 +02:00
2023-04-03 19:08:28 +02:00
< / head >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: Disable caching -->
2023-04-03 19:08:28 +02:00
< body class = "layout--single" >
< nav class = "skip-links" >
< ul >
< li > < a href = "#site-nav" class = "screen-reader-shortcut" > Skip to primary navigation< / a > < / li >
< li > < a href = "#main" class = "screen-reader-shortcut" > Skip to content< / a > < / li >
< li > < a href = "#footer" class = "screen-reader-shortcut" > Skip to footer< / a > < / li >
< / ul >
< / nav >
<!-- [if lt IE 9]>
< div class = "notice--danger align-center" style = "margin: 0;" > You are using an < strong > outdated< / strong > browser. Please < a href = "https://browsehappy.com/" > upgrade your browser< / a > to improve your experience.< / div >
<![endif]-->
< div class = "masthead" >
< div class = "masthead__inner-wrap" >
< div class = "masthead__menu" >
< nav id = "site-nav" class = "greedy-nav" >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: disable default masthead title -->
<!--
< a class = "site-title" href = "/" >
2023-04-03 19:08:28 +02:00
3DS Hacks Guide
< / a >
-->
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< ul class = "visible-links" >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: multi - language configuration -->
2023-04-03 19:08:28 +02:00
< li class = "masthead__menu-item masthead__menu-item--lg" > < a href = "/ko_KR/" > 홈< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/faq" > 자주 묻는 질문< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/troubleshooting" > 문제 해결< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/checking-for-cfw" > CFW 확인< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/godmode9-usage" > GodMode9 사용법< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/contribute" > 기여하기< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/region-changing" > 지역 변경< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/uninstall-cfw" > CFW 제거하기< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/credits" > 기여자< / a > < / li >
< li class = "masthead__menu-item" > < a href = "/ko_KR/site-navigation" > 사이트 탐색< / a > < / li >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< / ul >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: Add language selector -->
2023-04-03 19:08:28 +02:00
< ul class = "hidden-links links-menu hidden" > < / ul >
< ul class = "hidden-links lang-menu hidden" >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/a9lh-to-b9s.html" > English< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/es_ES/a9lh-to-b9s.html" > Español< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/de_DE/a9lh-to-b9s.html" > Deutsch< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/fr_FR/a9lh-to-b9s.html" > Français< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/it_IT/a9lh-to-b9s.html" > Italiano< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/nl_NL/a9lh-to-b9s.html" > Nederlands< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/pt_BR/a9lh-to-b9s.html" > Português do Brasil< / a > < / li >
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/pt_PT/a9lh - to - b9s.html">Português (Portugal)</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ru_RU/a9lh - to - b9s.html">Русский</a></li> -->
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/zh_CN/a9lh-to-b9s.html" > 简体中文< / a > < / li >
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/zh_TW/a9lh-to-b9s.html" > 繁體中文< / a > < / li >
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/pl_PL/a9lh - to - b9s.html">Polski</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/tr_TR/a9lh - to - b9s.html">Türkçe</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/vi_VN/a9lh - to - b9s.html">Tiếng Việt</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ca_ES/a9lh - to - b9s.html">Català</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/el_GR/a9lh - to - b9s.html">Ελληνικά</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/he_IL/a9lh - to - b9s.html">עברית</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/sv_SE/a9lh - to - b9s.html">Svenska</a></li> -->
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/ko_KR/a9lh-to-b9s.html" > 한국어< / a > < / li >
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/no_NO/a9lh - to - b9s.html">Norsk</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ja_JP/a9lh - to - b9s.html">日本語</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ar_SA/a9lh - to - b9s.html">اللغة العربية</a></li> -->
< li class = "masthead__menu-item" > < a href = "https://3ds.hacks.guide/hu_HU/a9lh-to-b9s.html" > Magyar< / a > < / li >
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ro_RO/a9lh - to - b9s.html">Română</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/sr_SP/a9lh - to - b9s.html">Српски</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/af_ZA/a9lh - to - b9s.html">Afrikaans</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/ms_MY/a9lh - to - b9s.html">Bahasa Melayu</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/fi_FI/a9lh - to - b9s.html">Suomi</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/da_DK/a9lh - to - b9s.html">Dansk</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/uk_UA/a9lh - to - b9s.html">Українська</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/cs_CZ/a9lh - to - b9s.html">Čeština</a></li> -->
<!-- <li class="masthead__menu - item"><a href="https://3ds.hacks.guide/en_PT/a9lh - to - b9s.html">Pirate English</a></li> -->
< / ul >
< button class = "greedy-nav__toggle hidden" type = "button" >
2024-01-16 21:33:13 +01:00
< span class = "visually-hidden" > Toggle menu< / span >
2023-04-03 19:08:28 +02:00
< div class = "navicon" > < / div >
< / button >
< button class = "greedy-nav__toggle_lang" > < div class = "langicon" > < i class = "fa fa-language fa-lg" aria-hidden = "true" > < / i > < / div > < / button >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< / nav >
< / div >
< / div >
< / div >
< div class = "initial-content" >
< div id = "main" role = "main" >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: Implement progress table, replace existing sidebar -->
<!--
2023-04-03 19:08:28 +02:00
< div class = "sidebar sticky" >
< / div >
-->
< div class = "sidebar sticky" style = "display: none;" >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: Refactor entire subsection to allow using translations -->
2023-04-03 19:08:28 +02:00
< nav class = "nav__list" >
< input id = "ac-toc" name = "accordion-toc" type = "checkbox" / >
2024-01-16 21:33:13 +01:00
< label for = "ac-toc" > Toggle menu< / label >
2023-04-03 19:08:28 +02:00
< ul class = "nav__items" >
< li >
< span class = "nav__sub-title" > 전체 진행 상황< / span >
< ol >
< li style = "display: none;" data-name = "home" > < a href = '/ko_KR/' > 홈< / a > < / li >
< li style = "display: none;" data-name = "key-information" > < a href = '/ko_KR/key-information' > 주요 내용< / a > < / li >
< li style = "display: none;" data-name = "get-started" > < a href = '/ko_KR/get-started' > 시작하기< / a > < / li >
2023-11-25 23:53:57 +01:00
< li style = "display: none;" data-name = "ntrboot" > < a href = '/ko_KR/ntrboot' > ntrboot< / a > < / li >
2023-04-03 19:08:28 +02:00
2024-02-06 16:42:05 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(mset9)" > < a href = '/ko_KR/installing-boot9strap-(mset9)' > Installing boot9strap (MSET9)< / a > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(mset9-cli)" > < a href = '/ko_KR/installing-boot9strap-(mset9-cli)' > boot9strap 설치 (MSET9 CLI)< / a > < / li >
2023-12-03 13:42:20 +01:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(mset9-play-store)" > < a href = '/ko_KR/installing-boot9strap-(mset9-play-store)' > boot9strap 설치 (MSET9 Play Store)< / a > < / li >
2023-12-03 13:42:20 +01:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "multiple-options" > < i > (다중 옵션)< / i > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "flashing-ntrboot-(3ds-single-system)" > < a href = '/ko_KR/flashing-ntrboot-(3ds-single-system)' > ntrboot 플래싱 (단일 3DS)< / a > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "flashing-ntrboot-(3ds-multi-system)" > < a href = '/ko_KR/flashing-ntrboot-(3ds-multi-system)' > ntrboot 플래싱 (3DS 두 대)< / a > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "flashing-ntrboot-(dsi)" > < a href = '/ko_KR/flashing-ntrboot-(dsi)' > ntrboot 플래싱 (DSi)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "flashing-ntrboot-(nds)" > < a href = '/ko_KR/flashing-ntrboot-(nds)' > ntrboot 플래싱 (NDS)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(hardmod)" > < a href = '/ko_KR/installing-boot9strap-(hardmod)' > boot9strap 설치 (하드모드)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(ntrboot)" > < a href = '/ko_KR/installing-boot9strap-(ntrboot)' > boot9strap 설치 (ntrboot)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(soundhax)" > < a href = '/ko_KR/installing-boot9strap-(soundhax)' > boot9strap 설치 (Soundhax)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(safecerthax)" > < a href = '/ko_KR/installing-boot9strap-(safecerthax)' > boot9strap 설치 (safecerthax)< / a > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(ssloth-browser)" > < a href = '/ko_KR/installing-boot9strap-(ssloth-browser)' > boot9strap 설치 (SSLoth-Browser)< / a > < / li >
2023-04-03 19:08:28 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "installing-boot9strap-(super-skaterhax)" > < a href = '/ko_KR/installing-boot9strap-(super-skaterhax)' > boot9strap 설치 (super-skaterhax)< / a > < / li >
2023-05-27 04:01:12 +02:00
2023-12-24 15:55:48 +01:00
< li style = "display: none;" data-name = "finalizing-setup" > < a href = '/ko_KR/finalizing-setup' > Finalizing Setup< / a > < / li >
2023-04-03 19:08:28 +02:00
< / ol >
< / li >
< / ul >
< / nav >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< / div >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< article class = "page" itemscope itemtype = "https://schema.org/CreativeWork" >
< meta itemprop = "headline" content = "A9LH를 B9S로 업데이트" >
< div class = "page__inner-wrap" >
< header >
< h1 id = "page-title" class = "page__title" itemprop = "headline" > A9LH를 B9S로 업데이트
< / h1 >
< / header >
< section class = "page__content" itemprop = "text" >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start -->
2023-04-03 19:08:28 +02:00
< hr >
< div class = "notice" > < b > 영어로 지원을 요청하고 싶으시면 < a href = "https://discord.gg/MWxPgEp" > Nintendo Homebrew Discord 서버< / a > 에 도움을 요청해 주세요.< / b > < / div >
< div class = "notice" > < b > 이 가이드가 도움이 되었다면, < a href = "contribute#donations" > 기부해 주시면< / a > 감사하겠습니다.< / b > < / div >
< hr >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< aside class = "sidebar__right" >
< nav class = "toc" >
< header > < h4 class = "nav__title" > < i class = "fas fa-file-alt" > < / i > 목차< / h4 > < / header >
< ul class = "toc__menu" id = "markdown-toc" >
< li > < a href = "#중요" id = "markdown-toc-중요" > 중요< / a > < / li >
< li > < a href = "#준비물" id = "markdown-toc-준비물" > 준비물< / a > < / li >
< li > < a href = "#진행-방법" id = "markdown-toc-진행-방법" > 진행 방법< / a > < ul >
< li > < a href = "#섹션-i---준비-작업" id = "markdown-toc-섹션-i---준비-작업" > 섹션 I - 준비 작업< / a > < / li >
< li > < a href = "#섹션-ii---boot9strap-설치하기" id = "markdown-toc-섹션-ii---boot9strap-설치하기" > 섹션 II - boot9strap 설치하기< / a > < / li >
< / ul >
< / li >
< li > < a href = "#마무리-단계-로-계속합니다" id = "markdown-toc-마무리-단계-로-계속합니다" > 마무리 단계 로 계속합니다< / a > < / li >
< / ul >
< / nav >
< / aside >
< h3 id = "중요" > 중요< / h3 >
2023-06-13 17:52:26 +02:00
< p > 이 섹션은 arm9loaderhax 사용자들이 boot9strap으로 업데이트하는 것을 돕기 위한 가이드입니다.< / p >
2023-04-03 19:08:28 +02:00
< p > 이제부터 모든 Luma3DS의 릴리스는 boot9strap과 sighax에만 대응하는 < code class = "language-plaintext highlighter-rouge" > .firm< / code > 형식으로 업데이트 됩니다. 그것은 곧 Luma3DS를 업데이트 하려면, 이 페이지를 통해 업데이트를 해야 한다는 것과 같습니다,< / p >
< p > 이 페이지에 있는 < code class = "language-plaintext highlighter-rouge" > .7z< / code > 파일을 압축 해제하기 위해서는, < a href = "http://www.7-zip.org/" > 7-Zip< / a > 또는 < a href = "https://theunarchiver.com/" > The Unarchiver< / a > 같은 압축 해제 프로그램이 필요합니다.< / p >
< p class = "notice--warning" > 우리는 온라인 사용은 문제가 없다고 믿지만, 치트 밎 의혹한 eShop 행동으로 온라인 네트워크 차단 사건들이 있었음으로, 주의하시기 바랍니다.< / p >
< h3 id = "준비물" > 준비물< / h3 >
< p class = "notice--warning" > 이 페이지의 < a href = "https://wikipedia.org/wiki/Magnet_URI_scheme" > 마그넷< / a > 링크를 사용하려면
< a href = "https://www.qbittorrent.org/download.php" > qBittorrent< / a > 또는 < a href = "http://dev.deluge-torrent.org/wiki/Download" > Deluge< / a > 와 같은 토렌트 클라이언트가 필요합니다.< / p >
2023-06-13 17:52:26 +02:00
< p class = "notice--info" > 추가로, < code class = "language-plaintext highlighter-rouge" > secret_sector.bin< / code > 은 arm9loaderhax exploit을 되돌리기 위해 New 3DS에서만 사용됩니다. 그래서 기존 콘솔들의 boot9strap 설치에서는 필요하지 않습니다. 만약 New 3DS를 소유하고 계시지 않으시면 < code class = "language-plaintext highlighter-rouge" > secret_sector.bin< / code > 은 필요 하지 않습니다.< / p >
2023-04-03 19:08:28 +02:00
< ul >
< li > < i class = "fa fa-magnet" aria-hidden = "true" title = "이것은 마그넷 링크입니다. 토렌트 클라이언트를 사용해 파일을 다운로드 해주세요." > < / i > - < strong > New 3DS 사용자 전용:< / strong > < a href = "magnet:?xt=urn:btih:15a3c97acf17d67af98ae8657cc66820cc58f655&dn=secret_sector.bin&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.lelux.fi%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.loadbt.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.monitorit4.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.ololosh.space%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.pomf.se%3a80%2fannounce&tr=udp%3a%2f%2ftracker.srv00.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.theoks.net%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.tracker.cl%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2ftracker1.bt.moack.co.kr%3a80%2fannounce&tr=udp%3a%2f%2fvibe.sleepyinternetfun.xyz%3a1738%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2810%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=http%3a%2f%2fopenbittorrent.com%3a80%2fannounce" > secret_sector.bin< / a > (마그넷 링크)< / li >
2023-08-15 20:20:26 +02:00
< li > 최신 버전의 < a href = "https://github.com/LumaTeam/Luma3DS/releases/latest" > Luma3DS< / a > (< code class = "language-plaintext highlighter-rouge" > .zip< / code > 파일)< / li >
2023-04-03 19:08:28 +02:00
< li > v7.0.5 버전의 < a href = "https://github.com/LumaTeam/Luma3DS/releases/download/v7.0.5/Luma3DSv7.0.5.7z" > Luma3DS< / a > (직접 다운로드)< / li >
< li > 최신 버전의 < a href = "https://github.com/d0k3/SafeB9SInstaller/releases/download/v0.0.7/SafeB9SInstaller-20170605-122940.zip" > SafeB9SInstaller< / a > (직접 다운로드)< / li >
2023-06-13 17:52:26 +02:00
< li > 최신 버전의 < a href = "https://github.com/SciresM/boot9strap/releases/download/1.4/boot9strap-1.4.zip" > boot9strap< / a > (직접 다운로드)< / li >
2023-04-03 19:08:28 +02:00
< / ul >
2023-06-13 17:52:26 +02:00
< h3 id = "진행-방법" > 진행 방법< / h3 >
2023-04-03 19:08:28 +02:00
< h4 id = "섹션-i---준비-작업" > 섹션 I - 준비 작업< / h4 >
< p class = "notice--info" > 모든 과정에서, SD 카드에 이미 존재하는 파일들은 모두 덮어쓰기 해주세요.< / p >
< ol >
2023-07-19 02:13:41 +02:00
< li > 콘솔의 전원을 꺼 주세요< / li >
2023-04-03 19:08:28 +02:00
< li > SD 카드를 컴퓨터에 삽입해 주세요< / li >
2023-08-19 19:09:19 +02:00
< li > Luma3DS < code class = "language-plaintext highlighter-rouge" > .zip< / code > 안에 있는 < code class = "language-plaintext highlighter-rouge" > boot.firm< / code > 과 < code class = "language-plaintext highlighter-rouge" > boot.3dsx< / code > 를 SD 카드의 루트에 복사해 주세요
2023-04-03 19:08:28 +02:00
< ul >
2023-06-16 05:42:39 +02:00
< li > SD 카드의 루트는 SD 카드를 열 때 보이는 디렉토리이고, Nintendo 3DS 폴더가 보이지만 그 안에 들어가 있지 않은 상태의 폴더입니다< / li >
2023-04-03 19:08:28 +02:00
< / ul >
< / li >
< li > v7.0.5 버전의 Luma3DS < code class = "language-plaintext highlighter-rouge" > .7z< / code > 파일에서 < code class = "language-plaintext highlighter-rouge" > arm9loaderhax.bin< / code > 을 SD 카드의 루트에 복사해 주세요< / li >
< li > SafeB9SInstaller < code class = "language-plaintext highlighter-rouge" > .zip< / code > 파일에서 < code class = "language-plaintext highlighter-rouge" > SafeB9SInstaller.bin< / code > 을 SD 카드에 있는< code class = "language-plaintext highlighter-rouge" > /luma/payloads/< / code > 폴더에 복사해 주세요
< ul >
< li > ‘ luma’ 또는 ‘ payloads’ 폴더가 없다면, 만들어 주세요< / li >
< li > SD 카드의 < code class = "language-plaintext highlighter-rouge" > /luma/payloads/< / code > 폴더 속에 있는 모든 < code class = "language-plaintext highlighter-rouge" > .bin< / code > 페이로드 (< code class = "language-plaintext highlighter-rouge" > GodMode9.bin< / code > , < code class = "language-plaintext highlighter-rouge" > Decrypt9WIP.bin< / code > , < code class = "language-plaintext highlighter-rouge" > Hourglass9.bin< / code > , etc.)는 boot9strap과 호환되는 Luma3DS와 호환되지 않기에, 폴더 속에 있는 모든 < code class = "language-plaintext highlighter-rouge" > .bin< / code > 페이로드는 지워 주세요< / li >
< / ul >
< / li >
< li > SD 카드이 루트에 < code class = "language-plaintext highlighter-rouge" > boot9strap< / code > 라는 이름으로 새 폴더를 생성해 주세요< / li >
< li > SD 카드에 있는 < code class = "language-plaintext highlighter-rouge" > /boot9strap/< / code > 폴더에 boot9strap < code class = "language-plaintext highlighter-rouge" > .zip< / code > 파일 안에 압축되있는 < code class = "language-plaintext highlighter-rouge" > boot9strap.firm< / code > 과 < code class = "language-plaintext highlighter-rouge" > boot9strap.firm.sha< / code > 을 복사해 주세요< / li >
< li >
< p > < strong > New 3DS 전용< / strong > SD 카드의 < code class = "language-plaintext highlighter-rouge" > /boot9strap/< / code > 폴더에 < code class = "language-plaintext highlighter-rouge" > secret_sector.bin< / code > 을 복사해 주세요< / p >
< p class = "notice--info" > < img src = "https://3ds.hacks.guide/images/screenshots/a9lh-to-b9s-root-layout.png" alt = "" / > < / p >
< / li >
2023-06-13 17:52:26 +02:00
< li > SD 카드를 콘솔에 다시 삽입해 주세요< / li >
2023-04-03 19:08:28 +02:00
< / ol >
< h4 id = "섹션-ii---boot9strap-설치하기" > 섹션 II - boot9strap 설치하기< / h4 >
< ol >
2023-06-13 17:52:26 +02:00
< li > SafeB9SInstaller를 실행하도록 (Start) 버튼을 누른 상태로 부팅해 주세요
2023-04-03 19:08:28 +02:00
< ul >
< li > 만약 SafeB9SInstaller 대신 Luma 구성 화면이 나타난다면, 간단하게 (Start)를 누르고, 3DS를 끈 다음 다시 시도해 주세요< / li >
< li > 만약 에러가 발생하면, 새로운 SD카드로 시도하거나, (기존 파일들은 먼저 백업한 후) 기존 SD 카드를 포멧해 보세요< / li >
< / ul >
< / li >
< li > 모든 안전 검사가 끝날 때까지 기다려 주세요
< ul >
< li > 만약 “OTP Crypto Fail” 에러를 보시면, < i class = "fa fa-magnet" aria-hidden = "true" title = "이것은 마그넷 링크입니다. 토렌트 클라이언트를 사용해 파일을 다운로드 해주세요." > < / i > - < a href = "magnet:?xt=urn:btih:d25dab06a7e127922d70ddaa4fe896709dc99a1e&dn=aeskeydb.bin&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.lelux.fi%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.loadbt.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.monitorit4.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.ololosh.space%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.pomf.se%3a80%2fannounce&tr=udp%3a%2f%2ftracker.srv00.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.theoks.net%3a6969%2fannounce&tr=udp%3a%2f%2fopen.tracker.cl%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2ftracker1.bt.moack.co.kr%3a80%2fannounce&tr=udp%3a%2f%2fvibe.sleepyinternetfun.xyz%3a1738%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2810%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=http%3a%2f%2fopenbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce" > aeskeydb.bin< / a > , then put it in the < code class = "language-plaintext highlighter-rouge" > /boot9strap/< / code > folder on your SD card and try again< / li >
< / ul >
< / li >
2023-05-24 00:19:21 +02:00
< li > 메시지가 나타나면, boot9strap을 설치하기 위하여 화면에 주어진 키 조합을 입력해 주세요
< ul >
2023-05-29 10:03:42 +02:00
< li > 아래 화면의 단계가 붉은 텍스트로 표시되고 키 콤보 입력을 요구하지 않는다면, < a href = "troubleshooting#issues-with-safeb9sinstaller" > 이 문제 해결 가이드< / a > 를 참고해 주세요< / li >
2023-05-24 00:19:21 +02:00
< / ul >
< / li >
2023-06-13 17:52:26 +02:00
< li > 작업이 완료되면, (A) 를 눌려 콘솔을 재부팅해 주세요< / li >
< li > 콘솔은 Luma3DS 구성 메뉴로 부팅되었을 겁니다
2023-04-03 19:08:28 +02:00
< ul >
< li > Luma3DS 구성 메뉴는 Luma3DS 커스텀 펌웨어의 설정들 입니다. 이 설정들은 디버깅 또는 맞춤화의 유용합니다< / li >
< li > 이 가이드에서는 기본 설정으로 남길 겁니다< / li >
2023-06-13 17:52:26 +02:00
< li > 검은 화면이 보인다면 이 < a href = "troubleshooting#boot-issues-on-consoles-with-custom-firmware" > 문제 해결 가이드< / a > 를 참고해 주세요.< / li >
2023-04-03 19:08:28 +02:00
< / ul >
< / li >
2023-07-26 16:40:57 +02:00
< li > (Start)를 눌러 저장하고 콘솔을 다시 시작해 주세요< / li >
2023-04-03 19:08:28 +02:00
< / ol >
< hr / >
< h3 class = "notice--primary" id = "마무리-단계-로-계속합니다" > < a href = "finalizing-setup" > 마무리 단계< / a > 로 계속합니다< / h3 >
< / section >
< footer class = "page__meta" >
< / footer >
< / div >
< / article >
< / div >
< / div >
< div id = "footer" class = "page__footer" >
< footer >
<!-- start custom footer snippets -->
<!-- end custom footer snippets -->
< div class = "page__footer-follow" >
< ul class = "social-icons" >
< li > < strong > Follow:< / strong > < / li >
< li > < a href = "https://github.com/hacks-guide/Guide_3DS" rel = "nofollow noopener noreferrer" > < i class = "fab fa-fw fa-github" aria-hidden = "true" > < / i > GitHub< / a > < / li >
2023-09-30 18:54:58 +02:00
2023-04-03 19:08:28 +02:00
2024-01-16 21:33:13 +01:00
< / ul >
2023-04-03 19:08:28 +02:00
< / div >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: custom footer -->
2023-04-03 19:08:28 +02:00
2024-01-03 05:59:47 +01:00
< div class = "page__footer-copyright" > © 2024 Nintendo Homebrew. - < a href = "site-navigation" > 사이트 탐색< / a > - < a href = "privacy-policy" > 개인정보 보호 정책< / a > <!-- Powered by <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/minimal - mistakes - jekyll - theme/" rel="nofollow">Minimal Mistakes</a>. --> < / div >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< / footer >
< / div >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
< script src = "/assets/js/main.min.js" > < / script >
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change start: Disable caching -->
2023-04-03 19:08:28 +02:00
2023-09-30 18:54:58 +02:00
<!-- hacks - guide change end -->
2023-04-03 19:08:28 +02:00
2023-10-17 21:04:32 +02:00
<!-- Global site tag (gtag.js) - Google Analytics -->
< script async src = "https://www.googletagmanager.com/gtag/js?id=G-760Y60FQ3T" > < / script >
< script >
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
2023-10-05 07:17:16 +02:00
2023-10-17 21:04:32 +02:00
gtag('config', 'G-760Y60FQ3T', { 'anonymize_ip': false});
2023-04-15 07:28:49 +02:00
< / script >
2023-04-03 19:08:28 +02:00
< / body >
< / html >