树莓派 raspbian 系统常用命令

本帖最后由 000 于 2016-1-24 16:34 编辑

树莓派  raspbian 常用的操作命令
  1. sudo reboot   # 重启
  2. sudo halt     # 关机
  3. sudo rpi-update     #树莓派更新
  4. sudo apt-get update     #更新软件信息数据库 
  5. sudo apt-get upgrade     #进行系统升级 
  6. sudo raspi-config     #配置
  7. ifconfig     #显示联网信息,会返回有线网络和无线网络的MAC地址和IP地址状态
  8. sudo apt-get install xrdp     #WINDOWS的远程桌面连接树莓派服务
  9. sudo apt-get install 软件名1 软件名2 软件名3……     #安装软件 
  10. sudo apt-get remove 软件名1 软件名2 软件名3……        #卸载软件
  11. sudo apt-get remove –purge 软件名1     #卸载并清除配置
  12. sudo apt-cache search 软件名1 软件名2 软件名3……      #搜索软件包 
  13. sudo apt-get install chromium-browser  chromium-l10n     #安装chrome
复制代码

你可能感兴趣的:(树莓派)