Posts

Showing posts from September, 2021
Image
  Install AnyDesk via DEB Repository   Run the following commands as root user: - add repository key to Trusted software providers list wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | apt-key add - - add the repository: echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk-stable.list - update apt cache: apt update - install anydesk: apt install anydesk   Reference: http://deb.anydesk.com/howto.html?_ga=2.216462869.2096732493.1611950650-641009256.1611950650
Image
  Install Open Journal System (OJS)  on Debian/Ubuntu OJS is a journal and website management and publishing system. It covers all aspects of online journal publishing, from establishing a journal website to operational tasks such as the author's submission process, peer review, editing, publication, archiving, and indexing of the journal. OJS also helps to manage the people aspects of organizing a journal, including keeping track of the work of editors, reviewers, and authors, notifying readers, and assisting with the correspondence. Step by step of Installing OJS  Install LAMP Stack LAMP Stack on  Debian LAMP Stack on  Ubuntu After installing LAMP Stack, do the following sudo systemctl reload apache2 && sudo systemctl restart apache2   Create a directory under webroot of apache, I name the directory as ojs sudo mkdir /var/www/html/ojs   Navigate to ojs directory cd /var/www/html/ojs/   Download the latest archive of OJS from the official...