Archivo del Autor: carlosap

SNMP on Centos 7.5 config

InstallInstall the service using our loved yum. yum install net-snmp net-snmp-utils ConfigTo the configuration; which can be found here : /etc/snmp/snmpd.confI however remove the original one -most of the time- and just copy/paste the one I use on all servers; Keep the original for reference, although its very verbose (IMHO) mv /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.ori This is the config… Leer más »

Setting up Wake-on-lan on Ubuntu Server 18.04 LTS

Alright, where to begin?! So what is the problem? The steps for preparing Ubuntu for WoL are as follows: Install ethtool with:sudo apt-get install ethtool– Ubuntu Server 18.04 LTS already has this installed Run:ifconfigto get the name of your network interface. Its worth noting here that all the guides I found say that “your network interface is most… Leer más »

tightvnc ubuntu 18 – Xfce Desktop

STEP 1: PREPARE YOUR SYSTEM FOR UBUNTU VNC SETUP Before installing VNC on Ubuntu let’s update the system. First, gain access to your server’s command line. This can be done through SSH remotely, terminal if you are on the server, or whatever method you usually use. Once you’ve gained access to your server, make sure you have… Leer más »

What is motionEye?

motionEye is a web frontend for the motion daemon, written in Python. https://github.com/ccrisan/motioneye/wiki

raspberry autoupdate

Add the following lines of code to the file and save it (ctrl + X, Y and enter). This will the basis for the automatic updates: #!/bin/sh sudo apt-get update && sudo apt-get upgrade -y sudo rpi-update sudo apt-get autoremove sudo apt-get autoclean sudo reboot You will want to make the shell script executable using the following command:… Leer más »