Disable gpgcheck on command line with yum install Rumi, March 12, 2024 It’s pretty straightforward, just hit- yum –nogpg install <package_name> Continue Reading
Installation of Collabora on Debain 12 Rumi, March 3, 2024 Collabora CODE is more straightforward to install than Nextcloud. Typically, Collabora prerequisites are installed when Nextcloud is installed. To install Collabora CODE, follow the steps below: Import the Collabora CODE signing key. cd /usr/share/keyrings sudo wget https://collaboraoffice.com/downloads/gpg/collaboraonline-release-keyring.gpg Create a source file for the Collabora CODE package repository. sudo vi /etc/apt/sources.list.d/collaboraonline.sources… Continue Reading
Installing Plex on Debian 12 Rumi, March 3, 2024 Prerequisites A machine running Debian 12 with GUI mode A user account with sudo privileges Internet access for downloading packages Step 1: Update Your System Before installing any new software, it’s always a good practice to update your system’s package index. Open a terminal and execute the following command: sudo… Continue Reading
Administrations Install gnome via tasksel on Debain 12 Rumi, March 3, 2024 Tasksel is already installed on Debian 12, so you don’t need to install it. However, if for some reason tasksel is not installed on your system, you can install it via the command below sudo apt install tasksel To install Gnome via tasksel, you need first to run tasksel sudo… Continue Reading
INSTALL IPTABLES IN DEBIAN 11 (BULLSEYE) Rumi, February 26, 2024February 26, 2024 In this article you will learn how to uninstall default nftables framework, install iptables Debian 11 (Bullseye) and basic rules initial configuration. Uninstall nftables and its Dependencies IPtables is being replaced by nftables starting with Debian 10 Buster. Debian 11 comes with nftables framework. To install iptables first we need uninstall nftables and its dependencies. SSH… Continue Reading
Softether with DNSMasq on Debian 11 Rumi, February 26, 2024 What is SoftEther A Free Cross-platform Multi-protocol VPN program, as an academic project from University of Tsukuba. It is a single server which support SSL-VPN (HTTPS) and 6 major VPN protocols (OpenVPN, IPsec, L2TP, MS-SSTP, L2TPv3 and EtherIP). I would like to also highlight the VPN over ICMP and VPN over… Continue Reading
Administrations Setting Up a Proxmox Backup Server Rumi, February 24, 2024February 26, 2024 Continue Reading
Change Windwos RDP default port 3389 Rumi, February 15, 2024 Reference is on Windows 10 (should work on other editions too) Step 1: Open the Registry Editor Run the regedit command. You may do this by opening the Start Menu and typing “regedit” into the search bar. Select the option labeled “regedit” with the words “Run command” below it. (Note:… Continue Reading
Installing Laravel 9 with php 8.1 and Apache2 using Ubuntu 22 Rumi, February 11, 2024 Connect to your ubuntu instance. 1. Install Apache sudo apt update sudo apt install apache2 sudo systemctl status apache2 2. Install PHP 8.1 sudo apt install software-properties-common sudo add-apt-repository ppa:ondrej/php sudo apt install php8.1 libapache2-mod-php8.1 sudo systemctl restart apache2 3. Install required PHP extensions for Laravel 9 sudo apt install… Continue Reading
Fixing Ubuntu Repository Rumi, February 11, 2024 Just a little tweaking around with my Ubuntu 22 on cloud init image- cp /etc/apt/sources.list /etc/apt/sources.list.bak sudo sed -i -re ‘s/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g’ /etc/apt/sources.list Continue Reading