mirror of
https://github.com/azlux/log2ram
synced 2024-11-23 13:56:30 +00:00
Compare commits
2 Commits
3d7dda2029
...
b3e8da8480
Author | SHA1 | Date | |
---|---|---|---|
|
b3e8da8480 | ||
|
d38fb203d7 |
26
README.md
26
README.md
@ -59,14 +59,30 @@ The log is also written to `/var/log/log2ram.log`.
|
|||||||
You can also inspect the mount folder in RAM with:
|
You can also inspect the mount folder in RAM with:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# df -hT | grep log2ram
|
df -hT | grep log2ram | awk '{print " Name: " $1 "\nMount: " $7 "\n Type: " $2 "\nUsage: " $6 "\n Size: " $3 "\n Used: " $4 "\n Free: " $5}'
|
||||||
log2ram 40M 532K 40M 2% /var/log
|
|
||||||
```
|
```
|
||||||
or also:
|
Returns:
|
||||||
|
```bash
|
||||||
|
Name: log2ram
|
||||||
|
Mount: /var/log
|
||||||
|
Type: tmpfs
|
||||||
|
Usage: 72%
|
||||||
|
Size: 128M
|
||||||
|
Used: 93M
|
||||||
|
Free: 36M
|
||||||
|
```
|
||||||
|
|
||||||
|
Or also:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# mount | grep log2ram
|
mount | grep log2ram | awk -F'[ ()]+' '{print " Name: " $1 "\n Mount: " $3 "\n Type: " $5 "\nOptions: " $6}'
|
||||||
log2ram on /var/log type tmpfs (rw,nosuid,nodev,noexec,relatime,size=40960k,mode=755)
|
```
|
||||||
|
Returns:
|
||||||
|
```bash
|
||||||
|
Name: log2ram
|
||||||
|
Mount: /var/log
|
||||||
|
Type: tmpfs
|
||||||
|
Options: rw,nosuid,nodev,noexec,noatime,size=131072k,mode=755,uid=100000,gid=100000,inode64
|
||||||
```
|
```
|
||||||
|
|
||||||
If you do not get any line as response of these commands, something is not working. Refer to [this section](#is-it-working).
|
If you do not get any line as response of these commands, something is not working. Refer to [this section](#is-it-working).
|
||||||
|
Loading…
Reference in New Issue
Block a user