Category Archives: General

Install aria2 1.34.0 or 1.35.0 on CentOS 7

I have created a rpm with latest source of aria2. This rpm is built for centos 7. You can download the latest rpm from link below: https://dl.dropboxusercontent.com/s/vrh8kod21mzvvt9/aria2-1.35.0-0.x86_64.rpm Version: 1.35 https://dl.dropboxusercontent.com/s/vrh8kod21mzvvt9/aria2-1.34.0-0.x86_64.rpm Version: 1.34 gpgcheck have to be turned off because rpm is not signed. Run following command to install aria2 : Install the rpm using: How

Read More

Get Interface Speed In Linux Using Shell Script

Following is the shell script you can use to check the current throughput of network interface #!/bin/bash var=0 interface=”eth0″ while [ $var -eq 0 ] do tx=`cat /sys/class/net/$interface/statistics/tx_bytes` rx=`cat /sys/class/net/$interface/statistics/rx_bytes` sleep 1s tx1=`cat /sys/class/net/$interface/statistics/tx_bytes` rx1=`cat /sys/class/net/$interface/statistics/rx_bytes` txw=`expr $tx1 – $tx` rxw=`expr $rx1 – $rx` echo “$txw:$rxw” | cat > /home/speed.txt done Please check $interface variable

Read More

Mariadb (Mysql) Failed Due To tc.log error

Today I restarted my CentOS 7.4 server and I found that my Mariadb server is not starting. While trying the command systemctl start mariadb the server showed error that Mariadb (MySql) server is unable to start try the command systemctl status mariadb for more information. I tried the above mentioned command and there was following

Read More

Setup VPS as SeedBox Centos7

You should have access to SSH (Terminal). Now use the following command to update the system: yum -y update Now reboot the system using ” reboot ” Command. Now install wget utility yum -y install wget After it, we need to download a .sh file. Use the following command to do it: wget https://downloads.faltutech.com/seedbox/install.sh Now run the script bash

Read More

How to Install Any PHP Extension On CentOs

First of all, you have to enable remi repository: Follow step on this website. Backup of Page Now search the available extensions :  Use Command -> yum search php- Above command will show all the available packages with name php. Now select the name of your extension according to your php version (php -version). Restart apache -> systemctl restart

Read More