树莓派 Linux备忘

复制代码
//更新树莓派
sudo apt-mark hold raspberrypi-bootloader
sudo apt-get update
sudo apt-get upgrade
 
//配置
raspi-config
 
//安装git
sudo apt-get install git-core
 
//安装wiringPi
git clone git://git.drogon.net/wiringPi 
 
//camera
sudo apt-get install libjpeg8-dev
sudo apt-get install cmake
git clone https://github.com/jacksonliam/mjpg-streamer.git
 
cd mjpg-streamer
make
sudo make install
 
mjpg_streamer -i "input_uvc.so -d /dev/video0 -r 320x240 -f 15" -o "output_http.so -p 8090 -w ./www"
 
//查看占用空间
 sudo du -h --max-depth=1 /opt
 
//删除非空目录
rm -rf ***
 
//ssh客户端提示加密算法错误,可以使用putty连接
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,umac-64@openssh.com,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,curve25519-sha256@libssh.org
 
//修改ssh的配置文件 /etc/ssh/sshd_config 添加上列行
 
//重启ssh服务
cd /etc/init.d
sudo ./ssh restart
复制代码

 

 
posted @   李久寧  阅读(310)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
点击右上角即可分享
微信分享提示