49 lines
2.1 KiB
Markdown
49 lines
2.1 KiB
Markdown
# osを作ろう
|
|
|
|
rust + os + unix
|
|
|
|
## archlinux
|
|
|
|
archlinuxのpacmanを組み込むことはできるだろうか。
|
|
|
|
archlinux-baseのosを作る方法を載せておく。これをarchlinux上で実行すると、`aios-bootstrap.tar.gz`ができ、それがlinux-imgになる。
|
|
|
|
```sh
|
|
#!/bin/zsh
|
|
pacman -Syuu --noconfirm base-devel archiso docker git nodejs bc
|
|
git clone https://gitlab.archlinux.org/archlinux/archiso
|
|
cp -rf ./cfg/profiledef.sh /usr/share/archiso/configs/releng/
|
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/releng/profiledef.sh
|
|
cp -rf ./cfg/profiledef.sh ./archiso/configs/baseline/profiledef.sh
|
|
cp -rf ./scpt/mkarchiso ./archiso/archiso/mkarchiso
|
|
./archiso/archiso/mkarchiso -v -o ./ ./archiso/configs/releng/
|
|
tar xf aios-bootstrap*.tar.gz
|
|
mkdir -p root.x86_64/var/lib/machines/arch
|
|
pacstrap -c root.x86_64/var/lib/machines/arch base
|
|
echo -e 'Server = http://mirrors.cat.net/archlinux/$repo/os/$arch
|
|
Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch' >> ./root.x86_64/etc/pacman.d/mirrorlist
|
|
sed -i s/CheckSpace/#CheckeSpace/ root.x86_64/etc/pacman.conf
|
|
arch-chroot root.x86_64 /bin/sh -c 'pacman-key --init'
|
|
arch-chroot root.x86_64 /bin/sh -c 'pacman-key --populate archlinux'
|
|
arch-chroot root.x86_64 /bin/sh -c 'pacman -Syu --noconfirm base base-devel linux vim git zsh rust openssh openssl jq go nodejs docker podman bc'
|
|
arch-chroot root.x86_64 /bin/sh -c 'mkdir -p /etc/containers/registries.conf.d'
|
|
arch-chroot root.x86_64 /bin/sh -c 'curl -sL -o /etc/containers/registries.conf.d/ai.conf https://git.syui.ai/ai/os/raw/branch/main/cfg/ai.conf'
|
|
arch-chroot root.x86_64 /bin/sh -c 'chsh -s /bin/zsh'
|
|
arch-chroot root.x86_64 /bin/sh -c 'git clone https://git.syui.ai/ai/bot && cd bot && cargo build && cp -rf ./target/debug/ai /bin/ && ai ai'
|
|
tar -zcvf aios-bootstrap.tar.gz root.x86_64/
|
|
```
|
|
|
|
## 当面の目標
|
|
|
|
1. claude codeを実行できるようにすること
|
|
2. package managerの作成
|
|
3. shellとAIの統合
|
|
4. shellはsystemd-nspawnのようなcontainerで実行
|
|
5. AIはcontainerを扱う
|
|
|
|
## ref
|
|
|
|
- [redox-os/redox](redox-os/redox)
|
|
- [o8vm/octox](https://github.com/o8vm/octox)
|
|
|