Skip to content

Instantly share code, notes, and snippets.

View bhalothia's full-sized avatar
🛠️
Building something cool. ;)

Virendra Singh Bhalothia bhalothia

🛠️
Building something cool. ;)
View GitHub Profile
@bhalothia
bhalothia / Disk Usage Check
Created May 6, 2014 11:43
Simple disk space usage commands.
$ cd /
$ du -sh *
4.0K jboss.sh
0 list.txt
4.0K log_rotation.sh
1.5G nohup.out
4.0K script.sh
4.0K stop_backup.sh
41M testdeploy
@bhalothia
bhalothia / EC2 - Elastic cloud computing
Last active August 29, 2015 14:00
AWS SysOps Preparation:This gist would cover my preparation for AWS SysOps from scratch.
1) EC2
Reference Link: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts.html
EC2 provides a lot of features using these resources:
BASICS:
-> Instances
-> AMIs
@bhalothia
bhalothia / Clearcache.sh
Created April 30, 2014 19:47
Clearing cache on a linux machine
#!/bin/sh
sync; echo 3 > /proc/sys/vm/drop_caches
swapoff -a && swapon -a