This repository has been archived by the owner on Aug 24, 2024. It is now read-only.
forked from YoCodingMonster/OpenFreezeCenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
124 lines (116 loc) · 4.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/bin/bash
FLAG_1=0
FLAG_2=0
FLAG_3=0
##############################################################################################
# Moving files to desktop and making virtual environment and installing all the dependencies #
##############################################################################################
if test -f ~/Desktop/OFC/OFC.py;
then
FLAG_3=1
else
echo "This is a shell script to install all the dependencies required for this software to run."
echo "Dependencies required are as follows."
echo "1 -> python3-virtualenv AND python3-venv"
echo "2 -> PyGObject"
echo "3 -> PyCairo"
echo "4 -> Expert"
echo "----------Creating Folder for Open Freeze Center----------"
cd ~/Desktop
mkdir OFC
echo "----------Installing python3-virtualenv AND python3-venv and other dependencies----------"
sudo apt update
sudo apt upgrade
sudo apt install python3-virtualenv python3-venv libgirepository1.0-dev libcairo2-dev
echo "----------Creating Virtual Environment for Open Freeze Center----------"
python3 -m venv ~/Desktop/OFC
echo "----------Virtual Environment for Open Freeze Center created----------"
echo "----------Installing PyGObject----------"
~/Desktop/OFC/bin/pip3 install PyGObject
echo "----------Installing PyCairo----------"
~/Desktop/OFC/bin/pip3 install pycairo
echo "----------Installing Expert----------"
sudo apt-get install expect
echo "----------Moving files to virtual environment----------"
cp -i ~/Downloads/OpenFreezeCenter-5/install.sh ~/Desktop/OFC
cp -i ~/Downloads/OpenFreezeCenter-5/file_1.sh ~/Desktop/OFC
cp -i ~/Downloads/OpenFreezeCenter-5/file_2.sh ~/Desktop/OFC
cp -i ~/Downloads/OpenFreezeCenter-5/OFC.py ~/Desktop/OFC
cp -i ~/Downloads/OpenFreezeCenter-5/README.md ~/Desktop/OFC
cp -i ~/Downloads/OpenFreezeCenter-5/LICENSE ~/Desktop/OFC
FLAG_3=1
fi
################################
# Prepairing the EC read/write #
################################
if test -d /etc/modprobe.d;
then
if test -f /etc/modprobe.d/ec_sys.conf;
then
if grep -q "options ec_sys write_support=1" "/etc/modprobe.d/ec_sys.conf";
then FLAG_1=1
else
echo "----------Prepairing system for EC read/write----------"
cd ~/Desktop/OFC/
sudo ./file_1.sh
FLAG_1=1
fi
else
echo "----------Prepairing system for EC read/write----------"
sudo touch /etc/modprobe.d/ec_sys.conf
cd ~/Desktop/OFC/
sudo ./file_1.sh
FLAG_1=1
fi
else
echo "----------Prepairing system for EC read/write----------"
mkdir /etc/modprobe.d
sudo touch /etc/modprobe.d/ec_sys.conf
cd ~/Desktop/OFC/
sudo ./file_1.sh
FLAG_1=1
fi
if test -d /etc/modules-load.d;
then
if test -f /etc/modules-load.d/ec_sys.conf;
then
if grep -q "ec_sys" "/etc/modules-load.d/ec_sys.conf";
then FLAG_2=1
else
echo "----------Prepairing system for EC read/write----------"
cd ~/Desktop/OFC/
sudo ./file_2.sh
FLAG_2=1
fi
else
echo "----------Prepairing system for EC read/write----------"
sudo touch /etc/modules-load.d/ec_sys.conf
cd ~/Desktop/OFC/
sudo ./file_2.sh
FLAG_2=1
fi
else
echo "----------Prepairing system for EC read/write----------"
mkdir /etc/modules-load.d
sudo touch /etc/modules-load.d/ec_sys.conf
cd ~/Desktop/OFC/
sudo ./file_2.sh
FLAG_2=1
fi
if [ "$FLAG_1" -eq 1 ] && [ "$FLAG_2" -eq 1 ];
then
echo "----------EC read/write is enabled----------"
else
echo "----------EC read/write is can not be enabled----------"
fi
if [ "$FLAG_3" -eq 1 ];
then
if test -f ~/Desktop/OFC/config.py;
then
echo "----------Running Software----------"
sudo nohup ~/Desktop/OFC/bin/python3 ~/Desktop/OFC/OFC.py
else
echo "----------Running Software----------"
sudo nohup ~/Desktop/OFC/bin/python3 ~/Desktop/OFC/OFC.py
fi
fi