CentOS 7.0安装Nvidia驱动

由于安装官方的nvidia时需要不能使用开源nv驱动

1、使用无图形显卡驱动启动

启动时选择内核时,按“e”进入编辑状态
GRUB_CMDLINE_LINUX_DEFAULT=" xxxx " 加入 nomodeset
然后ctrl+x启动

启动完成后用命令确认
glxinfo | grep render …

阅读全文

树莓派游戏机

树莓派游戏机官方文档

https://retropie.org.uk/docs/First-Installation/

树莓派游戏机ROM下载

https://retropie.org.uk/download/

阅读全文

树莓派4B gocv异动监测

CVMotion(异动监测)

  • (1) 本地显示摄像头内容,并且标记异动
  • (2) 远程访问摄像头内容
  • (3) 分时段存储相关摄像头内容,仅仅存储异动内容,去除静止图形
  • (4) 保持的视频中图像和时间标识
  • (5) 支持windows,Linux,树莓派32位/64w位

more: …

阅读全文

树莓派测试Clang和GCC,OpenGL

0、打开OpenGL驱动

sudo raspi-config
//打开Advanced Options→GL Driver,选择第一GL (Full KMS) Desktop Drivers或第二选项GL (Fake KMS) Desktop Driver

或者直接在/boot/config.txt里添加一行dtoverlay=vc4-kms-v3d …

阅读全文

CentOS 软件安装

1、配置wget

#] vim /etc/wgetrc 
use_proxy=yes
http_proxy=127.0.0.1:7890
https_proxy=127.0.0.1:7890

即可使用代理下载软件

2、配置git代理和短命令

#] vim .gitconfig
[user]
        name = xxx …

阅读全文