IP Release/Renew/Flush DNS

ipconfig shows all current TCP/ IP network configuration values like: IP Address, Subnet Mask and Default Gateway IP Release It erase/release the current TCP/IP settings #ipconfig /release IP Renew Get …

High Level Linux Commands

Creating FTP User cd /var/www/vhosts/ (Path of vhosts directory) useradd newUser -d /var/www/vhosts/ -G apache  (newUser: Name of user to be added) passwd newUser Password: **** ReType Password: **** Giving …

Basic Linux Commands

Create new tar archive #tar -cvf file.tar /directoryname Extract from existing tar archive #tar -xvf file.tar Create zip for folder #zip -r directory.zip /directoryname To extract .zip compressed file #unzip …