Monthly Archives: May 2012

Upload and download via SSH

To upload something  on the server type the following command in terminal:- scp /home/meet/Desktop/FileName userame@ServerAddress:~/destinationfolder/ Example: scp /home/meet/Desktop/j.jpg parveen@exp:~/public_html/ To dwnloading something from the server type the following command:- scp username@ServerAddress:~/public_html/FileName /home/meet/Desktop/ Example: scp parveen@exp:~/public_html/aa.jpg /home/meet/Desktop/

Posted in Uncategorized | Leave a comment

Different Git commands

Following are the different git commands:  Clone a Git repository: git clone username@yourhost.com:path/to/repo/repo-name.git  Initializing an empty git repository: git init Adding files to git repository:  git add .  The commit command:  git commit -m “Initial import”  Viewing the commit log: … Continue reading

Posted in Uncategorized | Leave a comment

Fun with Ubuntu terminal

Linux is not only limited to work only. You can also enjoy a lot while working on it. There are many crazy commands which will bring a big smile on your face. Following are the some funny commands: espeak: Terminal … Continue reading

Posted in Uncategorized | Leave a comment

What is Git?

Git is an open source version control system. Git is developed and maintained by the creator of the Linux kernel. It stores complete files each time the user commits his changes, making recovery and version-diffing reliable, responsive, and simple. This … Continue reading

Posted in Uncategorized | Leave a comment

Introduction to Blender

Blender is a free and open-source 3D computer graphics software product used for creating animated films, visual effects, interactive 3D applications or video games. Blender’s features include 3D modeling, UV unwrapping, texturing, rigging and skinning, fluid and smoke simulation, particle … Continue reading

Posted in Uncategorized | 1 Comment

Source code hosting and Bitbucket

Code sharing and hosting platforms, enable designers and developers to share and reuse code with team members or the wider web community. A source code repository is a file archive and web hosting facility where large amounts of source code … Continue reading

Posted in Uncategorized | Leave a comment

Diff and Patch

The commands diff and patch form a powerful combination. They are widely used to get differences between original files and updated files in such a way that other people who only have the original files can turn them into the … Continue reading

Posted in Uncategorized | Leave a comment

LaTex on Ubuntu

Introduction: LaTeX is a markup language for describing a document. If you have used HTML, or edited a wiki then you will be familiar with the idea of using symbols or commands within a text file to describe the layout … Continue reading

Posted in LaTex | Leave a comment

Apache Virtual Hosts in Ubuntu

An Apache virtual host, as explained by Apache, refers to the practice of running more than one web site (such as http://www.company1.com and http://www.company2.com) on a single machine. Virtual hosts can be “IP-based” or “name-based”. By default, Ubuntu already has … Continue reading

Posted in Uncategorized | 2 Comments

Making certificates in moodle

Download certificate module from http://download.moodle.org/download.php/plugins/mod/certificate.zip Extract it and place in /var/www/moodle/mod Open browser at http://localhost/moodle/index.php.Then  Login in. It will show certificate module. Click update button. Click on Home in Navigation column. Click on Turn editing on in Settings column. In … Continue reading

Posted in Uncategorized | Leave a comment