Category: Linux

U-Mail Email System Internal-External Network Isolation Deployment Guide

Today, under the immense threat of hacker and virus technologies, and for the security of commercial and policy information, many government agencies, military units, financial and insurance institutions, high-tech enterprises, and large conglomerates have begun implementing tiered management of critical data based on information importance. For example, employees in different positions …

How to Install Webmin on Ubuntu 14.04

Webmin is an open-source, web-based system administration tool for Unix/Linux. With Webmin, you can set up and install all system services directly from your browser, including DNS, DHCP, Apache, NFS, Samba, and more. So, with this tool, you no longer need to remember every configuration modification …

How to Change the Default Root Password in Ubuntu

After installing Ubuntu I suddenly realized I hadn’t set a root password, and without knowing the password I naturally couldn’t access the root user. I searched online and found out what was going on. Ubuntu’s default root password is random, meaning each boot has a new root password. We can enter the command in the terminal sudo p …

How to Configure Dual IPs on a Single NIC in Ubuntu 12.04

Servers sometimes only have one network card. If you need it to handle both internal and external traffic, you’ll need to set up dual IPs. Under Ubuntu 12.04, you can directly modify /etc/network/interfaces and append the following content at the end:auto eth0:0iface eth0:0 inet staticaddress 192.168.2.230netmask 2 …

How to Fix “connect: Network is unreachable”

Fix “connect: Network is unreachable” Error Solution: Locate the ifcfg-eth0 file under etc/sysconfig/network/ and configure it as follows: vi /etc/sysconfig/network-scripts/ifcfg-eth0 After opening, if any lines are missing please add them yourself: DEVICE=eth0BOOTPROTO=stati …