0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

イラン製Linux、Parch Linuxを触れてみる

0
Last updated at Posted at 2025-12-03

筆者について

name → Koki Teramoto
age → 19
language → ja_JP, en_US

本編

ホームページ自体はこちらです。

そして、VMwareで起動させた時にスクショです!

Parch Linux-2025-12-03-23-52-12.png

このLinux、何者なのでしょうか。

## 特徴たち

さあ、このLinuxには一つを除きあまり特徴はないのですが、まあ軽くだけ、紹介しておきましょう。

Archベースのディストリビューション

このディストリビューション自体はArch Linuxベースで、基本的にはpacmanでパッケージをインストールする等、何の変哲も無いディストリビューションです。

Mac使いとしては残念ながらx84-64しか対応していない模様。

3つのデスクトップ環境

公式としてはGnomeとKDE Plasma、コミュニティとしてはXfceに対応しているそうです。

日付表記がペルシャ式

全く読めないのですが、どうやら日付表記がペルシャ式のようです。

おい、今んところ何も面白くないぞ。

さて、皆さん疑問に感じたでしょう。なんでこんななんの変哲もないLinuxを紹介するのか。それは、まさかの公式でdebianのページを紹介しているからです。

Debianの環境の紹介!?

ということで、僕がこのLinuxで一番紹介したいところはここです!Wikiのページにあります!

これ、試してみました。

debootstrapのインストール

何はともあれ、debootstrapのインストールをしていきましょう。

sudo pacman -Sy
sudo pacman -S debootstrap

環境づくり

次は、debootstrapの環境を作っていきます。

sudo mkdir /opt/debian
export DEBOOTSTRAP_DIR=/opt/debootstrap/usr/share/debootstrap
debootstrap --arch amd64 bookworm /opt/debian/ http://ftp.uk.debian.org/debian/
mount -t proc proc /opt/debian/proc/
mount -t sysfs sys /opt/debian/sys/
mount -o bind /dev /opt/debian/dev/
mount -o bind /dev/pts /opt/debian/dev/pts/

# 正直この下は蛇足やしもっと上のosでもいいはず

cat > /opt/debian/etc/apt/sources.list << 'EOF'
deb http://ftp.uk.debian.org/debian/ bookworm main non-free contrib
deb-src http://ftp.uk.debian.org/debian/ bookworm main non-free contrib

deb http://security.debian.org/ bookworm/updates main non-free contrib
deb-src http://security.debian.org/ bookworm/updates main non-free contrib

deb http://ftp.uk.debian.org/debian/ bookworm-updates main non-free contrib
deb-src http://ftp.uk.debian.org/debian/ bookworm-updates main non-free contrib
EOF

いざ、chroot!

ということで、あとはchrootすれば終わりです!

chroot /opt/debian /bin/bash

感想

正直、なんの変哲もないただのdebianなのですが、これが普通に使えてかつ紹介されているっていうのが面白いポイントだと思います。

最後に

今回は、debootstrapを公式で紹介しているParch Linuxについて触れました。まあ、使うことはないでしょう。ただ、最近はイランのIT関係には心底驚くばかりで、、、。おっと、これは次の記事にしよう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?