Cisco
Cisco SPA504G Time 1 Hour Behind
How to fix Cisco SPA504G Time In “Regional” tab Set: Ignore DHCP Time Offset: yes Daylight Saving Time Enable: yes Daylight Saving Time Rule: start=10/1/7/03:0:0;end=4/1/7/02:0:0;save=1
Cisco
How to fix Cisco SPA504G Time In “Regional” tab Set: Ignore DHCP Time Offset: yes Daylight Saving Time Enable: yes Daylight Saving Time Rule: start=10/1/7/03:0:0;end=4/1/7/02:0:0;save=1
Linux
How to fix OpenVAS error: Login failed. OMP service is down Just run two commands from Linux terminal: # openvasmd stop # openvasmd start If you like what you are reading, please: Buy me a coffee
Windows
How to create a Windows 10 UEFI bootable USB disk Download last version Rufus utility from official website: https://rufus.akeo.ie/. Of course you also will need Windows ISO image. Your USB blank disk must have at least 4 GB free space. 1. Run Rufus utility and choice USB
Linux
Your server appearing pretty slow could be many things from wrong configs, scripts and dodgy hardware – but sometimes it could be because someone is flooding your server with traffic known as DoS ( Denial of Service ) or DDoS ( Distributed Denial of Service ). Denial-of-service attack (DoS attack) or Distributed Denial-
FFmpeg
Deinterlacing MTS Video with ffmpeg $ ffmpeg -i input_file.MTS -vf yadif=1 -acodec ac3 -ab 192k -vcodec mpeg4 -f mp4 -y -qscale 0 deinterlaced.mp4 Just replace input_file.MTS with your input file name. ffmpeg you can download here.
VoIP
How To Enable Web GUI on Adtran Totall Access TA 924 from console, and configure static IP on Ethernet port First you need connect your Adtran TA to your PC via console port. Also make sure your computer and Adtran connected to same network switch and set on your computer
Linux
Apache Tomcat on Ubuntu 16.04 Apache Tomcat is an open-source software implementation of the Java Servlet and Java Server Pages technologies. With this guide, you’ll run applications within Tomcat using the OpenJDK implementation of the Java development environment. Before You Begin * Make sure following commands to make
CentOS
How To Install Htop on CentOS 7 In this article I will show how to Install htop on CentOS 7 Linux from EPEL repository. Htop is a one of the best an alternative tool for Linux top command. By default CentOS7 comes without htop utility. It can be found in
FFmpeg
Use Youtube-dl With FFmpeg How to Using youtube-dl with ffmpeg or How to grab YouTube video and re stream as live RTMP stream with FFMPEG First you need install youtube-dl and ffmpeg last version (because last ffmpeg builds supports https protocol) Here is examples how to use
Linux
You can use pip: sudo apt-get install python3-pip sudo pip3 install --upgrade youtube_dl
Linux
Setup a Private Anonymous Proxy server Squid Update System # apt-get update # apt-get upgrade Installng Squid3 pakage # apt-get install squid3 squid3-common Edit Squid configuration file: # vi /etc/squid3/squid.conf To allow the access to Squid proxy only from your IP, find and uncomment next line and
CentOS
How to Start/Stop and Enable/Disable FirewallD CentOS 7 Start FirewallD Service # systemctl start firewalld Stop FirewallD Service # systemctl stop firewalld Check the Status of FirewallD # systemctl status firewalld Check the State of FirewallD # firewall-cmd --state Disable FirewallD Service # systemctl disable firewalld Enable FirewallD Service # systemctl enable firewalld