From fdb84511035cd227afd6ef10021d45cd79c3549e Mon Sep 17 00:00:00 2001 From: Jay Gordon Date: Wed, 27 Oct 2021 11:33:47 -0400 Subject: [PATCH] Update vm-install.sh --- other/vm-install.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/other/vm-install.sh b/other/vm-install.sh index f0921ea..ba2fd8e 100644 --- a/other/vm-install.sh +++ b/other/vm-install.sh @@ -1,6 +1,6 @@ #!/bin/bash -### no warantee - works on ubuntu 18.04 LTS +### no warranty - works on ubuntu 18.04 LTS ### @jaydestro # install npm @@ -9,15 +9,18 @@ add-apt-repository universe apt-get update -y apt-get install nodejs npm build-essential git -y - - - +parted /dev/sdc --script mklabel gpt mkpart xfspart xfs 0% 100% +mkfs.xfs /dev/sdc1 +sudo partprobe /dev/sdc1 +mkdir /react-clock-basic +mount /dev/sdc1 /react-clock-basic +cd /react-clock-basic ### installation + echo "Downloading Repo" - mkdir /react-clock-basic git clone https://github.com/jaydestro/react-clock-basic.git /react-clock-basic cd /react-clock-basic npm install