mirror of
https://code.forgejo.org/infrastructure/documentation
synced 2024-11-22 03:21:10 +00:00
parent
3b892d0830
commit
7ec8e13b84
17
README.md
17
README.md
|
@ -743,6 +743,23 @@ https://hetzner05.forgejo.org & https://hetzner06.forgejo.org run on [EX44](http
|
|||
lxc-helpers.sh lxc_install_lxc_inside 10.47.3 fc11
|
||||
```
|
||||
|
||||
#### NFS
|
||||
|
||||
[server](https://wiki.archlinux.org/title/NFS).
|
||||
|
||||
```sh
|
||||
sudo apt install nfs-kernel-server nfs-common
|
||||
echo /precious 10.53.101.0/255.255.255.0(rw,no_root_squash,subtree_check) | sudo tee -a /etc/exports
|
||||
sudo exportfs -a
|
||||
sudo exportfs -s
|
||||
```
|
||||
|
||||
[client](https://wiki.archlinux.org/title/NFS).
|
||||
|
||||
```sh
|
||||
sudo apt install nfs-common
|
||||
```
|
||||
|
||||
#### Disk partitioning
|
||||
|
||||
- First disk
|
||||
|
|
Loading…
Reference in a new issue