debian11_install.md aktualisiert

This commit is contained in:
Peter Reichart 2023-10-31 14:11:20 +00:00
parent 9c61e6d2a7
commit 7bc05cc20f

View File

@ -2,6 +2,9 @@
### OS:
* LXC Template Debian ```debian-11-standard_11.6-1_amd64```
* System auf DE@UTF-8 stellen:
```dpkg-reconfigure locales```
* .DEB Pakete installieren:
```
apt update && apt upgrade -y && apt install apache2 libarchive-zip-perl libclone-perl \
@ -22,4 +25,15 @@ apt update && apt upgrade -y && apt install apache2 libarchive-zip-perl libclon
libdatetime-event-cron-perl libexception-class-perl libcam-pdf-perl \
libxml-libxml-perl libtry-tiny-perl libmath-round-perl \
libimager-perl libimager-qrcode-perl librest-client-perl libipc-run-perl
```
### Kivitendo Source
```
cd /var/www/
git clone https://github.com/kivitendo/kivitendo-erp.git
cd kivitendo-erp/
git checkout `git tag -l | egrep -ve "(alpha|beta|rc)" | tail -1`
mkdir webdav
chown -R www-data users spool webdav templates users
cp config/kivitendo.conf.default config/kivitendo.conf
```