mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-24 07:49:42 +02:00
fix bugs
This commit is contained in:
parent
baeb8a943c
commit
fca068ce17
2 changed files with 21 additions and 8 deletions
BIN
images/box4.jpg~
BIN
images/box4.jpg~
Binary file not shown.
Before Width: | Height: | Size: 159 KiB |
29
install.sh
29
install.sh
|
@ -4,14 +4,20 @@
|
||||||
set -e
|
set -e
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
#---------------------
|
||||||
# Python
|
# Python
|
||||||
|
#---------------------
|
||||||
apt install -y python-is-python3 python3-pip
|
apt install -y python-is-python3 python3-pip
|
||||||
|
|
||||||
|
#---------------------
|
||||||
# Peotry
|
# Peotry
|
||||||
|
#---------------------
|
||||||
su - $SUDO_USER -c "curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -"
|
su - $SUDO_USER -c "curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -"
|
||||||
su - $SUDO_USER -c "poetry --version"
|
su - $SUDO_USER -c "poetry --version"
|
||||||
|
|
||||||
|
#---------------------
|
||||||
# REDIS
|
# REDIS
|
||||||
|
#---------------------
|
||||||
apt-get update
|
apt-get update
|
||||||
apt install -y build-essential tcl
|
apt install -y build-essential tcl
|
||||||
|
|
||||||
|
@ -25,7 +31,9 @@ cd ..
|
||||||
|
|
||||||
chown -R $SUDO_USER redis
|
chown -R $SUDO_USER redis
|
||||||
|
|
||||||
|
#---------------------
|
||||||
# Kvrocks
|
# Kvrocks
|
||||||
|
#---------------------
|
||||||
apt-get update
|
apt-get update
|
||||||
apt install -y gcc g++ make libsnappy-dev autoconf automake libtool googletest libgtest-dev
|
apt install -y gcc g++ make libsnappy-dev autoconf automake libtool googletest libgtest-dev
|
||||||
|
|
||||||
|
@ -39,9 +47,13 @@ cd ..
|
||||||
|
|
||||||
chown -R $SUDO_USER kvrocks
|
chown -R $SUDO_USER kvrocks
|
||||||
|
|
||||||
|
#---------------------
|
||||||
# Pandora
|
# Pandora
|
||||||
|
#---------------------
|
||||||
su - $SUDO_USER -c "git clone https://github.com/pandora-analysis/pandora.git"
|
su - $SUDO_USER -c "git clone https://github.com/pandora-analysis/pandora.git"
|
||||||
|
cd pandorra
|
||||||
|
|
||||||
|
# install packages
|
||||||
apt install -y python3-dev # for compiling things
|
apt install -y python3-dev # for compiling things
|
||||||
apt install -y libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 # For HTML -> PDF
|
apt install -y libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 # For HTML -> PDF
|
||||||
apt install -y libreoffice-base-nogui libreoffice-calc-nogui libreoffice-draw-nogui libreoffice-impress-nogui libreoffice-math-nogui libreoffice-writer-nogui # For Office -> PDF
|
apt install -y libreoffice-base-nogui libreoffice-calc-nogui libreoffice-draw-nogui libreoffice-impress-nogui libreoffice-math-nogui libreoffice-writer-nogui # For Office -> PDF
|
||||||
|
@ -49,9 +61,14 @@ apt install -y exiftool # for extracting exif information
|
||||||
apt install -y unrar # for extracting rar files
|
apt install -y unrar # for extracting rar files
|
||||||
apt install -y libxml2-dev libxslt1-dev antiword unrtf poppler-utils pstotext tesseract-ocr flac ffmpeg lame libmad0 libsox-fmt-mp3 sox libjpeg-dev swig # for textract
|
apt install -y libxml2-dev libxslt1-dev antiword unrtf poppler-utils pstotext tesseract-ocr flac ffmpeg lame libmad0 libsox-fmt-mp3 sox libjpeg-dev swig # for textract
|
||||||
|
|
||||||
cd pandora
|
# install yara-python
|
||||||
su - $SUDO_USER -c "cd ~/pandora; poetry install"
|
su - $SUDO_USER -c "python3 -m pip show yara-python"
|
||||||
|
|
||||||
|
# set .env
|
||||||
echo PANDORA_HOME="`pwd`" >> .env
|
echo PANDORA_HOME="`pwd`" >> .env
|
||||||
|
chown $SUDO_USER .env
|
||||||
|
|
||||||
|
su - $SUDO_USER -c "cd ~/pandora; poetry install"
|
||||||
su - $SUDO_USER -c "cd ~/pandora; cp config/generic.json.sample config/generic.json"
|
su - $SUDO_USER -c "cd ~/pandora; cp config/generic.json.sample config/generic.json"
|
||||||
|
|
||||||
# ClamAV
|
# ClamAV
|
||||||
|
@ -72,12 +89,8 @@ dpkg --ignore-depends=libssl0.9.8 -i cav-linux_x64.deb
|
||||||
|
|
||||||
wget http://cdn.download.comodo.com/av/updates58/sigs/bases/bases.cav -O /opt/COMODO/scanners/bases.cav
|
wget http://cdn.download.comodo.com/av/updates58/sigs/bases/bases.cav -O /opt/COMODO/scanners/bases.cav
|
||||||
|
|
||||||
# Workers
|
# Configure workers
|
||||||
|
|
||||||
su - $SUDO_USER -c "cd pandora; for file in pandora/workers/*.sample; do cp -i ${file} ${file%%.sample}; done"
|
su - $SUDO_USER -c "cd pandora; for file in pandora/workers/*.sample; do cp -i ${file} ${file%%.sample}; done"
|
||||||
# remove not working
|
|
||||||
su - $SUDO_USER -c "cd pandora; rm pandora/workers/yara*.yml"
|
|
||||||
su - $SUDO_USER -c "cd pandora; poetry run update --yes"
|
|
||||||
|
|
||||||
#---------------------
|
#---------------------
|
||||||
# Pandora-box
|
# Pandora-box
|
||||||
|
@ -106,7 +119,7 @@ usermod -a -G video $SUDO_USER
|
||||||
usermod -a -G input $SUDO_USER
|
usermod -a -G input $SUDO_USER
|
||||||
|
|
||||||
# Start Poetry at boot
|
# Start Poetry at boot
|
||||||
echo "su - $SUDO_USER -c \"cd pandora ; poetry run update -yes\"" > /etc/rc.local
|
echo "su - $SUDO_USER -c \"cd pandora ; poetry run update --yes\"" > /etc/rc.local
|
||||||
chmod +x /etc/rc.local
|
chmod +x /etc/rc.local
|
||||||
|
|
||||||
# getty1 autostart
|
# getty1 autostart
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue