Hard links and soft link is an important concept in the Linux file system, which relates to the index node in the file system (inode). Inode is one of the four basic concepts in Linux virtual file system (VFS). Through the analysis of the relation and the difference between hard links and soft links, we can better understand Linux VFS.
Add additional DNS on Windows Server 2012
Add additional Gateway on Windows Server 2012
Add additional IP on Windows Server 2012
How to view your windows update history on Windows Server 2012
Choosing how configuring windows update on Windows Server 2012
What does RAID stand for and how they are different
RAID stands for Redundant Array of Inexpensive Disks and at the simplest level it combines many disks into one logical drive. There are five popular levels of RAID which are detailed below.
What is domain parking and subdomain
Domain parking is pointing one domain to another so it loads the same content. This is generally done if you have many different TDLs of the same domain name (domain.com, domain.net, domain.org) parked on top of the main domain.
How to import a sql file into mySQL in linux
Login as root, typing the command below.
#mysql databasename -u databaseuser -p databasepassword < database.sql
Running process with Modified priority by nice command
Use nice command to run a program with modified scheduling priority / nicenesses. Nicenesses range at least from -20 (resulting in the most favorable scheduling) through 19 (the least favorable). The default behavior is to increase the niceness by 10.