Glossary:
- md: multiple devices
| command | description |
|---|---|
cat /proc/mdstat |
show status of all raids |
mdadm --detail /dev/md0 |
detailed status of raid md0 |
| #!/bin/bash | |
| # This script cleans all cache for Microsoft Teams on Linux | |
| # Tested on Ubuntu-like, Debian by @necrifede, Arch Linux by @lucas-dclrcq and Manjaro with flatpak by @danie1k. Feel free to test/use in other distributions. | |
| # Tested Teams via snap package. | |
| # Tested Teams via flatpak package. | |
| # | |
| # How to use in terminal: | |
| # ./clear_cache_MS_Teams.sh ( deb-stable | deb-insider | snap | flatpak ) | |
| # or |
| local log = ngx.log | |
| local exit = ngx.exit | |
| local null = ngx.null | |
| local ERR = ngx.ERR | |
| local INFO = ngx.INFO | |
| local DEBUG = ngx.DEBUG | |
| local HTTP_INTERNAL_SERVER_ERROR = ngx.HTTP_INTERNAL_SERVER_ERROR | |
| -- Setup Redis connection | |
| local redis = require "resty.redis" |