Changing installer requirements
This commit is contained in:
parent
df5e7733d6
commit
de74fba187
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
# Replace /backup with backup folder location!
|
# Replace /backup with backup folder location!
|
||||||
# Used for backing up the media library
|
# Used for backing up the media library
|
||||||
sudo rsync -aE --delete --info=progress2 /srv/airtime/stor/ /backup
|
rsync -aE --delete --info=progress2 /srv/airtime/stor/ /backup
|
||||||
|
|
||||||
# Used for backing up the database
|
# Used for backing up the database
|
||||||
sudo -u postgres pg_dumpall | gzip -c > libretime-db-backup.gz
|
-u postgres pg_dumpall | gzip -c > libretime-db-backup.gz
|
||||||
sudo mv libretime-db-backup.gz /backup
|
mv libretime-db-backup.gz /backup
|
||||||
|
|
||||||
# Used for backing up Libretime configs
|
# Used for backing up Libretime configs
|
||||||
sudo cp /etc/airtime/airtime.conf backup/airtime.conf.backup
|
cp /etc/airtime/airtime.conf backup/airtime.conf.backup
|
||||||
|
|
||||||
# Write date/time of backup
|
# Write date/time of backup
|
||||||
date >> /backup/datelog.txt
|
date >> /backup/datelog.txt
|
|
@ -13,7 +13,7 @@ and ethernet port. A wired approach is strongly recommended over a wireless one.
|
||||||
|
|
||||||
### 2. Install Ubuntu Server 18.04 LTS
|
### 2. Install Ubuntu Server 18.04 LTS
|
||||||
|
|
||||||
Download Ubuntu Server [here](https://ubuntu.com/download/server) (look under Option 3).
|
Download Ubuntu Server [here](https://ubuntu.com/download/server).
|
||||||
A standard install is recommended, on a RAID 1 array if possible (not required, but recommended).
|
A standard install is recommended, on a RAID 1 array if possible (not required, but recommended).
|
||||||
|
|
||||||
Installation checklist:
|
Installation checklist:
|
||||||
|
|
4
install
4
install
|
@ -1213,8 +1213,8 @@ verbose "...Done"
|
||||||
echo -e "\n-----------------------------------------------------"
|
echo -e "\n-----------------------------------------------------"
|
||||||
echo " * Basic Setup DONE! * "
|
echo " * Basic Setup DONE! * "
|
||||||
echo " "
|
echo " "
|
||||||
echo " To get started with Airtime, visit ${IP} "
|
echo " To get started with Libretime, visit ${IP} "
|
||||||
echo " or, if you've set up your own web configuration, "
|
echo " or, if you've set up your own web configuration, "
|
||||||
echo " the Airtime webroot on your webserver "
|
echo " the Libretime webroot on your webserver "
|
||||||
echo "-----------------------------------------------------"
|
echo "-----------------------------------------------------"
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,12 @@ icecast2
|
||||||
lame
|
lame
|
||||||
libao-ocaml
|
libao-ocaml
|
||||||
libapache2-mod-php7.2
|
libapache2-mod-php7.2
|
||||||
|
libcairo2-dev
|
||||||
libcamomile-ocaml-data
|
libcamomile-ocaml-data
|
||||||
libfaad2
|
libfaad2
|
||||||
libffi-dev
|
libffi-dev
|
||||||
|
libgirepository1.0-dev
|
||||||
|
libglib2.0-dev
|
||||||
libmad-ocaml
|
libmad-ocaml
|
||||||
libopus0
|
libopus0
|
||||||
libportaudio2
|
libportaudio2
|
||||||
|
@ -48,6 +51,7 @@ php-apcu
|
||||||
php-bcmath
|
php-bcmath
|
||||||
php-mbstring
|
php-mbstring
|
||||||
php-pear
|
php-pear
|
||||||
|
pkg_config
|
||||||
postgresql
|
postgresql
|
||||||
postgresql-client
|
postgresql-client
|
||||||
pwgen
|
pwgen
|
||||||
|
|
Loading…
Reference in New Issue