Install CentOS 8 from Net boot ISO
CentOS 8 provide 2 type of ISO. One that ends with boot.iso, this is 534 MB. This only include essential files to…
CentOS 8 provide 2 type of ISO. One that ends with boot.iso, this is 534 MB. This only include essential files to…
CentOS 8 is a short-lived Linux distribution based on Red Hat Enterprise Linux (RHEL). Due to a change in policy, CentOS 8…
To start Apache from command line with out using a systemd service file or init script, run /usr/sbin/httpd -DFOREGROUND To stop Apache,…
To download RPM file from yum repo, you need to install yum-utils package. yum install -y yum-utils Now you can use command…
Tor is provided by EPEL repository on CentOS 7. Install EPEL repo with command yum install epel-release Install tor yum install tor…
yum-config-manager allows you to manage yum repositories. To add a repo, run yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo Disable a repository yum-config-manager –disable rpmfusion-free-updates See…
To add IP address on a Linux server, first find name of your network interface. This can be done with command ip…
To install vnstat on CentOS 7, run yum install vnstat -y Now create database for your network interface card vnstat –create -i…
transmission is a torrent client. This come with a web GUI, that make it easy to installed on a remote server with…
To install MongoDB 4.0 (for other versions, see release note) on CentOS 7, create file vi /etc/yum.repos.d/mongodb-org-4.0.repo Add content [mongodb-org-4.0] name=MongoDB Repository…
To install vsftpd FTP server in CentOS, run yum install -y vsftpd Enable vsftpd to start on boot systemctl enable vsftpd Edit…