sexta-feira, 26 de maio de 2017

HOW TO INSTALL KASPERSKY ANTIVÍRUS FOR GNU LINUX

FOR INSTALL KASPERSKY NETWORK AGENT :

REQUIREMENTS THE SAME FOR KASPERSKY ENDPOINT FOR LINUX

DOWNLOAD AGENT FOR DEB:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/klnagent_10.1.1-26_i386.deb

DOWNLOAD AGENT FOR  RPM:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/klnagent-10.1.1-26.i386.rpm

HOW TO INSTALL:
https://support.kaspersky.com/5108

AFTER EXECUTE "HOW TO INSTALL" PROCEDURE FOLLOWING THIS PROCEDURE: 
PAGE 24
Installing Network Agent

SOURCE: https://docs.s.kaspersky-labs.com/english/kes10_linux_adminguide_en.pdf

FOR INSTALLATION ON LINUX WORKSTATION OR LINUX SERVER:

REQUIREMENTS:
http://support.kaspersky.com/kes10linux#requirements

DOWNLOAD RPMX86:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/kesl-10.0.0-3458.i386.rpm
DOWNLOAD RPMX64:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/kesl-10.0.0-3458.i386.rpm
DOWNLOAD DEBX86:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/kesl_10.0.0-3458_i386.deb
DOWNLOAD DEBX64:
https://products.s.kaspersky-labs.com/multilanguage/endpoints/kesl/kesl_10.0.0-3458_amd64.deb



AFTER EXECUTE "HOW TO INSTALL" PROCEDURE FOLLOWING THIS PROCEDURE: 
PAGE 23
Installing the Kaspersky Endpoint Security package
Updating Kaspersky Endpoint Security settings

SOURCE: https://docs.s.kaspersky-labs.com/english/kes10_linux_adminguide_en.pdf


HOW TO INSTALL A CUSTOM INSTALLATION:
https://support.kaspersky.com/5110

HOW TO INSTALL BY KSC:

https://support.kaspersky.com/7626


terça-feira, 9 de maio de 2017

HOW TO ENABLE PERMISSION FOR SUBFOLDERS

root@rocket-chat:/var/www# chmod +x /var/www/html/tmve/ -R
root@rocket-chat:/var/www# chown www-data:www-data  /var/www/html/tmve/ -R

quarta-feira, 3 de maio de 2017

HOW TO INSTALL LINUX PHPBB SERVER (FORUM SERVER) ON YOUR UBUNTU SERVER 16.04.2 LTS

install linux server with the lamp feature
after that
sudo apt-get install php-xml
service apache2 restart
wget https://www.phpbb.com/files/release/phpBB-3.2.0.zip
unzip phpBB-3.2.0.zip
cp -r phpBB3  /var/www/html
chown www-data:www-data -R /var/www/html/phpBB3
chmod 775 -R /var/www/html/phpBB3
mysql -uroot -p
create database phpbb;
exit

http://<your_ip>/phpBB3/install/app.php

check the requirements, if you have a message:
Directory is not writable

sudo usermod -aG www-data <your_user>
sudo chown -R www-data:www-data /var/www/html/
cd /var/www/html/phpBB3
sudo chmod 660 images/avatars/upload/ config.php
sudo chmod 770 store/ cache/ files/

After those procedures will work file the requirements and you carry on the steps about the installation and configuration.

So, now you must rename or dell the folder install inside of /var/www/html/phpBB3/
in my case  was renamed folder phpBB3 for phpbb and inside of folder: "/var/www/html/phpbb" was renamed the folder install for installl.

After that was possible to see everthing about the forum phpbb.

In some cases for attached files was necessary add this configuration about extension GD on my php server:

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get install php7.0-gd