-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·32 lines (22 loc) · 823 Bytes
/
install.sh
File metadata and controls
executable file
·32 lines (22 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/sh
# Installer for umap, numap and umap2Plus
echo "[+] Starting installation"
UMAP_HOME_PATH=$HOME/umaphome
mkdir $UMAP_HOME_PATH $UMAP_HOME_PATH/mtp_fs
wget https://github.com/DerAlexmeister/umap2Plus/raw/master/data/fat32.3M.stick.img.tar
tar -xvf fat32.3M.stick.img.tar
mv stick.img $UMAP_HOME_PATH
git clone https://github.com/BinyaminSharet/Mtp.git
sudo pip install ./Mtp
echo "[+] Installing nu-map"
git clone https://github.com/usb-tools/nu-map.git
sudo pip install ./nu-map
echo "[+] Installing umap2Plus"
git clone https://github.com/DerAlexmeister/umap2Plus.git
sudo pip install ./umap2Plus
echo "[+] Installing umap"
git clone https://github.com/nccgroup/umap.git
sudo mv ./umap $UMAP_HOME_PATH/
echo "[+] Cleaning up"
rm -rf Mtp nu-map umap2Plus umap fat32.3M.stick.img.tar
echo "[+] Done"