Skip to main content

Posts

Showing posts from December, 2017

Install fusioninventory-agent on Ubuntu / Linux Mint

Step 1:  For fusioninventory-agent, you’ll need to install these dependencies: sudo apt-get install  dmidecode hwdata ucf hdparm perl libuniversal-require-perl libwww-perl libparse-edid-perl libproc-daemon-perl  libproc-pid-file-perl libfile-which-perl libxml-treepp-perl libyaml-perl libnet-cups-perl libnet-ip-perl libdigest-sha-perl libsocket-getaddrinfo-perl libtext-template-perl Step 2 : For fusioninventory-agent-task-network, you’ll need to install these other dependencies:   sudo apt-get install  nmap libnet-snmp-perl libcrypt-des-perl libnet-nbname-perl FusionInventory website with documentation and news of this wonderful inventory and software deployment tool. Step 3 : For fusioninventory-agent-task-deploy, you’ll need to install these other dependencies: sudo apt-get install libfile-copy-recursive-perl libparallel-forkmanager-perl Step 4 : Install fusioninventory-agent sudo apt-get install fusioninventory-agent fusioninventory-agent-task-network fusi

Install & Configure FTP Server on Linux

FTP (File Transfer Protocol) is probably the most popular method of uploading files to a server; a wide array of FTP servers, such as vsftpd, and clients exist for every platform. Pre-Flight Check These instructions are intended specifically for installing the vsfptd on Ubuntu 14.04 LTS. I’ll be working from a Liquid Web Core Managed Ubuntu 14.04 LTS server, and I’ll be logged in as root. Step 1: Install vsftpd Warning: FTP data is insecure; traffic is not encrypted, and all transmissions are clear text (including usernames, passwords, commands, and data). Consider securing your FTP connection with SSL/TLS. First, you’ll follow a simple best practice: ensuring the list of available packages is up to date before installing anything new. apt-get update Then let’s install vsftpd and any required packages: apt-get -y install vsftpd Step 2: Configure vsftpd For a refresher on editing files with vim see:  New User Tutorial: Overview of the Vim Text Editor Let’s edit

Setup Web Server (Linux, Apache, MySQL and PHP) On Linux Mint

Setup Web Server (Linux, Apache, MySQL and PHP) On Linux Mint Through this tutorial, you'll learn how to Install Apache, MySQL and PHP. If you're a webpage designer or developer and use PHP, mySQL and Apache, you'll be needing these applications to be installed. When I installed Mint, I was looking for a way to install LAMP and found a tutorial on a website by somebody named "Cargoship". That tutorial was for ubuntu. But I installed it on my Linux mint, and it is working. In this guide I will show you how to install a LAMP system. LAMP stands for  L inux,  A pache,  M ySQL,  P HP. The guide is intended to help those who have very little knowledge of using Linux. We will not cover how to install Linux the L of  L AMP, because Linux Mint is already installed in your computer. Install Apache To start off we will install Apache. 1. Open up the Terminal ( Applications > Accessories > Terminal ). 2. Copy/Paste or type the followin