docs: support systemd-homed
parent
e1d1fc151a
commit
f74f20b9a6
|
@ -140,6 +140,9 @@ pacstrap /mnt btrfs-progs
|
||||||
|
|
||||||
# Text editor
|
# Text editor
|
||||||
pacstrap /mnt neovim
|
pacstrap /mnt neovim
|
||||||
|
|
||||||
|
# Development
|
||||||
|
pacstrap /mnt base-devel
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configure
|
### Configure
|
||||||
|
@ -220,6 +223,8 @@ Always remember to check **dependencies** when install packages.
|
||||||
|
|
||||||
### System administration
|
### System administration
|
||||||
|
|
||||||
|
#### [Users and groups](https://wiki.archlinux.org/index.php/users_and_groups)
|
||||||
|
|
||||||
Add user:
|
Add user:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
@ -232,7 +237,15 @@ Set password:
|
||||||
passwd username
|
passwd username
|
||||||
```
|
```
|
||||||
|
|
||||||
Enable sudo:
|
#### [systemd-homed](https://wiki.archlinux.org/index.php/Systemd-homed)
|
||||||
|
|
||||||
|
```sh
|
||||||
|
systemctl enable systemd-homed.service
|
||||||
|
|
||||||
|
homectl create joker --real-name="The Joker" --member-of=wheel
|
||||||
|
```
|
||||||
|
|
||||||
|
#### [Sudo](https://wiki.archlinux.org/index.php/sudo)
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pacman -Syu sudo
|
pacman -Syu sudo
|
||||||
|
|
Loading…
Reference in New Issue