From 2e1bd78b0f2b2d71c13fe56ed6326a90f26e00ea Mon Sep 17 00:00:00 2001 From: quietsy Date: Mon, 15 Apr 2024 16:19:51 +0300 Subject: [PATCH] Fix a typo in the OS command --- docs/general/how-to-get-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/general/how-to-get-support.md b/docs/general/how-to-get-support.md index 6839c5814..a7c8f499c 100644 --- a/docs/general/how-to-get-support.md +++ b/docs/general/how-to-get-support.md @@ -3,7 +3,7 @@ 1. Join our [discord server](https://discord.gg/YWrKVTn), read our [support policy](../misc/support-policy.md), and read the description of each channel before asking for support. 2. SSH to your server and run the following command to create an alias that gathers the information we require: ```bash - alias lsiosupport='function _lsiosupport(){ uname -a > lsiosupport.txt; docker -v >> lsiosupport.txt; cat /etdc/os-release >> lsiosupport.txt; docker inspect --format "$(wget -qO- https://docs.linuxserver.io/assets/run.tpl)" $1 >> lsiosupport.txt; docker logs $1 >> lsiosupport.txt; }; _lsiosupport' + alias lsiosupport='function _lsiosupport(){ uname -a > lsiosupport.txt; docker -v >> lsiosupport.txt; cat /etc/os-release >> lsiosupport.txt; docker inspect --format "$(wget -qO- https://docs.linuxserver.io/assets/run.tpl)" $1 >> lsiosupport.txt; docker logs $1 >> lsiosupport.txt; }; _lsiosupport' ``` The alias gathers the following information: OS details, docker version, run command, and container logs. 3. Execute the alias with a container name: