Execute all commands as root
tdnf install net-snmp net-snmp-devel net-snmp-perl
You will need all of them, otherwise you'll be missing scripts or MIBs.
rsync --no-g --no-p --no-o --chmod=ugo=rwX -rlt --progress --delete --exclude some_exclude $source $target |
version: "3.9" | |
services: | |
grafana: | |
container_name: grafana | |
image: grafana/grafana-oss:9.0.6 | |
volumes: | |
- ./grafana/etc:/etc/grafana:ro | |
- grafana-lib:/var/lib/grafana | |
- grafana-log:/var/log/grafana |
#include <list> | |
#include <vector> | |
#include <cmath> | |
#include <iostream> | |
#include "univhac.h" | |
int pow(int num, int exp) | |
{ | |
int rv = 1; | |
for(int i = 0; i < exp; i++) |
# Written by Florin Duroiu, see | |
# http://blog.newsplore.com/2009/03/01/political-boundaries-overlay-google-maps-2 | |
# | |
# Fixed for Google Maps API v3 by Ives van der Flaas <ives.vdf@gmail.com> | |
# Be sure to add | |
# | |
# <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> | |
# <script type="text/javascript" src="http://maps.google.com/maps/api/js?libraries=geometry&sensor=false"></script> | |
# | |
# to the including HTML page or it will not work (the decode function for encoded coordinates is in the geometry library.) |
# Written by Ives van der Flaas <ives.vdf@gmail.com>, 2011 | |
# | |
# License: Public domain. | |
# | |
# Defines | |
# | |
# RSYNC_INCLUDE_DIRS | |
# which contains the include directory for librsync.h | |
# | |
# RSYNC_LIBRARIES |