diff --git a/docs/kugetsu-setup.md b/docs/kugetsu-setup.md index 823269e..0a826b7 100644 --- a/docs/kugetsu-setup.md +++ b/docs/kugetsu-setup.md @@ -60,7 +60,16 @@ docker run -d --name \ Run the setup script inside your container: ```bash -curl -fsSL https://raw.githubusercontent.com/shoko/kugetsu/main/skills/kugetsu/scripts/sshd-setup.sh | bash -s -- +curl -fsSL https://raw.githubusercontent.com/shoko/kugetsu/main/skills/kugetsu/scripts/sshd-setup.sh -o sshd-setup.sh +chmod +x sshd-setup.sh +bash sshd-setup.sh +``` + +Or if you have cloned the repository: + +```bash +chmod +x skills/kugetsu/scripts/sshd-setup.sh +bash skills/kugetsu/scripts/sshd-setup.sh ``` Replace `` with your preferred username, or omit to use default `kugetsu`. diff --git a/skills/kugetsu/SKILL.md b/skills/kugetsu/SKILL.md index ee3217b..6cb7cc4 100644 --- a/skills/kugetsu/SKILL.md +++ b/skills/kugetsu/SKILL.md @@ -201,6 +201,7 @@ To access kugetsu from a remote machine, SSH setup is required. Run the SSH setup script inside your container: ```bash +chmod +x skills/kugetsu/scripts/sshd-setup.sh bash skills/kugetsu/scripts/sshd-setup.sh ```