Avançar para o conteúdo principal

Mensagens

Shelly

Change Shelly MQTT update period Shelly devices are very active on MQTT: they send an update of their status by default every 30 seconds, even when the status didn’t change. Use the following HTTP command to change the update period:                                                                                                                              http://x.x.x.x/settings?mqtt_update_period=300                                                        ...
Mensagens recentes
I work on a Calculate Linux KDE with 5.4.6 kernel. I tried to install Workstation 15.5.1 and I had the same problem. After the installation of workstation, I had to clone this git repo : GitHub - mkubecek/vmware-host-modules: Patches needed to build VMware (Player and Workstation) host modules against rece… I used the workstation-15.5.1 branch. I had to install the sys-kernel/linux-headers to be able to build vmmon-only and vmnet-only modules (because these two were not working at all). To install modules, simply run make and make install as root. It will replace modules initially installed by the vmware installer. Summary of all commands : git clone https://github.com/mkubecek/vmware-host-modules.git cd vmware-host-modules git checkout workstation-15.5.1 make make install After the installation, I ran this command : /etc/init.d/vmware start All modules started to work sucessfully. Because I did all these tests on a virtual machine, I had to follow this tutorial...
Montar partilha remota do windows 10 no Linux mount.cifs //172.20.35.15/E/GDrivePhotos /media/GDrive -o vers=3.0,username=meu_user,password=**********

Configurar uma firewall usando IP Tables no Ubuntu 14.04

Sobre IP Tables  De forma a tornar um servidor mais seguro após a sua configuração inicial, o Ubuntu disponibiliza o Iptables como firewall padrão desta distribuição. No início a firewall no Ubuntu está configurada para permitir todo o tráfego de entrada e saída num servidor. Para obtermos uma proteção mais forte no servidor teremos que acrescentar algumas regras básicas ao IP Tables. As regras da IP table têm origem numa serie de opções que podem ser combinadas de forma a criar um processamento específico. Cada pacote que atravessa a firewall é verificado ordenadamente por cada regra. Logo que haja uma correspondência com uma regra é executada a ação associada a essa regra, caso contrario é verificada a regra seguinte. Comandos IP Tables -A, --append [chain rule-specification]               Adicionar uma ou mais regras ao final cadeia escolhida; -L, --list [chain]      ...