樹莓派備忘錄(序)系統準備

2021-08-21 02:30:16 字數 1771 閱讀 5061

燒錄工具

無顯示器時,tf卡內建立乙個名為ssh無字尾的檔案用於開啟ssh

ssh連線工具略

手機端連線工具 serverauditor

遠端桌面需要

sudoapt-get install xrdp

sudoapt-get install tightvncserver

pi zero時無網口  需要linux系統下修改wifi配置   見wifi配置

pi zero兩個micro usb比較近 otg最好選線而非轉接頭

解鎖root使用者

pi使用者預設密碼raspberry

輸入命令

sudo passwd root

設定密碼

然後輸入命令

sudo passwd --unlock root

apt-get換源

編輯 /etc/apt/sources.list 檔案

以清華源舉例

deb  jessie main non-free contrib

deb-src  jessie main non-free contrib

中國科學技術大學

raspbian 

阿里雲raspbian 

清華大學

raspbian 

華中科技大學

raspbian 

arch linux arm 

華南農業大學(華南使用者)

raspbian 

大連東軟資訊學院源(北方使用者)

raspbian 

重慶大學源(中西部使用者)

raspbian 

新加坡國立大學

raspbian 

牛津大學

raspbian 

南韓kaist大學

raspbian 

更新軟體源資料   apt-get update

更新已安裝軟體   apt-get upgrade

ssh問題

algorithm negotiation failed錯誤

編輯  /etc/ssh/sshd_config

增加如下**

ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc

macs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160,hmac-sha1-96,hmac-md5-96

kexalgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,[email protected]

重啟服務 service ssh restart

導致此問題的原因是ssh公升級後,為了安全,預設不再採用原來一些加密演算法,我們手工新增進去即可。

遠端root登入問題

編輯  /etc/ssh/sshd_config

修改 permitrootlogin without-password 為 permitrootlogin yes

樹莓派備忘錄(三)Python配置

2018 04 18 raspbian stretch.img 自帶3個版本的python,2.7,3.0.3.5 預設2.7 解除安裝python2.7 sudo apt get autoremove python2.7 設定python3.5為預設 sudo ln s usr bin pytho...

備忘錄系統 需求篇

設計資料庫 表結構 設計前後端互動介面 實現伺服器端和客戶端的邏輯 1.只支援單個使用者 2.實現針對文章的增刪查改 3.實現針對標籤的增刪查改 客戶端 網頁的形式 伺服器端 http協議 資料庫 mysql 展現備忘錄列表頁面 展現備忘錄詳情頁面 管理備忘錄頁面 例如 當使用者在客戶端 網頁 執行...

python實現簡單的備忘錄系統

python3實現 備忘錄系統 1.類與類之間的呼叫 2.迴圈和分支 3.類的建立與使用 分析 控制台實現 基本功能 1.查詢 2.建立 3.修改 4.刪除 5.退出 1.主程式類 2.功能實現類 屬性 列表容器 標題 內容 1.主程式類 class text 備忘錄的存放容器 list note ...