最新文章第2页
[树莓派] 在树莓派上手动安装并搭建 Elasticsearch 搜索引擎集群-天煜博客

[树莓派] 在树莓派上手动安装并搭建 Elasticsearch 搜索引擎集群

在树莓派上跑了很多的服务,有不少是需要用到搜索功能的,如果仅仅是使用 MySQL 数据库自带的 LIKE 语句来搜索,还是太弱了。 所以折腾了好几次,准备在树莓派上跑一个 Elasticsearch 全文搜索...
编程麻瓜的头像-天煜博客编程麻瓜5年前
02056
推荐一款开源的截图工具火焰截图Flameshot-天煜博客

推荐一款开源的截图工具火焰截图Flameshot支持Linux和Windows

在Ubuntu环境下,我挺喜欢使用这个软件的。安装也挺简单的,直接在终端运行命令即可。 sudo apt install flameshot Flameshot 自带一系列非常好的功能,例如: 可以进行手写 可以划直线 可以画...
《数据结构》(浙大版)笔记+题解目录-天煜博客

《数据结构》(浙大版)笔记+题解目录

文章目录 前言 基本概念 线性结构 树 图 排序 散列查找 KMP 前言 中国大学MOOC上浙大的《数据结构》广受好评,原因有二,一是基础,简单易懂,老师讲得也清楚,另一大优点就是配套的每周相应知...
编程麻瓜的头像-天煜博客编程麻瓜6年前
09514
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)Kibana

I’ve seen a lot of posts where people have had Kibana up and running, out of the (virtual)box from HCM PI 34. I had issues getting the dashboards and visualizations to work. Many ...
RTSP 与 RTMP 协议-天煜博客

RTSP 与 RTMP 协议

RTSP(Real Time Streaming Protocol) RTSP协议,这应该是实时性最好的了,如果要想实时性要求很高,比如0.5s以内,这个是不错的选择。前阵子模仿spydroid写了个建议的rtsp服务器,其实就是optio...
编程麻瓜的头像-天煜博客编程麻瓜5年前
0975
Linux用户与用户组基础-天煜博客

Linux用户与用户组基础用户和用户组的基本操作

相关的三个文件 1. 用户文件:/etc/passwd root:x:0:0:root:/root:/bin/bash 用户名:x:uid:gid:描述:HOME:shell 1.用户名(不能相同) 2.口令位 3.uid(不同用户可以使用相同的uid) 4.gid(默认组...
编程麻瓜的头像-天煜博客编程麻瓜6年前
08314
【MPP踩坑记录】RK3588跑MPP的./mpi_dec_test运行报错-天煜博客

【MPP踩坑记录】RK3588跑MPP的./mpi_dec_test运行报错

报错截图 topeet@topeet:~/work/mpp/build/linux/aarch64/test$ ./mpi_dec_test -i /home/topeet/Videos/vehicle_record_0_20260503_175006_raw.h264 -o out/out1.yuv -w 1920 -h 1080 -t 7 mpp...
编程麻瓜的头像-天煜博客编程麻瓜2个月前
01415
解决FFmpeg6.1.1编译后缺少ffplay的问题-天煜博客

解决FFmpeg6.1.1编译后缺少ffplay的问题

解决FFmpeg6.1.1编译后缺少ffplay,只有ffmpeg和ffprobe没找到ffmpeg原因:缺少SDL的库sudo apt-get install libsdl1.2-dev sudo apt-get install libsdl2-dev原文链接:https://blog.csdn.net/...
OpenCV使用cv::VideoCapture无法读取视频 isOpened()总返回false-天煜博客

OpenCV使用cv::VideoCapture无法读取视频 isOpened()总返回false

#include <opencv2/opencv.hpp> #include <iostream> int main() { cv::Mat frame; std::string videoPath = '/home/z/Number.mp4'; // 修改为你的视频文件路径 // 打开视频文件 cv::Vide...
线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy-天煜博客

线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy

主要函数说明 int pthread_mutex_init (pthread_mutex_t *__mutex,const pthread_mutexattr_t *__mutexattr)创建一个锁; int pthread_mutex_destroy (pthread_mutex_t *__mutex)销毁锁; int pth...