Advanced Search
Search Results
10 total results found
Installing InteLIS on Ubuntu 22.04 or above (only Ubuntu LTS)
Please note this will work on Ubuntu 22.04 or above (ONLY LTS) Start the terminal and run these commands ONE BY ONE cd ~; sudo wget -O setup.sh https://github.com/deforay/intelis/raw/master/scripts/setup.sh sudo chmod +x setup.sh; sudo ./setup.sh; sudo rm ...
Migrating From one Ubuntu machine to another
BACKUP DATABASE ON OLD SYSTEM FIRST Go to terminal cd ~; sudo -s; wget -O db-backup.sh https://raw.githubusercontent.com/deforay/intelis/master/scripts/db-backup.sh sudo chmod u+x db-backup.sh; sudo ./db-backup.sh; Enter the MySQL Username, Password whe...
Updating InteLIS on Ubuntu 22.04 or above (only Ubuntu LTS)
Please note this will work on Ubuntu 22.04 or above (ONLY LTS) Start the terminal and run these commands ONE BY ONE sudo wget -O /usr/local/bin/intelis-update https://github.com/deforay/intelis/raw/master/scripts/upgrade.sh; sudo chmod +x /usr/local/bin/intel...
Installing VLSM on a Windows Machine
0. Download Notepad++ or MicroSoft VS Code WampServer from https://www.wampserver.com/en/. Check if Windows is 32 bit or 64 bit. Download WampServer 32 or 64 bit version based on the windows machine VC Packages 1. Installing WAMP Server Ensure Windows sys...
Fix Illegal/Mismatched Collation Issue
Log in to phpMyAdmin Open your web browser and navigate to your phpMyAdmin URL. Enter your username and password to log in. Select the VLSM database On the left-hand side of the phpMyAdmin interface, locate and click on the vlsm database. Go to the "...
Backing up to Google Drive with Rclone on Ubuntu
1. Install Rclone Open a terminal on your Ubuntu machine. Run the following command to install Rclone: sudo apt install rclone 2. Configure Rclone In the terminal, run the following command to start the Rclone configuration: rclone config Choose "n...
Updating VLSM on a Windows Machine
0. Backup Start phpmyadmin by typing http://localhost/phpmyadmin in browser Go to vlsm database and under Export tab, click on Custom - display all possible options Under Output: section select Zipped compression and then scroll to the bottom and click on Ex...
Setting up Interfacing Tool on a client Ubuntu Machine
On the Client Ubuntu Machine : sudo apt-get update && sudo apt-get upgrade -y; sudo apt-get install mysql-client; On the Server Ubuntu Machine : sudo gedit /etc/mysql/mysql.conf.d/mysqld.cnf In this file change the bind-address and mysqlx-bind-address to 0...
Permission Denied Issue
Open the terminal and run the following command sudo setfacl -R -m u:$USER:rwx,u:www-data:rwx /var/www;
Backing up LIS or STS to a remote Backup server
Follow these steps to set up automatic backups to a remote Ubuntu machine: Step 1: Download the Script Open a terminal on your Ubuntu machine and run the following command to download the backup setup script: cd ~ wget -O remote-backup.sh https://raw.githubuse...