Skip to content

Instantly share code, notes, and snippets.

View Parkman328's full-sized avatar

John Park Parkman328

View GitHub Profile

Keybase proof

I hereby claim:

  • I am parkman328 on github.
  • I am parkman328 (https://keybase.io/parkman328) on keybase.
  • I have a public key ASBQoBhi8taGV8DkWYcDJLMiPDelxiAbMN-mO3crJXMrdgo

To claim this, I am signing this object:

@Parkman328
Parkman328 / Install_VNC_AWS_Centos
Created June 17, 2020 21:11 — forked from mikaelMortensenADI/Install_VNC_AWS_Centos
How to Install VNC on an Amazon EC2 Centos 7.2 AMI
How to Install VNC on an AWS EC2 Centos 7.2 AMI
Reference: http://devopscube.com/how-to-setup-gui-for-amazon-ec2-rhel-7-instance/
1. Update the server using the following command.
sudo yum -y update
2. Install the gnome GUI components using the following command.
sudo yum groupinstall -y "Server with GUI"
@Parkman328
Parkman328 / InstallingRocketChatServer.sh
Last active October 16, 2020 22:50 — forked from linuxoracledev/InstallingRocketChatServer.sh
How to install and configure rocket chat on ubuntu 18.04 LTS
##Step 1: Install MongoDB
#import the MongoDB public GPG key
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
#Create the list file - /etc/apt/sources.list.d/mongodb-org-4.0.list
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.0.list
#Update the local package repository
sudo apt update