I just ruined my cozy returning, from the hospital. Because I couldn't hold myself stop getting fury when I was having a call with my wife. She responsed so impatient when I asked is there any thing to eat for my Mom. My mom went to the hospital to take me back after 7 days diagnosis & recuperation. What I felt about the tone from my wife was she has been building up a bad image to my mom, and it's mutual, my mom have tons of trivias to complain about.
How big the rift is! What I like to do is to hide myself somewhere, or even more, definitely disappear for a while. These misunderstandings kept growing when I was not with them. Now it's time to face them.
My wife started a cold war with me, no unnecessary conversation, no simle, no eye communication. And the agreement went to termless isolation between she and my mom. So frustrated.
So yesterday I tried to setup my private git on my VPS, it’s my way to get myself relaxed.
Step 1 Create the SSH Key Pair
1
ssh-keygen -C "youremail@mailprovider.com"
Step 2 Setup a git user
1
adduser git
set password to git
1
passwd git
Then
1
visudo
find “root ALL=(ALL) ALL” grant the privileges to new user with adding this:
1
git ALL=(ALL) ALL
Step 3 install git on Cent OS 7
Update all your yum.
1
yum -y update
Install Git
1
yum -y install git
Step 4 switch to user git
Very important, the first time I failed here because I did all the steps next with user ‘root’.