Setup GitHub authentication on Mac
You have to configure Git with your GitHub account and set up secure authentication and the recommended approach is to use SSH keys. Step 1: Generate a New SSH Key …
You have to configure Git with your GitHub account and set up secure authentication and the recommended approach is to use SSH keys. Step 1: Generate a New SSH Key …
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 …
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 …
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 …