Skip to content

Commit 1b0afb5

Browse files
committed
doc: Upadte docs
1 parent cf7632a commit 1b0afb5

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ See [TERMS_OF_USE.md](TERMS_OF_USE.md)
3535
# Full usage doc:
3636
For a full usage documentation,
3737
See [USAGE.md](doc/USAGE.md).
38+
# FAQ:
39+
See [FAQ.md](doc/FAQ.md).
3840
# Send us your feedback!
3941
Your use case, your suggestions, anyway, we would love to hear from you!
4042
[Discussions](https://github.com/RuriOSS/rurima/discussions/16)

blob/NOTE.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/FAQ.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# nosuid for su/sudo:
2+
If su/sudo cannot work, especially in termux, please try remounting the filesystem without suid:
3+
```sh
4+
mount -o remount,nosuid /data
5+
```
6+
# Network issues:
7+
## First, check dns setting:
8+
```sh
9+
cat /etc/resolv.conf
10+
```
11+
If there is no valid nameserver, please add one, for example:
12+
```sh
13+
rm -f /etc/resolv.conf
14+
echo "nameserver 1.1.1.1" >> /etc/resolv.conf
15+
```
16+
## If still having network issues:
17+
Try running [fixup.sh](../blob/fixup.sh) in container.
18+
Or see [#13](https://github.com/RuriOSS/rurima/issues/13#issuecomment-3411117953)
19+
# Network isolation:
20+
Rurima does not provide network isolation support, a possible implementation is at [net_wrapper.sh](../blob/net_wrapper.sh)

0 commit comments

Comments
 (0)