Ubuntu 安裝與設定 ssh server
大多數的 Linux 在安裝作業系統後就已經預設安裝了 ssh server,
不過 Ubuntu 系列預設好像沒有,
今天就來教大家如何安裝 ssh server,並做簡單的設定。
做完上面的就完成啦,是不是很簡單呢?
如果要從 windows ssh過去的話,可以試試這個超好用的 ssh 軟體:
Xshell、Xftp:超好用SSH Client軟體
關鍵字:linux, ssh, server, ubuntu, install, setup, 安裝, 設定
參考資料:
不過 Ubuntu 系列預設好像沒有,
今天就來教大家如何安裝 ssh server,並做簡單的設定。
要安裝 ssh server, 以下兩行指令都可以 # apt-get install ssh # apt-get install openssh-server 安裝後可以修改一些 ssh 的設定, 如port, 密碼認證, root登入等 # vim /etc/ssh/sshd_config Port 22 PasswordAuthentication yes PermitRootLogin yes -> 是否開放 root 登入 更改完存檔後記得重啟服務 # /etc/init.d/ssh restart
做完上面的就完成啦,是不是很簡單呢?
如果要從 windows ssh過去的話,可以試試這個超好用的 ssh 軟體:
Xshell、Xftp:超好用SSH Client軟體
關鍵字:linux, ssh, server, ubuntu, install, setup, 安裝, 設定
參考資料: