Skip to content

Instantly share code, notes, and snippets.

View KANE-99's full-sized avatar
🎯
Focusing and Sharpening skills

Kirtesh Suthar KANE-99

🎯
Focusing and Sharpening skills
View GitHub Profile
@KANE-99
KANE-99 / git cheat sheet.md
Last active March 21, 2020 21:07
cheat sheet
<title>cheat sheet</title>
@npearce
npearce / install-docker.md
Last active May 22, 2024 10:13
Amazon Linux 2 - install docker & docker-compose using 'sudo amazon-linux-extras' command

UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.

Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/

Docker CE Install

sudo amazon-linux-extras install docker
sudo service docker start
@AaronGhent
AaronGhent / p4merge install
Created January 17, 2014 01:02
Installs p4merge on a linux based machine
# p4merge for 64 bit
wget http://www.perforce.com/downloads/perforce/r13.4/bin.linux26x86_64/p4v.tgz
# p4merge for 32 bit
# wget http://www.perforce.com/downloads/perforce/r13.4/bin.linux26x86/p4v.tgz
tar zxvf p4v.tgz
sudo cp -r p4v-* /usr/local/p4v/
sudo ln -s /usr/local/p4v/bin/p4merge /usr/local/bin/p4merge