-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
executable file
·50 lines (41 loc) · 1.34 KB
/
install.sh
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
### Script to install CCA Tools in BitCurator 4/Ubuntu 22
# Tessa Walsh - 2023
# Run as sudo
# Install PyQt5
echo "Installing PyQt5..."
python3 -m pip install pyqt5
# Force Siegfried to make single identifications
roy build -multi 0
cd /home/bcadmin
# Download and install CCA Disk Image Processor
echo "Installing Disk Image Processor..."
git clone https://github.com/CCA-Public/diskimageprocessor && \
cd diskimageprocessor && \
sudo chmod +x install.sh && \
sudo ./install.sh && \
cd /home/bcadmin && \
sudo rm -rf diskimageprocessor
# Download and install CCA Folder Processor
echo "Installing Folder Processor..."
git clone https://github.com/CCA-Public/folderprocessor && \
cd folderprocessor && \
sudo chmod +x install.sh && \
sudo ./install.sh && \
cd /home/bcadmin && \
sudo rm -rf folderprocessor
# Download and install CCA SIP Creator
echo "Installing SIP Creator..."
git clone https://github.com/CCA-Public/sipcreator && \
cd sipcreator && \
sudo chmod +x install.sh && \
sudo ./install.sh && \
cd /home/bcadmin && \
sudo rm -rf sipcreator
# Create /mnt/diskid/ directory for processing UDF and HFS disks with Disk Image Processor
if [ ! -d /mnt/diskid ]; then
echo "Creating /mnt/diskid..."
mkdir /mnt/diskid
fi
# Echo done
echo "Finished! CCA Tools installed and ready to launch from Applications menu."