包含标签 Raspberrypi 的文章

apt dpkg 基础命令

apt-get 基础命令 安装软件 apt-get install softname1 softname2 softname3…… 卸载软件 apt-get remove softname1 softname2 softname3…… 卸载并清除配置 apt-get remove –purge softname1 更新软件信息数据库 apt-get update 进行系统升级 apt-get upgrade 搜索软件包 apt-cache search softname1 softname2 softname3…… apt-cache search # ------(package 搜索包) apt-cache show #------(package 获取包的相关信息,如说明、大小、版本等) sudo apt-get install # ------(package 安装包) sudo apt-get……

阅读全文

raspi 基本软件

更改SD卡配置 sudo raspi-config 带3.5LCD 更新 sudo apt-mark hold raspberrypi-bootloader sudo apt-get update sudo apt-get upgrade 源 sudo cp /etc/apt/sources.list /etc/apt/sources.list_bak sudo nano /etc/apt/sources.list sudo apt-get update deb http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib deb-src http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib 屏幕校准 su pi DISPLAY=:0.0 xinput_calibrator //修改参数 sudo nano /etc/X11/xorg.conf.d/99-calibration.conf //文件内容 Option “Calibration” "3968 89 193 3928" smb //安装smb sudo apt-get install samba samba-common-bin //备份 sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_bak //修改文件 sudo nano /etc/samba/smb.conf //版本1 [global] log file = /var/log/samba/log.%m [topest_dic] path = / read only = no……

阅读全文