使用windows上的linux子系統通過ssh連線樹莓派。
安裝expect
sudo apt-get install tcl tk expect
寫登陸指令碼
'''
cd
touch connect_to_pi.sh
chmod +x connect_to_pi.sh
vim connect_to_pi.sh
// 以下為文字內容
#! /usr/bin/expect
set timeout 3
set host "192.168.11.104" // your raspberrypi ip
set username "pi" // your username
set password "raspberrypi" // your password
set timeout 10
spawn ssh $username@$host
expect "*password*"
interact
// 文字結束
:wq
使用指令碼登陸
'''
cd
./connect_to_pi.sh
使用命令別名執行指令碼
'''
cd
vim .bashrc
// 檔案中新增下一行
alias sshpi="/home/xiaohei/connect_to_pi.sh" // 改為自己的使用者
:wqsource .bashrc
使用windows遠端桌面連線樹莓派
樹莓派上安裝xrdp
遠端桌面
參考:
windows遠端桌面連線樹莓派
在網上看到很多關於windows遠端桌面連線樹莓派的教程。我也按照教程試過了,遇到了幾個坑。特意記錄在這。先說正確的步驟。1.必須先安裝tightvncserver!sudo apt get install tightvncserver2.再安裝xrdp服務。sudo apt get install...
windows遠端桌面連線樹莓派
1 樹莓派上需要安裝xrdp an open source remote desktop protocol rdp server sudo apt get install xrdp 遠端桌面開啟方式,開始選單中搜尋 mstsc 或者 遠端桌面 2 可以使用vnc鏈結raspberrypi。那麼ras...
樹莓派 ubuntu 遠端連線
一 安裝ssh服務 二 啟動服務 三 本機測試是否能夠成功登入或其他工具鏈結登入 四 設定root登入 sudo apt get install openssh server etc init.d ssh startssh l 使用者名稱 本機ip第一步 sudo passwd 設定root密碼 第...