Tatiana Kochedykova https://www.linuxtechi.com Tue, 28 Jan 2020 11:15:06 +0000 en-US hourly 1 https://www.linuxtechi.com/wp-content/uploads/2020/02/cropped-linuxtechi-favicon-32x32.png Tatiana Kochedykova https://www.linuxtechi.com 32 32 How to edit ownCloud documents using ONLYOFFICE online editors https://www.linuxtechi.com/edit-owncloud-documents-onlyoffice-online-editors/ https://www.linuxtechi.com/edit-owncloud-documents-onlyoffice-online-editors/#comments Sun, 05 Mar 2017 07:14:41 +0000 http://www.linuxtechi.com/?p=5079 ownCloud is an open source software that allows us to set up a private cloud storage. To edit and collaborate on documents hosted in ownCloud, we can use office suite from ONLYOFFICE that includes: ONLYOFFICE Document Editor ONLYOFFICE Spreadsheet Editor  ONLYOFFICE Presentation Editor It also ... Read more

The post How to edit ownCloud documents using ONLYOFFICE online editors first appeared on LinuxTechi.]]>
ownCloud is an open source software that allows us to set up a private cloud storage. To edit and collaborate on documents hosted in ownCloud, we can use office suite from ONLYOFFICE that includes:

  • ONLYOFFICE Document Editor
  • ONLYOFFICE Spreadsheet Editor
  •  ONLYOFFICE Presentation Editor

It also provides a set of collaboration tools for real-time co-editing: fast and strict co-editing modes, chat and comments to interact with co-authors. Review and tracking changes are also available.

What we need to integrate ONLYOFFICE with ownCloud:

  • ownCloud 9.0.3 or later. This tutorial will help us to install ownCloud.
  • ONLYOFFICE Document Server 3.0 or later.
  • ownCloud ONLYOFFICE integration app.

How to proceed:

Step 1. Install ONLYOFFICE Document Server.

The easiest and fastest way to deploy online editors is to use an official Docker image.

First install Docker following the instructions here.

Then install Document Server with this command:

sudo docker run -i -t -d -p 80:80 onlyoffice/documentserver

Step 2. Integrate ownCloud with ONLYOFFICE.

Copy and place the ownCloud ONLYOFFICE integration app into the app directory of ownCloud server.

cd apps/ git clone https://github.com/ONLYOFFICE/onlyoffice-owncloud.git onlyoffice

Open ownCloud. Select Apps >> Not enabled >> ONLYOFFICE. Enable ONLYOFFICE.

Finally, configure the application. Go to ownCloud administrative settings, switch to the ONLYOFFICE section and enter the address of the server with ONLYOFFICE Document Server installed.

Step 3. Start editing documents.

Open the Files list. Select a text document, spreadsheet or presentation to edit. Currently you can edit the following document formats: DOCX, XLSX, PPTX, TXT. The following files will be converted into the corresponding Office Open XML formats: ODT, ODS, ODP, DOC, XLS, PPT, PPS, EPUB, RTF, HTML, HTM.

Open the menu and select the Open in ONLYOFFICE option.

Edit-ownCloud-document-ONLYOFFICE

The post How to edit ownCloud documents using ONLYOFFICE online editors first appeared on LinuxTechi.]]>
https://www.linuxtechi.com/edit-owncloud-documents-onlyoffice-online-editors/feed/ 2
How to Install ONLYOFFICE Desktop Editors on Debian/Ubuntu https://www.linuxtechi.com/install-customize-onlyoffice-desktop-editors-on-debian-ubuntu-linuxmint/ https://www.linuxtechi.com/install-customize-onlyoffice-desktop-editors-on-debian-ubuntu-linuxmint/#respond Thu, 24 Nov 2016 02:57:03 +0000 http://www.linuxtechi.com/?p=4717 ONLYOFFICE Desktop Editors is a free and open source office suite that includes an alternative for 3 major Microsoft Office apps – Word, Excel, and PowerPoint by providing access to the web-based set of tools for real-time co-editing. As for the functionality, ONLYOFFICE is fully ... Read more

The post How to Install ONLYOFFICE Desktop Editors on Debian/Ubuntu first appeared on LinuxTechi.]]>
ONLYOFFICE Desktop Editors is a free and open source office suite that includes an alternative for 3 major Microsoft Office apps – Word, Excel, and PowerPoint by providing access to the web-based set of tools for real-time co-editing. As for the functionality, ONLYOFFICE is fully customizable by means of the plugins.

Refer this to connect your desktop editors to an existing web-based ONLYOFFICE portal

System Requirements to Install ONLYOFFICE Desktop Editors on Debian/Ubuntu/Linux Mint

Hardware requirements:
  • CPU: dual-core 2 GHz or better
  •  RAM: 2 GB or more
  • HDD: at least 2 GB of free space
Software requirements
  •  OS: 64-bit Debian, Ubuntu or other compatible distributions with kernel version 3.8 or later
  • Additional Requirements – Administrative permissions for program installation

Step:1. Installing ONLYOFFICE Desktop Editors from a repository

Download and install GPG key:

wget http://download.onlyoffice.com/repo/onlyoffice.keysudo apt-key add onlyoffice.key

Add ONLYOFFICE Desktop Editors repository:

– open the /etc/apt/sources.list file using any available text editor:

sudo nano /etc/apt/sources.list

– add the following record:

deb http://download.onlyoffice.com/repo/debian squeeze main

– save and close the sources.list.

Update the package manager cache in order to use the new repository:

sudo apt-get update

Install ONLYOFFICE Desktop Editors using the following command:

sudo apt-get install onlyoffice-desktopeditors

Step: 2. Running ONLYOFFICE Desktop Editors

Use the terminal command to run ONLYOFFICE Desktop Editors:

desktopeditors

onlyoffice-desktop-editors1

Step: 3 Using ONLYOFFICE Desktop Editors

ONLYOFFICE Desktop Editors have a tab-based user interface. So you can open and edit different documents within one and the same window switching between tabs.

Once the program is launched, you will see the desktop editor main screen where you can create a new document, spreadsheet, or presentation, open files stored on your PC, or connect your desktop editors to an existing web-based ONLYOFFICE portal to collaborate on documents in real-time, comment, interact via integrated chat with your coauthors, etc.

onlyoffice-desktop-editors2

There is also a cloud-based solution free for personal use – ONLYOFFICE Personal. You can create an account and connect it to your desktop editors for real-time collaboration without deploying it on your server.

Step:4 Adding plugins you need

The ONLYOFFICE plugin collection is available on GitHub. To download it, use the following command:

git clone https://github.com/ONLYOFFICE/sdkjs-plugins.git

Open the folder and select the plugins you need, ex. YouTube to insert a video from YouTube, or OCR to recognize text from the pictures, or ClipArt to insert a clipart object into your document or presentation, etc.

Then open the folder with the plugin you want to add. Select all the files and archive them. Make sure you archive all files (not a folder!), including config.json, index.html and pluginCode.js.

Finally change the archive extension to .plugin and drag-and-drop it to the desktop editors.

Create a document or open an existing one. The Plugin icon will appear on the left-side panel.

onlyoffice-desktop-editors3

If there is no plugin that you need, you can create it yourself using API

That’s all for this article, Enjoy and have Fun with ONLYOFFICE Desktop Editors 🙂

The post How to Install ONLYOFFICE Desktop Editors on Debian/Ubuntu first appeared on LinuxTechi.]]>
https://www.linuxtechi.com/install-customize-onlyoffice-desktop-editors-on-debian-ubuntu-linuxmint/feed/ 0