First, you need to import the repository GnuPG key, if apt-key is available you can use these command as root:
apt-key adv --keyserver keyserver.ubuntu.com --recv 049ED9B94765572E
Otherwise this one will work:
wget -O - http://debian.fusioninventory.org/debian/archive.key | apt-key add -
Now you can install the agent.
apt-get install lsb-release
echo "deb http://debian.fusioninventory.org/debian/ `lsb_release -cs` main" >> /etc/apt/sources.list
apt-get update
apt-get install fusioninventory-agent
Note: On Debian Testing, you need to fix the /etc/apt/sources.list update so you use jessie repo. You can better replace the second line from the previous commands with:
echo "deb http://debian.fusioninventory.org/debian/ jessie main" >> /etc/apt/sources.list
The content of the dists pages can help you do identify support operating system.
Install the additional packages
Network inventory tasks:
apt-get install fusioninventory-agent-task-network
ESX inventory task:
apt-get install fusioninventory-agent-task-esx
Deploy task:
apt-get install fusioninventory-agent-task-deploy
Edit the cfg file line 14
vim /etc/fusioninventory/agent.cfg
server = http://192.168.2.50/plugins/fusioninventory/front/plugin_fusioninventory.communication.php
Run it as services MODE=cron to daemon
vim /etc/default/fusioninventory-agent
MODE=daemon
Start the services.
/etc/init.d/fusioninventory-agent start
Just run:
# fusioninventory-agent
Inventory in Linux system Print
Created by: Rajesh Mehta
Modified on: Fri, 30 Oct, 2020 at 9:53 AM
Did you find it helpful? Yes No
Send feedbackSorry we couldn't be helpful. Help us improve this article with your feedback.