Skip to main content

Posts

How to install Nginx Proxy Manager on proxmox 8.3.2 container

How to install FREE Helpdesk TICKETING SYSTEM OSTicket on ubuntu server 22.04

  sudo apt update -y && sudo apt upgrade -y sudo apt install apache2 -y sudo systemctl enable apache2 && sudo systemctl start apache2 sudo systemctl status apache2 sudo apt-get install php8.1 php8.1-cli php8.1-common php8.1-imap php8.1-redis php8.1-snmp php8.1-xml php8.1-zip php8.1-mbstring php8.1-curl php8.1-mysqli php8.1-gd php8.1-intl php8.1-apcu libapache2-mod-php -y  php -v sudo apt install mariadb-server -y sudo systemctl start mariadb && sudo systemctl enable mariadb sudo systemctl status mariadb CREATE DATABASE osticket; GRANT ALL PRIVILEGES ON osticket.* TO helpdesk@localhost IDENTIFIED BY "YOURPASSWORD"; FLUSH PRIVILEGES; EXIT; cd /var/www/html curl -s https://api.github.com/repos/osTicket/osTicket/releases/latest | grep browser_download_url | cut -d '"' -f 4 | wget -i - unzip osTicket-v1.18.zip cp /var/www/html/upload/include/ost-sampleconfig.php /var/www/html/upload/include/ost-config.php  rm osTicket-v1.18.zip chown -R www-dat...

How to install Webmin on Ubuntu server 20.04

Commands used to install :  sudo apt update sudo apt install software-properties-common apt-transport-https wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib" sudo apt install webmin https://your_server_ip:10000

How to install Wordpress on Ubuntu server 22.04

Video Training Commands : sudo apt update sudo apt install apache2 sudo apt install mysql-server sudo mysql_secure_installation sudo apt install php libapache2-mod-php php-mysql sudo systemctl restart apache2 sudo mysql    CREATE DATABASE wordpress;    CREATE USER 'wordpressuser'@'localhost' IDENTIFIED BY 'password';    GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpressuser'@'localhost';    FLUSH PRIVILEGES;    EXIT;     cd /tmp curl -LO https://wordpress.org/latest.tar.gz tar xzvf latest.tar.gz cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php sudo nano /tmp/wordpress/wp-config.php (Update the username, database name and the password in the config file)     define( 'DB_NAME', ' wordpress ' );     define( 'DB_USER', ' wordpressuser ' );     define( 'DB_PASSWORD', ' password ' );      sudo rsync -avP /tmp/wordpress/ /var/www/html/      sudo cho...

How to Install Jellyfin Media Server on Ubuntu

Video Training Jellyfin is a free, open-source media server that allows you to organize and stream your media files from any device on your network. Here’s a quick guide on installing Jellyfin on Ubuntu. Step-by-Step Installation Commands Update your system packages: sudo apt update Install necessary software packages: sudo apt install apt-transport-https wget software-properties-common Add the Jellyfin repository key: wget -O - https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key |  sudo apt-key add - Add the Jellyfin repository: echo "deb [arch=$( dpkg --print-architecture)]  https://repo.jellyfin.org/ubuntu $( lsb_release -c -s) main" | sudo  tee /etc/apt/sources.list.d/jellyfin.list Update package lists to include Jellyfin: sudo apt update Install Jellyfin: sudo apt install jellyfin Start and enable the Jellyfin service: sudo systemctl start jellyfin sudo systemctl enable jellyfin Accessing Jellyfin Once the installation is complete, you can access Jelly...

How to Install Docker on Ubuntu Server

  Video Training Commands :   sudo apt update  sudo apt install apt-transport-https ca-certificates curl software-properties-common  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -  sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"  sudo apt update  sudo apt install docker-ce  sudo systemctl status docker  Create user for Docker (Optional)   sudo usermod -aG docker $USER

Step-by-Step Guide: Installing GUI on Ubuntu Server 22.04

Preparing Your Server for Jellyfin Installation:  Prerequisites   Before installing Jellyfin or other applications, it’s essential to have your Ubuntu server configured and ready. Here’s what you need to get started.  Prerequisites Fresh Installation of Ubuntu Server 20.04 Begin with a clean installation of Ubuntu Server 20.04. This ensures that there are no conflicts or legacy settings from previous installations.  Reliable Internet Connection  Ensure your server has a stable internet connection, as you’ll need to download and update packages throughout the setup.  Preparing Ubuntu Server To install Jellyfin or set up other applications, you may want to install a desktop environment. Here are the necessary commands:  Update your server packages: sudo apt update Install Tasksel (a tool for managing package collections):  sudo apt install tasksel Install the Ubuntu Desktop Environment:  sudo apt install ubuntu-desktop Install the G...

How to Install cPanel on Ubuntu Server

(Video Training)   What you Need before the Installation : Fresh Installed Ubuntu server 20.04 Good Internet Connection cPanel License apt update apt upgrade -y nano /etc/hostname nano /etc/hosts CTRL+X > Y apt install perl -y apt install screen -y curl -o latest -L https://securedownloads.cpanel.net sh latest You can access your server by entering your server IP address and the port number 2087 https://SERVER_IP:2087