Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions other/vm-install.sh
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down