How To Install drupal7-tmgmt on CentOS 7
Introduction
In this tutorial we learn how to install drupal7-tmgmt
on CentOS 7.
What is drupal7-tmgmt
The Translation Management Tool (TMGMT) module provides a tool set for translating content from different sources. The translation can be done by people or translation services of all kinds. It builds on and uses existing language tools and data structures in Drupal and can be used in automated workflow scenarios. This module does not make i18n or any other language module for Drupal obsolete. It does only facilitate the translation process. The second alpha has been released, huge improvements have been made (see the release notes for details) and there’s even more work to do. Please test the new version and report any bugs that you can find. Important Nativy, Supertext) have been moved to separate projects. When any of these plugins, make sure to download them as well and then run update.php when updating. This package provides the following Drupal modules * tmgmt * tmgmt_entity * tmgmt_entity_ui * tmgmt_field * tmgmt_file * tmgmt_i18n_string * tmgmt_language_combination * tmgmt_local * tmgmt_locale * tmgmt_node * tmgmt_node_ui * tmgmt_ui
We can use yum
or dnf
to install drupal7-tmgmt
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-tmgmt.
Install drupal7-tmgmt on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install drupal7-tmgmt
using yum
by running the following command:
sudo yum -y install drupal7-tmgmt
Install drupal7-tmgmt on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install drupal7-tmgmt
using dnf
by running the following command:
sudo dnf -y install drupal7-tmgmt
How To Uninstall drupal7-tmgmt on CentOS 7
To uninstall only the drupal7-tmgmt
package we can use the following command:
sudo dnf remove drupal7-tmgmt
References
Summary
In this tutorial we learn how to install drupal7-tmgmt
on CentOS 7 using yum
and dnf
.