by Anjani Phuyal | May 26, 2014 | Git, Linux, ubuntu
How to create a new git branch and push it? git checkout -b new_branch_name git push -u origin new_branch_name git config –global user.email “[email protected]” git config user.email “[email protected]” git commit –author...
by Anjani Phuyal | May 26, 2014 | Linux, ubuntu
root sudo gedit /etc/apt/sources.list and make sure that the universe component is included in the source lines. It should look like this deb http://http.us.debian.org/debian squeeze main universe After any changes you should run sudo apt-get update...
by Anjani Phuyal | May 25, 2014 | AWS, Linux
lsblk Determine if you need to create a file system on the volume. New volumes are raw block devices, and you need to create a file system on them before you can mount and use them. Volumes that have been restored from snapshots likely have a file system on them...