Changing installer requirements
This commit is contained in:
parent
df5e7733d6
commit
de74fba187
|
@ -2,14 +2,14 @@
|
|||
|
||||
# Replace /backup with backup folder location!
|
||||
# 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
|
||||
sudo -u postgres pg_dumpall | gzip -c > libretime-db-backup.gz
|
||||
sudo mv libretime-db-backup.gz /backup
|
||||
-u postgres pg_dumpall | gzip -c > libretime-db-backup.gz
|
||||
mv libretime-db-backup.gz /backup
|
||||
|
||||
# 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
|
||||
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
|
||||
|
||||
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).
|
||||
|
||||
Installation checklist:
|
||||
|
|
4
install
4
install
|
@ -1213,8 +1213,8 @@ verbose "...Done"
|
|||
echo -e "\n-----------------------------------------------------"
|
||||
echo " * Basic Setup DONE! * "
|
||||
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 " the Airtime webroot on your webserver "
|
||||
echo " the Libretime webroot on your webserver "
|
||||
echo "-----------------------------------------------------"
|
||||
|
||||
|
|
|
@ -11,9 +11,12 @@ icecast2
|
|||
lame
|
||||
libao-ocaml
|
||||
libapache2-mod-php7.2
|
||||
libcairo2-dev
|
||||
libcamomile-ocaml-data
|
||||
libfaad2
|
||||
libffi-dev
|
||||
libgirepository1.0-dev
|
||||
libglib2.0-dev
|
||||
libmad-ocaml
|
||||
libopus0
|
||||
libportaudio2
|
||||
|
@ -48,6 +51,7 @@ php-apcu
|
|||
php-bcmath
|
||||
php-mbstring
|
||||
php-pear
|
||||
pkg_config
|
||||
postgresql
|
||||
postgresql-client
|
||||
pwgen
|
||||
|
|
Loading…
Reference in New Issue