NextCloud

wwiki
Jhkim (토론 | 기여)님의 2019년 5월 17일 (금) 10:41 판 (nextcloud client build)
이동: 둘러보기, 검색

memcache

sudo apt install php-apcu

config/config.php

'memcache.local' => '\OC\Memcache\APCu',

sudo systemctl restart php7.3-fpm.service nginx.service

imagick

apt install php-imagick

sudo systemctl restart php7.3-fpm.service nginx.service

nextcloud client build

x86

https://nextcloud.com/install/#install-clients 에서 다운받을 수 있다.

arm

바이너리 다운받아 실행하거나 소스를 다운받아 빌드하여 사용할 수 있다.

qtwebengine 바이너리

바이너리 다운로드

https://github.com/istandthon7/desktop/releases

의존성 설치
$ sudo apt install libqt5keychain1/stable

소스빌드

의존성 설치
$ sudo apt-get install build-essential git cmake openssl libssl-dev sqlite3 libsqlite3-dev qt5-default libqt5webkit5-dev qttools5-dev qttools5-dev-tools   python-sphinx texlive-latex-base inotify-tools qt5keychain-dev doxygen extra-cmake-modules kio-dev 

qtwebengine을 빌드한다.

nextcloud client 소스다운로드
$ git clone https://github.com/nextcloud/desktop  
$ mkdir build  
$ cmake .. -DCMAKE_INSTALL_PREFIX=~/.local/ -DCMAKE_BUILD_TYPE=Debug -DNO_SHIBBOLETH=1

설치경로를 사용자 경로로 지정하지 않은 경우에는 sudo를 추가

$ make install