Featured

How to Install Git on Linux, Ubuntu, CentOS, Mint, Fedora?

How to Install Git on Linux, Ubuntu, CentOS, Mint, Fedora?

This tutorial includes the commands to install Git on Linux- Ubuntu 12.04, 13.04, 14.04, 15.04, 16.04, CentOS, Mint Linux , Fedora, Red Hat, Arch Linux- Kernel. An indispensable tool in modern software development is some kind of version control system. Version control systems allow you to keep track of your software at the source level. You can track changes, revert to previous stages, and branch to create alternate versions of files and directories.
One of the most popular version control systems is git, a distributed version control system. Many projects maintain their files in a git repository, and sites like GitHub and Bitbucket have made sharing and contributing to code simple and valuable.
How to Install Git on Linux, Ubuntu, CentOS, Mint, Fedora?

In this tutorial guide, I will demonstrate how to install git on an Ubuntu 14.04 VPS instance. I will cover how to install the software in two different ways, each of which have benefits.

How To Install Git with Apt-

By far the easiest way of getting git installed and ready to use is by using Ubuntu's default repositories. This is the fastest method, but the version may be older than the newest version. If you need the latest release, consider following the steps to compile git from source.
You can use the apt package management tools to update your local package index. Afterwards, you can download and install the program.
$ sudo apt-get update
$ sudo apt-get install git
This will download and install git to your system. You will still have to complete the configuration steps that we cover in the "setup" section.

How To Set Up Git-

Now that you have git installed, you need to do a few things so that the commit messages that will be generated for you will contain your correct information.
The easiest way of doing this is through the git config command. Specifically, we need to provide our name and email address because git embeds this information into each commit we do. We can go ahead and add this information by typing:
git config --global user.name "Your Name"
$ git config --global user.email "youremail@domain.com"
We can see all of the configuration items that have been set by typing:
git config --list
As you can see, this has a slightly different format. The information is stored in the configuration file, which you can optionally edit by hand with your text editor like this:
nano ~/.gitconfig
There are many other options that you can set, but these are the two essential ones needed.
This makes more work for you because you will then have to revise the commits you have done with the corrected information.

Linux Distribution and Mirrors Kernel Archives

Linux Distribution and Mirrors Kernel Archives

Linux distribution (often abbreviated as distro) is an operating system made from a software collection, which is based upon the Linux kernel and, often, a package management system. Linux users usually obtain their operating system by downloading one of the Linux distributions, which are available for a wide variety of systems ranging from embedded devices (for example, OpenWrt) and personal computers to powerful supercomputers (for example, Rocks Cluster Distribution).

Linux Distribution and Mirrors Kernel Archives distros


DescriptionLocation

Arch Linux, A simple, lightweight Linux distribution.

archlinux

CentOS, an Enterprise-class Linux Distribution "derived from sources freely provided to the public by Red Hat

centos

The Comprehensive Perl Archive Network (CPAN)

CPAN

The Debian Linux distribution

debiandebian-cd

Fedora, Red Hat's "community project" Linux distribution

fedorafedora-altfedora-secondaryfedora-epel

IUS, a community project that provides RPM packages for newer versions of select software for EL distros

ius

Gentoo Linux

gentoogentoo-portage

The Free Software Foundation (The GNU Project)

gnu

The Linux Documentation Project

LDP

Linux Mint

linuxmintlinuxmint-packages

Mageia Project

mageia

OpenSUSE, Novell's "community project" Linux distribution

opensuse

Openwall GNU/*/Linux, a small security-enhanced Linux distro for servers

openwall

Oracle Linux, a repackaged distribution based on RHEL (ISOs only)

oracle

Qubes OS Project, an OS designed to provide strong workstation security via compartmentalization

qubes

sourceware.org, an archive of various free software, mostly development tools

sourceware

Slackware Linux

slackware

Tails, a live distribution aiming to preserve your privacy and anonimity

tails

Ubuntu, a Linux distribution from Canonical

ubuntuubuntu-releases

The Linux Foundation Yocto Project, a deeply embeddable Linux distribution

yocto


Linux Distribution and Mirrors Kernel Archives distros

What is Linux?

What is Linux?

what is linux logoLinux is a clone of the operating system Unix, written from scratch by Linus Torvalds with assistance from a loosely-knit team of hackers across the Net. It aims towards POSIX and Single UNIX Specification compliance.
It has all the features you would expect in a modern fully-fledged Unix, including true multitasking, virtual memory, shared libraries, demand loading, shared copy-on-write executables, proper memory management, and multistack networking including IPv4 and IPv6.
Although originally developed first for 32-bit x86-based PCs (386 or higher), today Linux also runs on a multitude of other processor architectures, in both 32- and 64-bit variants.


New to Linux?

If you're new to Linux, you don't want to download the kernel, which is just a component in a working Linux system. Instead, you want what is called a distribution of Linux, which is a complete Linux system. There are numerous distributions available for download on the Internet as well as for purchase from various vendors; some are general-purpose, and some are optimized for specific uses. We currently have mirrors of several distributions available at https://mirrors.kernel.org/.

Note, however, that most distributions are very large (several gigabytes), so unless you have a fast Internet link you may want to save yourself some hassle and purchase a CD-ROM with a distribution; such CD-ROMs are available from a number of vendors.

midhruvjaink.xyz

Powered by Blogger.

The Linux Foundation

Copyright © The Linux Foundation | DatorLab | Developed By Dhruv Jain