How To Monitor Disk Load in Linux
How To Monitor Disk Load in Linux iostat utility will help measure and monitor hard drive load: # iostat -dx /dev/sda 5 As result you can see output: How to Securely Wipe Hard Drive in Linux
How To Monitor Disk Load in Linux iostat utility will help measure and monitor hard drive load: # iostat -dx /dev/sda 5 As result you can see output: How to Securely Wipe Hard Drive in Linux
How To Create a Sudo User CentOS Login into your server as root. If you already have user you can use usermod command ro add the user to the wheel group: # usermod -aG wheel username For testing sudo for that… Continue Reading
In this article you will learn how to check disk speed in Linux from terminal. We can check Linux disk (HDD or SSD) I/O performance with hdparm command. Hdparm is a command line utility for Linux to set and view… Continue Reading
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
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… Continue Reading
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… Continue Reading
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… Continue Reading
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… Continue Reading
You can use pip: sudo apt-get install python3-pip sudo pip3 install –upgrade youtube_dl
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… Continue Reading