「Archbootstrap」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(en:Archbootstrapへの転送ページ)
 
1行目: 1行目:
  +
[[Category:ブートプロセス]]
#redirect[[en:Archbootstrap]]
 
  +
[[en:Archbootstrap]]
  +
[https://raw.githubusercontent.com/tokland/arch-bootstrap/master/arch-bootstrap.sh arch-bootstrap.sh] は chroot できるところに最小限の Arch Linux 環境を作成する Bash スクリプトです。ホストのアーキテクチャ以外のアーキテクチャをブートストラップするには静的コンパイルされた [http://www.qemu.org QEMU] バイナリを Linux の [[wikipedia:Binfmt_misc|binfmt_misc]] に登録する必要があります。バグは [https://github.com/tokland/arch-bootstrap/issues こちら] に報告してください。
  +
  +
== Arch のインストール ==
  +
  +
例:
  +
  +
* デフォルトのアーキテクチャ (i686) とリポジトリを使用:
  +
  +
# bash arch-bootstrap.sh target
  +
  +
* 特定のディレクトリを使って ''x86_64'' システムをブートストラップ:
  +
  +
# bash arch-bootstrap.sh -a x86_64 -r "ftp://ftp.archlinux.org" target
  +
  +
== 参照 ==
  +
  +
* sh4 CPU のポート: http://code.google.com/p/sh4twbox

2015年11月22日 (日) 12:15時点における版

arch-bootstrap.sh は chroot できるところに最小限の Arch Linux 環境を作成する Bash スクリプトです。ホストのアーキテクチャ以外のアーキテクチャをブートストラップするには静的コンパイルされた QEMU バイナリを Linux の binfmt_misc に登録する必要があります。バグは こちら に報告してください。

Arch のインストール

例:

  • デフォルトのアーキテクチャ (i686) とリポジトリを使用:
# bash arch-bootstrap.sh target
  • 特定のディレクトリを使って x86_64 システムをブートストラップ:
# bash arch-bootstrap.sh -a x86_64 -r "ftp://ftp.archlinux.org" target

参照