<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yetiforce Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/yetiforce/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 16 Jun 2019 04:24:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Yetiforce on CentOS 7?</title>
		<link>https://www.osradar.com/how-to-install-yetiforce-on-centos-7/</link>
					<comments>https://www.osradar.com/how-to-install-yetiforce-on-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 18 Jun 2019 23:11:44 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[yetiforce]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12415</guid>

					<description><![CDATA[<p>In Linux, every day is more common to see many new applications for various areas. Many are oriented from leisure to business. From small to very large companies, the tools that help with the workflow within them are welcome. Likewise, if they are open source then they are even more so. Then, in this post, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yetiforce-on-centos-7/">How to install Yetiforce on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="">In Linux, every day is more common to see many new applications for various areas. Many are oriented from leisure to business. From small to very large companies, the tools that help with the workflow within them are welcome. Likewise, if they are open source then they are even more so. Then, in this post, I will teach you how to install a CRM for your company, a very powerful one. In short, in this post, you will learn how to install Yetiforce on CentOS 7.</p>
<h2>Looking for a CRM? Yetiforce is probably the best</h2>
<p>A CRM (Customer Relationship Management) is a type of application-oriented to everything concerning the relationship between customers and company. Similarly, thanks to CRM can collect customer data to predict some of their needs and get their loyalty. In this sense, a CRM also ensures a great marketing policy.</p>
<p>In conclusion, we can say that companies that use CRM solutions generate more sales opportunities, streamlining management, with budgets updated in real time and optimized sales processes.</p>
<p>On the other hand, <a href="https://yetiforce.com">Yetiforce</a> is a CRM of Polish origin. It has all the features expected by software of its kind, however, is more powerful than most. In the website of the project states that is &#8220;the best CRM that exists&#8221;, and is that thanks to more than 100 modules available make it one of the most solid.</p>
<p>In the same way, it is open source and allows us to examine its source code to know how it is done. Besides, it is easy to audit.</p>
<p>Let us install Yetiforce on CentOS 7.</p>
<h2>Install Yetiforce on CentOS 7</h2>
<h3>1. Install Apache and PHP 7.2</h3>
<p>First, we must install the Apache web server to run Yetiforce.</p>
<p>In a terminal interface, run the following:</p>
<pre>:~$ su
:~# yum install httpd</pre>
<figure id="attachment_12432" aria-describedby="caption-attachment-12432" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12432" src="https://www.osradar.com/wp-content/uploads/2019/06/1-9.png" alt="1.- Install Apache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/1-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/1-9-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12432" class="wp-caption-text">1.- Install Apache</figcaption></figure>
<p>Then open port 80 in the CentOS firewall.</p>
<pre>:~# firewall-cmd --add-port=80/tcp --permanent
success
:~# firewall-cmd --reload
success</pre>
<p>Now, you have to install <a href="https://www.osradar.com/how-to-install-php-7-2-on-debian-9-stretch/">PHP 7.2</a>. Since PHP 7.2 is not available in CentOS, it is necessary to use another repository.</p>
<pre>:~# yum install epel-release yum-utils
:~# rpm -Uhv https://rpms.remirepo.net/enterprise/remi-release-7.rpm
:~# yum-config-manager --enable remi-php72</pre>
<p>Once you have done this, you can install PHP 7.2 and the required modules for Yetiforce.</p>
<pre>:~# yum install php php-mysqlnd php-opcache php-xml php-xmlrpc php-gd php-mbstring php-imap php-json php-xdebug php-posix php-uopz php-bcmath php-zip php-apcu php-ldap php-soap php-opcache php-intl php-imagick</pre>
<figure id="attachment_12433" aria-describedby="caption-attachment-12433" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12433" src="https://www.osradar.com/wp-content/uploads/2019/06/2-7.png" alt="2.- Install PHP 7.2 on CentOS" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/2-7.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/2-7-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12433" class="wp-caption-text">2.- Install PHP 7.2 on CentOS</figcaption></figure>
<p>In order to test PHP, create a new file on /var/www/html/ and add the following:</p>
<pre>:~# yum install nano
:~# nano /var/www/html/test.php
&lt;?php
phpinfo();
?&gt;</pre>
<figure id="attachment_12434" aria-describedby="caption-attachment-12434" style="width: 856px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12434" src="https://www.osradar.com/wp-content/uploads/2019/06/3-6.png" alt="3.- PHP info file" width="856" height="151" srcset="https://www.osradar.com/wp-content/uploads/2019/06/3-6.png 856w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-300x53.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-768x135.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/3-6-696x123.png 696w" sizes="(max-width: 856px) 100vw, 856px" /><figcaption id="caption-attachment-12434" class="wp-caption-text">3.- PHP info file</figcaption></figure>
<p>Start the Apache service.</p>
<pre>:~# systemctl enable httpd
:~# systemctl start httpd</pre>
<p>Now, open a web browser and go to <code>http://your-server/test.php</code> and you will see this.</p>
<figure id="attachment_12435" aria-describedby="caption-attachment-12435" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12435" src="https://www.osradar.com/wp-content/uploads/2019/06/4-4.png" alt="4.- PHP and Apache are correctly installed" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/4-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/4-4-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12435" class="wp-caption-text">4.- PHP and Apache are correctly installed</figcaption></figure>
<h3>2.- Install MySQL 8 on CentOS 7</h3>
<p>Now you have to install MySQL. The problem is that the version you bring in the official repositories is very old, better use version 8.</p>
<pre>:~# rpm -Uvh https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm
:~# yum --enablerepo=mysql80-community install mysql-community-server</pre>
<figure id="attachment_12436" aria-describedby="caption-attachment-12436" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12436" src="https://www.osradar.com/wp-content/uploads/2019/06/5-2.png" alt="5.- Install MySQL 8 on CentOS 7" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/5-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12436" class="wp-caption-text">5.- Install MySQL 8 on CentOS 7</figcaption></figure>
<p>Then you have to start the service.</p>
<pre>:~# systemctl enable mysqld
:~# systemctl start mysqld</pre>
<p>After that, you need to find out the temporary password.</p>
<pre>:~# grep "A temporary password" /var/log/mysqld.log
A temporary password is generated for root@localhost: 9iyw6&gt;sX:jf5</pre>
<p>Now, you have to use the <code>mysql_secure_installation</code> script to secure MySQL.</p>
<pre>:~# mysql_secure_installation</pre>
<p>You will be asked several questions to improve the security of the program:</p>
<pre>Remove anonymous users? Y
Disallow root login remotely? Y
Remove test database and access to it? Y
Reload privilege tables now? Y</pre>
<figure id="attachment_12437" aria-describedby="caption-attachment-12437" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12437" src="https://www.osradar.com/wp-content/uploads/2019/06/6-2.png" alt="6.- secure the MySQL installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/06/6-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/6-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12437" class="wp-caption-text">6.- secure the MySQL installation</figcaption></figure>
<p>Now, you have to create a user and database for Yetiforce.</p>
<pre>:~# mysql -u root -p
&gt; CREATE DATABASE yetiforce;
&gt; CREATE USER 'yetiforceuser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your-password';
&gt; GRANT ALL PRIVILEGES ON yetiforce.* TO 'yetiforceuser'@'localhost' WITH GRANT OPTION;
&gt; FLUSH PRIVILEGES; 
&gt; exit;</pre>
<p>Now, you can continue the process.</p>
<h3>3.- Install Yetiforce</h3>
<p>First, download Yetiforce.</p>
<pre>:~# yum install wget unzip
:~# wget https://github.com/YetiForceCompany/YetiForceCRM/releases/download/5.1.0/YetiForceCRM-5.1.0-complete.zip</pre>
<p>Next, decompress it.</p>
<pre>:~# unzip YetiForceCRM-5.1.0-complete.zip -d /var/www/html/</pre>
<p>Next, set the right permissions to the folder.</p>
<pre>:~# chown -R apache:apache /var/www/html</pre>
<p><strong>NOTE: delete the .zip file.</strong></p>
<p>Yetiforce requires external libraries that we can install using Composer.</p>
<p>Read: <a href="https://www.osradar.com/how-to-install-composer-on-linux/" rel="noopener noreferrer">How to install Composer on Linux?</a></p>
<p>And install it as the regular user:</p>
<pre>:~# exit
:~$ composer require phpunit/php-invoker</pre>
<p>Now, create a new virtual host for Yetiforce.</p>
<pre>:~$ su
:~# nano nano /etc/httpd/conf.d/yetiforce.conf</pre>
<p>And add the following:</p>
<pre>&lt;VirtualHost *:80&gt; 
  ServerAdmin admin@your_domain.com
  DocumentRoot /var/www/html/
  ServerName your_domain.com
  ServerAlias www.your_domain.com
  
&lt;Directory /var/www/html/&gt; 
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    allow from all
&lt;/Directory&gt; 
ErrorLog /var/log/httpd/your_domain.com-error_log
CustomLog /var/log/httpd/your_domain.com-access_log common
&lt;/VirtualHost&gt;</pre>
<p>Replace your_domain with yours. And restart apache.</p>
<pre>:~# systemctl restart httpd</pre>
<p>After that, we need to complete the installation.</p>
<h3>4.- Complete the yetiforce installation using the web interface</h3>
<p>Now, open your web browser and access your server to complete the installation.</p>
<figure id="attachment_12438" aria-describedby="caption-attachment-12438" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12438" src="https://www.osradar.com/wp-content/uploads/2019/06/7-1.png" alt="7.- Install Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/7-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/7-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12438" class="wp-caption-text">7.- Install Yetiforce on CentOS 7</figcaption></figure>
<p>Then, accept the terms of the license.</p>
<figure id="attachment_12439" aria-describedby="caption-attachment-12439" style="width: 1366px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-12439" src="https://www.osradar.com/wp-content/uploads/2019/06/8-1.png" alt="8.- Yetiforce license terms" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/8-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12439" class="wp-caption-text">8.- Yetiforce license terms</figcaption></figure>
<p>After that, you have to type the database credentials and admin information.</p>
<figure id="attachment_12440" aria-describedby="caption-attachment-12440" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12440" src="https://www.osradar.com/wp-content/uploads/2019/06/9.png" alt="9.- Database credentials" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/9-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/9-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/9-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/9-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/9-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12440" class="wp-caption-text">9.- Database credentials</figcaption></figure>
<p>Next, confirm the configuration settings.</p>
<figure id="attachment_12441" aria-describedby="caption-attachment-12441" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12441" src="https://www.osradar.com/wp-content/uploads/2019/06/10.png" alt="10.- Configure Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/10-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/10-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/10-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/10-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/10-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/10-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/10-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12441" class="wp-caption-text">10.- Configure Yetiforce on CentOS 7</figcaption></figure>
<p>Then, enter the company details.</p>
<figure id="attachment_12442" aria-describedby="caption-attachment-12442" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12442" src="https://www.osradar.com/wp-content/uploads/2019/06/11.png" alt="11.- Configuring Yetiforce on CentOS 7" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/11-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/11-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/11-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/11-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/11-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/11-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/11-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12442" class="wp-caption-text">11.- Configuring Yetiforce on CentOS 7</figcaption></figure>
<p>Next, the installation will begin.</p>
<figure id="attachment_12443" aria-describedby="caption-attachment-12443" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12443" src="https://www.osradar.com/wp-content/uploads/2019/06/12.png" alt="12.- Install Yetiforce" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/12.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/12-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/12-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/12-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/12-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/12-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/12-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/12-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12443" class="wp-caption-text">12.- Install Yetiforce</figcaption></figure>
<p>When the process is finished you will see the Yetiforce dashboard.</p>
<figure id="attachment_12444" aria-describedby="caption-attachment-12444" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12444" src="https://www.osradar.com/wp-content/uploads/2019/06/13.png" alt="13.- Yetiforce dashboard" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/06/13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/06/13-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/06/13-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/06/13-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/06/13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/06/13-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/06/13-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/06/13-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12444" class="wp-caption-text">13.- Yetiforce dashboard</figcaption></figure>
<h2>Conclusion</h2>
<p>Yetiforce is a very complete application in your area. It has many features that make it the best in CRM. It has a great community and is used by many important companies.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-yetiforce-on-centos-7/">How to install Yetiforce on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-yetiforce-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
