ktorrent is a popular BitTorrent client for Linux systems that offers a range of features and a user-friendly interface. If you’re looking to install ktorrent 23.08.1 on your Linux machine, follow the steps outlined below. Step 1: Update System Packages Before installing any software, it’s always a good practice to update your system packages. Open your terminal and run the following command: sudo apt update This command will update the…
navdeep@d2:~$ sudo wget https://bin.appgate-sdp.com/5.2/client/appgate-sdp_5.2.1_amd64.deb Resolving bin.appgate-sdp.com (bin.appgate-sdp.com)… 13.35.191.126, 13.35.191.25, 13.35.191.46, … Connecting to bin.appgate-sdp.com (bin.appgate-sdp.com)|13.35.191.126|:443… connected. HTTP request sent, awaiting response… 200 OK Length: 69467042 (66M) [application/vnd.debian.binary-package] Saving to: ‘appgate-sdp_5.2.1_amd64.deb’ appgate-sdp_5.2.1_amd64.deb 100%[========================================>] 66.25M 3.16MB/s in 23s 2020-10-02 18:35:32 (2.92 MB/s) – ‘appgate-sdp_5.2.1_amd64.deb’ saved [69467042/69467042] navdeep@d2:~$ sudo dpkg -i appgate-sdp_5.2.1_amd64.deb Selecting previously unselected package appgate. (Reading database … 219333 files and directories currently installed.) Preparing to unpack appgate-sdp_5.2.1_amd64.deb … Unpacking appgate…
[root@server ~]# dnf list all | grep ^redis redis.x86_64 5.0.3-2.module_el8.2.0+318+3d7e67ea AppStream redis-devel.x86_64 5.0.3-2.module_el8.2.0+318+3d7e67ea AppStream redis-doc.noarch 5.0.3-2.module_el8.2.0+318+3d7e67ea AppStream [root@server ~]# https://www.youtube.com/watch?v=db7iWl5__lQ [root@server ~]# dnf install redis Last metadata expiration check: 0:01:42 ago on Mon 07 Sep 2020 05:56:36 PM IST. Dependencies resolved. ============================================================================================================================================= Package Architecture Version Repository Size ============================================================================================================================================= Installing: redis x86_64 5.0.3-2.module_el8.2.0+318+3d7e67ea AppStream 925 k Enabling module streams: redis 5 Transaction Summary ============================================================================================================================================= Install 1 Package Total download size: 925…
MariaDB 10.5 is the current stable version of MariaDB series. #1 – Create a repo Here is your MariaDB YUM/DNF repository entry for CentOS. Copy and paste it into a file under /etc/yum.repos.d/mariadb.repo [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.5/centos8-amd64 module_hotfixes=1 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 #2 – Install MariaDB 10.5 We will only use the mariadb repo while running installation command. dnf install MariaDB-server -y –disablerepo=* –enablerepo=mariadb Last metadata expiration check: 0:11:45…
We will use REMI repository to install PHP 8.0 on CentOS 8 / RHEL 8 Linux system Steps:- dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm dnf –enablerepo=remi-test install php80 dnf install -y php80-php-common php80-php-fpm php80 php80-php-cli php80-php php80 -v systemctl start php80-php-fpm systemctl status php80-php-fpm ip a |grep ens33|grep inet|awk ‘{print $2}’|awk -F “/” ‘{print $1}’ vim /var/www/html/info.php curl -I http://localhost/info.php Video :- https://www.youtube.com/watch?v=qDqjxL5brQU Github https://github.com/NavdeepD2/How-to/blob/master/install-php-8.0-on-CentOS-8 Detailed Output:- [root@server…