Latex-Tutorial

Basic latex tutorial install ----apt-get install latexlive-full using ----create a tex document( with extension .tex)  in any editor and compile it to see the output. each document have a preamble section and document section syntax \command{option} eg. \documentclass{article} commands begin {document} and end {document}---document part begin{environment} to start a new editor settings environment.usually has a… Continue reading Latex-Tutorial

vim-basics

This is a short guide to vim based on vimtutor navigation h-left j-down k-up l-right Esc to the command mode and Insert to get into insert mode x-delete char at current cursor position a-append char at current cursor position dw-delete word d$-delete to end from the current cursor position. de-delete toward the end of the… Continue reading vim-basics

Redmine Migration

In this section we will discuss how to migrate one redmine working instance to another remote machine. This blog is based on the following links https://www.redmine.org/boards/2/topics/12037?r=12039 Create the Dump of the database Redmine_default mysqldump -u root -p redmine_default > redmine_default.sql create the tar file of the folder in /usr/share/redmine tar czf redmine_files.tar.gz -P /usr/share/redmine create… Continue reading Redmine Migration