Install LaTeX on Ubuntu or Debian

LaTeX is a document markup language and a text preparation system to create documents. LaTeX is recommended to create technical or scientific articles, papers, reports, books and other documents like PhDs. 1. OPEN YOUR TERMINAL A terminal is a Command Line Interface (CLI)Continue Reading >

how to delete all commit history in github? [duplicate]

how to delete all commit history in github? [duplicate]

ByMahesh Kumar Yadav
Deleting the .git folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following: Checkout git checkout --orphanContinue Reading >

How To Install Sublime Text 3 (Build 3103) On Ubuntu 16.04, Ubuntu 15.10, Ubuntu 14.04 And Derivatives.

Installation instructions: In order to successfully install Sublime Text 3 on Ubuntu 16.04 Xenial Xerus, Ubuntu 15.10 Wily Werewolf, Ubuntu 14.04 Trusty Tahr, Linux Mint 17.x, Elementary OS 0.3 Freya and other Ubuntu derivative systems, you have to add the PPA to yourContinue Reading >

Fix time differences between Ubuntu and Windows

Fix time differences between Ubuntu and Windows

ByMahesh Kumar Yadav
A. To fix the UTC / local time difference between Ubuntu and Windows from Ubuntu by making Ubuntu uses local time. Before proceeding, note that according to the Ubuntu wiki, "the advantage of having the hardware clock as UTC is that you don'tContinue Reading >

Accesing mutlple users to Read/Write and Execute on same File/Folder in linux

Accesing mutlple users to Read/Write and Execute on same File/Folder in linux

ByMahesh Kumar Yadav
Open Terminal: 1. Create a group sudo addgroup linux-data 2. Add users to group sudo adduser mahesh linux-data sudo adduser kumar linux-data 3. Change group ownership sudo chgrp -R linux-data /media/mahesh/Linux-drive 4. Assign Read/Write and Execute permission to group sudo chmod -R g+rwxContinue Reading >