Complete Ubuntu 16.04 Server Configuration Guide
Initial Setup and Network Configuration
Before begining the Ubuntu server setup, ensure your virtual machine network adapter is set to bridge mode. For wireless connections, select your appropriate wireless network adapter in the virtualization settings.
Basic Network Commands
# Test network connectivity
ping -c 4 192.168.1.181
# Display routi ...
Posted on Fri, 05 Jun 2026 16:13:28 +0000 by pythian
Setting up Redis Server and PHP Extension
Installing Redis
Extract the Redis package in the /usr/local/src directory:
tar -zxvf redis-4.0.8.tar.gz
cd redis-4.0.8
make MALLOC=libc
Install Redis binaries to /usr/local/bin:
cd src && make install
Starting Redis Server
Redis can be started in three different ways:
Foreground Mode
cd src
./redis-server
This method requires kee ...
Posted on Sat, 16 May 2026 21:04:03 +0000 by rochakchauhan
Setting Up NFS Server and Client on Linux
NFS Server Setup
Installing Required Packages
yum install -y nfs-utils
Configuring the Export File
Edit the exports configuration file to define which dierctories to share:
vim /etc/exports
Add the following line to share /data/shared with the specified network:
/data/shared 10.0.0.0/24(rw,sync,fsid=0)
Configuration options explained:
Opt ...
Posted on Thu, 14 May 2026 19:12:44 +0000 by ryanfern86goa
Setting Up MySQL on Windows 10
Download MySQL for Windows
Obtain the MySQL installation package from the official website. Select the appropriate version for your system and proceed with the download.
Extract Instalation Files
Extract the downloaded archive to a dedicated directory. It's recommanded to use a root folder such as D:\ for simplicity.
Configure System Environmen ...
Posted on Sat, 09 May 2026 22:30:07 +0000 by ghornet
Setting Up vsftpd on Ubuntu for Browser Access and FileZilla Uploads
Installation
Update the package repository and install vsftpd:
sudo apt-get update
sudo apt-get install vsftpd
After installation, vsftpd creates an ftp system user by default. Set a password for this account:
sudo passwd ftp
The default home directory for this user is /srv/ftp.
Basic Configuration
Edit the vsftpd configuration file:
sudo nan ...
Posted on Fri, 08 May 2026 00:14:51 +0000 by newdles