fix
This commit is contained in:
parent
a4097bae44
commit
759b73cf01
@ -24,32 +24,66 @@ $ mkfs.ext4 /dev/nvme0n1p2
|
||||
$ mount /dev/nvme0n1p2 /mnt
|
||||
$ mkdir -p /mnt/boot/efi
|
||||
$ mount /dev/nvme0n1p1 /mnt/boot/efi
|
||||
$ pacstrap /mnt base linux grub efibootmgr dhcpcd openssh
|
||||
$ pacstrap /mnt base linux grub efibootmgr
|
||||
$ arch-chroot /mnt
|
||||
# grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub
|
||||
$ grub-install --force /dev/nvme0n1p1
|
||||
$ grub-mkconfig -o /boot/grub/grub.cfg
|
||||
$ systemctl enable dhcpcd
|
||||
$ systemctl enable sshd
|
||||
$ passwd
|
||||
$ useradd -m -g wheel -s /bin/zsh ${username}
|
||||
$ useradd -m -g wheel -s /bin/bash ${username}
|
||||
$ passwd ${username}
|
||||
```
|
||||
|
||||
## ssh
|
||||
```sh
|
||||
$ pacman -S base-devel zsh git vim tmux sudo dhcpcd openssh
|
||||
$ systemctl enable dhcpcd
|
||||
$ systemctl enable sshd
|
||||
$ chsh -s /bin/zsh
|
||||
```
|
||||
|
||||
まずnetworkを設定しsshで接続しましょう。
|
||||
## network
|
||||
|
||||
`dhcpcd`を使う方法と`systemd-networkd`を使う方法があります。基本的にどのlinuxもdhcpcdを入れておりnetworkを設定しています。
|
||||
|
||||
まずkernelで自動設定されるインターフェイス名を`eth0`などに戻しましょう。
|
||||
|
||||
```sh
|
||||
$ ip route show
|
||||
enp0s12 192.168.1.23
|
||||
```
|
||||
|
||||
```sh
|
||||
# 伝統的な名前を使う
|
||||
$ mkdir -p /etc/systemd/network/99-default.link.d
|
||||
$ vim /etc/systemd/network/99-default.link.d/traditional-naming.conf
|
||||
[Link]
|
||||
NamePolicy=keep kernel
|
||||
|
||||
# こちらの方法も使える
|
||||
$ ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
||||
```
|
||||
|
||||
### dhcpcd
|
||||
|
||||
> /etc/dhcpcd.conf
|
||||
|
||||
```sh:/etc/dhcpcd.conf
|
||||
interface eth0
|
||||
static ip_address=192.168.1.23/24
|
||||
static routers=192.168.1.1
|
||||
static domain_name_servers=192.168.1.1 1.1.1.1
|
||||
```
|
||||
|
||||
### systemd-networkd
|
||||
|
||||
```sh
|
||||
$ systemctl disable dhcpcd
|
||||
$ vim /etc/systemd/network/eth.network
|
||||
```
|
||||
|
||||
```sh:/etc/systemd/network/eth.network
|
||||
[Match]
|
||||
Name=enp0s12
|
||||
Name=eth0
|
||||
|
||||
[Network]
|
||||
Address=192.168.1.23/24
|
||||
@ -61,6 +95,14 @@ DNS=192.168.1.1
|
||||
$ systemctl enable systemd-networkd
|
||||
```
|
||||
|
||||
なお、デバイスによってはこの方法で接続できない場合があります。その場合は`dhcpcd`が有効です。
|
||||
|
||||
nameserverは`/etc/resolv.conf`を見てください。
|
||||
|
||||
## ssh
|
||||
|
||||
次にsshで接続する方法です。
|
||||
|
||||
```sh
|
||||
# 接続する側
|
||||
$ ssh-keygen -f ~/.ssh/archlinux
|
||||
@ -77,10 +119,46 @@ $ systemctl restart sshd
|
||||
$ ssh ${username}@192.168.1.23
|
||||
```
|
||||
|
||||
## xorg
|
||||
|
||||
デスクトップ環境の構築です。
|
||||
|
||||
```sh
|
||||
$ pacman -S tilix xterm zsh git tmux chromium otf-ipaexfont i3 xorg xorg-xinit pcmanfm lightdm lightdm-gtk-greeter
|
||||
```
|
||||
|
||||
```sh
|
||||
# autologin
|
||||
$ groupadd -r autologin
|
||||
$ gpasswd -a $USER autologin
|
||||
$ vim /etc/lightdm/lightdm.conf
|
||||
[Seat:*]
|
||||
pam-service=lightdm
|
||||
pam-autologin-service=lightdm-autologin
|
||||
autologin-user=${USER}
|
||||
autologin-user-timeout=0
|
||||
session-wrapper=/etc/lightdm/Xsession
|
||||
autologin-session=i3
|
||||
```
|
||||
|
||||
```sh
|
||||
$ systemctl enable lightdm
|
||||
```
|
||||
|
||||
## displayが暗くならないようにする
|
||||
|
||||
```sh
|
||||
$ vim ~/.xinitrc
|
||||
xset s off -dpms
|
||||
```
|
||||
|
||||
## 蓋を閉じてもsleepしないようにする
|
||||
|
||||
> /etc/systemd/logind.conf
|
||||
|
||||
```sh:/etc/systemd/logind.conf
|
||||
HandleLidSwitch=suspend
|
||||
HandleLidSwitchExternalPower=ignore
|
||||
HandleLidSwitchDocked=ignore
|
||||
```
|
||||
|
||||
|
@ -140,8 +140,7 @@ autoload -Uz compinit && compinit
|
||||
### zip
|
||||
|
||||
```sh
|
||||
$ pacman -S atool
|
||||
$ pacman -S zip
|
||||
$ pacman -S atool zip unrar
|
||||
|
||||
# 解凍
|
||||
$ aunpack test.zip
|
||||
@ -150,7 +149,6 @@ $ aunpack test.zip
|
||||
$ apack test.zip $dir
|
||||
|
||||
# rar
|
||||
$ pacman -S unrar
|
||||
$ aunpack test.rar
|
||||
```
|
||||
|
||||
@ -541,3 +539,171 @@ $ sudo machinectl remove arch
|
||||
$ sudo machinectl clone backup arch
|
||||
```
|
||||
|
||||
## install v2
|
||||
|
||||
installは簡単で`/`にpacstrapでarch(linux,base)を入れること。bootを設定することです。grubが簡単なのでgrubを使用します。bootloaderは起動時にlinux.imgを実行したり選択するものです。
|
||||
|
||||
```sh
|
||||
$ fdisk -l
|
||||
/dev/nvme0n1p1
|
||||
/dev/nvme0n1p2
|
||||
|
||||
$ mkfs.vfat /dev/nvme0n1p1
|
||||
$ mkfs.ext4 /dev/nvme0n1p2
|
||||
$ mount /dev/nvme0n1p2 /mnt
|
||||
$ mkdir -p /mnt/boot/efi
|
||||
$ mount /dev/nvme0n1p1 /mnt/boot/efi
|
||||
$ pacstrap /mnt base linux grub efibootmgr
|
||||
$ arch-chroot /mnt
|
||||
# grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub
|
||||
$ grub-install --force /dev/nvme0n1p1
|
||||
$ grub-mkconfig -o /boot/grub/grub.cfg
|
||||
$ passwd
|
||||
$ useradd -m -g wheel -s /bin/bash ${username}
|
||||
$ passwd ${username}
|
||||
```
|
||||
|
||||
```sh
|
||||
$ pacman -S base-devel zsh git vim tmux sudo dhcpcd openssh
|
||||
$ systemctl enable dhcpcd
|
||||
$ systemctl enable sshd
|
||||
$ chsh -s /bin/zsh
|
||||
```
|
||||
|
||||
```sh
|
||||
$ exit
|
||||
$ reboot
|
||||
```
|
||||
|
||||
### network
|
||||
|
||||
`dhcpcd`を使う方法と`systemd-networkd`を使う方法があります。基本的にどのlinuxもdhcpcdを入れておりnetworkを設定しています。
|
||||
|
||||
まずkernelで自動設定されるインターフェイス名を`eth0`などに戻しましょう。
|
||||
|
||||
```sh
|
||||
$ ip route show
|
||||
enp0s12 192.168.1.23
|
||||
```
|
||||
|
||||
```sh
|
||||
# 伝統的な名前を使う
|
||||
$ mkdir -p /etc/systemd/network/99-default.link.d
|
||||
$ vim /etc/systemd/network/99-default.link.d/traditional-naming.conf
|
||||
[Link]
|
||||
NamePolicy=keep kernel
|
||||
|
||||
# こちらの方法も使える
|
||||
$ ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
|
||||
```
|
||||
|
||||
### dhcpcd
|
||||
|
||||
> /etc/dhcpcd.conf
|
||||
|
||||
```sh:/etc/dhcpcd.conf
|
||||
interface eth0
|
||||
static ip_address=192.168.1.23/24
|
||||
static routers=192.168.1.1
|
||||
static domain_name_servers=192.168.1.1 1.1.1.1
|
||||
```
|
||||
|
||||
### systemd-networkd
|
||||
|
||||
```sh
|
||||
$ systemctl disable dhcpcd
|
||||
$ vim /etc/systemd/network/eth.network
|
||||
```
|
||||
|
||||
```sh:/etc/systemd/network/eth.network
|
||||
[Match]
|
||||
Name=eth0
|
||||
|
||||
[Network]
|
||||
Address=192.168.1.23/24
|
||||
Gateway=192.168.1.1
|
||||
DNS=192.168.1.1
|
||||
```
|
||||
|
||||
```sh
|
||||
$ systemctl enable systemd-networkd
|
||||
```
|
||||
|
||||
なお、デバイスによってはこの方法で接続できない場合があります。その場合は`dhcpcd`が有効です。
|
||||
|
||||
nameserverは`/etc/resolv.conf`を見てください。
|
||||
|
||||
### ssh
|
||||
|
||||
次にsshで接続する方法です。
|
||||
|
||||
```sh
|
||||
# 接続する側
|
||||
$ ssh-keygen -f ~/.ssh/archlinux
|
||||
$ ssh-copy-id -i ~/.ssh/archlinux.pub ${username}@192.168.1.23
|
||||
|
||||
# 接続される側:archlinux
|
||||
$ vim /etc/ssh/sshd_config
|
||||
PasswordAuthentication no
|
||||
|
||||
$ systemctl restart sshd
|
||||
```
|
||||
|
||||
```sh
|
||||
$ ssh ${username}@192.168.1.23
|
||||
```
|
||||
|
||||
### xorg
|
||||
|
||||
デスクトップ環境の構築です。
|
||||
|
||||
```sh
|
||||
$ pacman -S tilix xterm zsh git tmux chromium otf-ipaexfont i3 xorg xorg-xinit pcmanfm lightdm lightdm-gtk-greeter
|
||||
```
|
||||
|
||||
```sh
|
||||
# autologin
|
||||
$ groupadd -r autologin
|
||||
$ gpasswd -a $USER autologin
|
||||
$ vim /etc/lightdm/lightdm.conf
|
||||
[Seat:*]
|
||||
pam-service=lightdm
|
||||
pam-autologin-service=lightdm-autologin
|
||||
autologin-user=${USER}
|
||||
autologin-user-timeout=0
|
||||
session-wrapper=/etc/lightdm/Xsession
|
||||
autologin-session=i3
|
||||
```
|
||||
|
||||
```sh
|
||||
$ systemctl enable lightdm
|
||||
```
|
||||
|
||||
### zip
|
||||
|
||||
```sh
|
||||
$ pacman -S atool zip unrar
|
||||
```
|
||||
|
||||
### displayが暗くならないようにする
|
||||
|
||||
```sh
|
||||
$ vim ~/.xinitrc
|
||||
xset s off -dpms
|
||||
|
||||
$ vim /etc/X11/xorg.conf.d/10-monitor.conf
|
||||
Section "Monitor"
|
||||
Option "DPMS" "false"
|
||||
EndSection
|
||||
```
|
||||
|
||||
### 蓋を閉じてもsleepしないようにする
|
||||
|
||||
> /etc/systemd/logind.conf
|
||||
|
||||
```sh:/etc/systemd/logind.conf
|
||||
HandleLidSwitch=suspend
|
||||
HandleLidSwitchExternalPower=ignore
|
||||
HandleLidSwitchDocked=ignore
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user