Authentication (Linux) through htaccess: Authentication through Htaccess #Shell> vi .htaccess AuthUserFile /public_html/private/.htpasswd AuthName "Secret Stuff" AuthType Basic require valid-user Authentication for Single File access on Apache (Linux) through htaccess Edit httpd.conf file and add … Continue Reading →
18 commands to monitor network bandwidth on Linux server
Network monitoring on Linux This post mentions some linux command line tools that can be used to monitor the network usage. These tools monitor the traffic flowing through network interfaces … Continue Reading →
Hard drive speed test using Linux command line and hdparm
Hard drive speed test using Linux command line and hdparm Login as the root and enter the following command: $ sudo hdparm -tT /dev/sda OR $ sudo hdparm -tT … Continue Reading →
How to run rsync via ssh on different port
Question: How to run rsync + ssh on different port / Answer: rsync -avz -e ‘ssh -p8324’ remote_Server_Username@Remote_Server_Ipaddress:/var/www/html/ /var/www/html/
How to check TCP/IP packet in Linux
Question: – How to check TCP/IP packet in Linux? Answer:- tcpdump -ieth1 host “Ip address”
How to mount windows drive on Linux system
Question:- How to mount windows drive on Linux system Answer:- service ntfs start mount –t smbfs –o username=username,password=password //mount point of network /mount point (in which folder you want to … Continue Reading →