如何在NAS伺服器中設定git(git、ssh、busybox)

如何在NAS伺服器中設定git(git、ssh、busybox)

我正在嘗試使用我的 Synology DS212J NAS 伺服器設定 git。

我一直遵循這些說明: https://www.wonko.de/2011/01/set-up-git-on-synology-nas.html

但我是 git 的初學者。

到目前為止,我還停留在它所說的部分:

然後編輯 /etc/passwd 以允許使用者使用 ssh。我們更改主目錄設定登入 shell:

...
user1:x:1026:100::/volume1/home/user1:/bin/sh 
...

我不斷得到:

-ash: user1:x:1026:100::/volume1/home/user1:/bin/sh: not found

有人有什麼想法嗎?

答案1

看來您只是在 shell 中輸入該行,您需要按照其說明編輯 /etc/passwd 檔案(使用vi或您安裝的任何編輯器)並添加該行(假設user):

vi /etc/passed

前往文件末尾,點擊shift-a進入插入模式,點擊Enter開始新行,然後貼上以下內容:

user1:x:1026:100::/volume1/home/user1:/bin/sh 

然後Esc然後儲存文件:

:wq

相關內容