Skip to content

Instantly share code, notes, and snippets.

View bkralik's full-sized avatar

bkralik bkralik

View GitHub Profile
@bkralik
bkralik / readme.md
Created January 18, 2019 10:18 — forked from tuxmartin/readme.md
Nahrazeni/pridani parametru u systemd sluzby

Priklad: chceme zmenit hodnotu Nice pro sluzbu zabbix-agent.service

Vychozi je /lib/systemd/system/zabbix-agent.service, na ten nesahame, protoze by nam ho prepsalo apt pri aktualizaci.

Vyvorime adresar a soubor s nastavenim:

mkdir -p /etc/systemd/system/zabbix-agent.service.d
touch /etc/systemd/system/zabbix-agent.service.d/10-custom-nice.conf

Syntaxe je JMENO.service.d, tedy zabbix-agent.service.d.

@bkralik
bkralik / capturev4l2.c
Last active November 19, 2017 08:15 — forked from jayrambhia/capturev4l2.c
Better capturing routine for v4l2 in openCV
#include <errno.h>
#include <fcntl.h>
#include <linux/videodev2.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <unistd.h>
#include <opencv2/core/core.hpp>