"NextCloud"의 두 판 사이의 차이

wwiki
이동: 둘러보기, 검색
(nextcloud client build)
(nextcloud client build)
14번째 줄: 14번째 줄:
  
 
==nextcloud client build==
 
==nextcloud client build==
 +
===x86===
 +
https://nextcloud.com/install/#install-clients 에서 다운받을 수 있다.
  
x86은 https://nextcloud.com/install/#install-clients 에서 다운받을 수 있다.
+
===arm===
 +
바이너리 다운받아 실행하거나 소스를 다운받아 빌드하여 사용할 수 있다.
  
arm은 다음에서 다운받거나 빌드하여 사용할 수 있다.
+
====qtwebengine 바이너리====
 +
 
 +
====바이너리 다운로드====
  
 
https://github.com/istandthon7/desktop/releases
 
https://github.com/istandthon7/desktop/releases
  
$ 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  
+
=====의존성 설치=====
 +
 
 +
$ 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  
  
 
[[QT#qtwebengine build|qtwebengine을 빌드]]한다.
 
[[QT#qtwebengine build|qtwebengine을 빌드]]한다.
  
$ git clone https://github.com/nextcloud/desktop 
+
=====nextcloud client 소스다운로드=====
 
 
$ mkdir build 
 
  
$ cmake .. -DCMAKE_INSTALL_PREFIX=~/.local/ -DCMAKE_BUILD_TYPE=Debug -DNO_SHIBBOLETH=1
+
$ git clone https://github.com/nextcloud/desktop 
 +
$ mkdir build 
 +
$ cmake .. -DCMAKE_INSTALL_PREFIX=~/.local/ -DCMAKE_BUILD_TYPE=Debug -DNO_SHIBBOLETH=1
  
 
설치경로를 사용자 경로로 지정하지 않은 경우에는 sudo를 추가
 
설치경로를 사용자 경로로 지정하지 않은 경우에는 sudo를 추가
  
$ make install
+
$ make install

2019년 5월 17일 (금) 10:41 판

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