<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: LiberalLion</title>
    <description>The latest articles on DEV Community by LiberalLion (@liberallion).</description>
    <link>https://dev.to/liberallion</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F933915%2Fd28ad4f6-ea80-4810-8c03-f26356cce87a.png</url>
      <title>DEV Community: LiberalLion</title>
      <link>https://dev.to/liberallion</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/liberallion"/>
    <language>en</language>
    <item>
      <title>Install and Configure VNC on Ubuntu 20.04</title>
      <dc:creator>LiberalLion</dc:creator>
      <pubDate>Mon, 10 Oct 2022 14:39:50 +0000</pubDate>
      <link>https://dev.to/liberallion/install-and-configure-vnc-on-ubuntu-2004-1bno</link>
      <guid>https://dev.to/liberallion/install-and-configure-vnc-on-ubuntu-2004-1bno</guid>
      <description>&lt;p&gt;A graphical desktop sharing system called Virtual Network Computing (VNC) enables you to remotely operate another computer using your keyboard and mouse.&lt;br&gt;
A free and open-source replacement for the Microsoft remote desktop protocol is available (RDP).&lt;/p&gt;

&lt;p&gt;The installation and configuration of a VNC server on Ubuntu 20.04 are covered in this article.&lt;br&gt;
Additionally, we'll demonstrate how to establish a secure SSH tunnel connection to the VNC server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Installing Desktop Environment&lt;/strong&gt;&lt;br&gt;
Ubuntu servers don't come with a desktop environment pre-installed and are operated via the command line.&lt;br&gt;
You can skip this step if you use Ubuntu on your desktop. &lt;/p&gt;

&lt;p&gt;The Ubuntu repository contain a variety of desktop environments.&lt;br&gt;
Installing Gnome, the default desktop environment in Ubuntu 20.04, is one choice.&lt;br&gt;
Installing Xfce is an additional choice.&lt;br&gt;
It is the best desktop environment for use on a remote server since it is quick, reliable, and lightweight.&lt;/p&gt;

&lt;p&gt;Installing Xfce is covered in this guide.&lt;br&gt;
the following commands should be entered by a user with sudo privilege:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo apt update&lt;/code&gt;&lt;br&gt;
&lt;code&gt;sudo apt install xfce4 xfce4-goodies&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It could take some time to download and install the Xfce packages, depending on your machine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Installing VNC Server&lt;/strong&gt;&lt;br&gt;
Ubuntu repositories have a variety of VNC servers, including TightVNC, TigerVNC, and x11vnc.&lt;br&gt;
Each VNC server has unique performance and security advantages and disadvantages. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo apt install tigervnc-standalone-server&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Configuring VNC Access&lt;/strong&gt;&lt;br&gt;
The initial user configuration and password setup are done once the VNC server has been installed.&lt;/p&gt;

&lt;p&gt;The vncpasswd command can be used to change the user password.&lt;br&gt;
Run the following command without using sudo: &lt;/p&gt;

&lt;p&gt;&lt;code&gt;vncpasswd&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;You will be asked to enter your password, confirm it, and decide if you want to make it a view-only password.&lt;br&gt;
The user won't be able to use the mouse or keyboard to communicate with the VNC instance if you opt to put up a view-only password:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Password:
Verify:
Would you like to enter a view-only password (y/n)? n

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The password file is stored in the ~/.vnc directory, which is created if not present.&lt;/p&gt;

&lt;p&gt;Next, we need to configure TigerVNC to use Xfce. To do so, create the following file:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nano ~/.vnc/xstartup&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
exec startxfce4 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save and close the file. The commands above are automatically executed whenever you start or restart the TigerVNC server.&lt;/p&gt;

&lt;p&gt;The ~/.vnc/xstartup file also needs to have execute permissions. Use the chmod command to set the file permissions:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;chmod u+x ~/.vnc/xstartup&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Create a file called config and add one option each line if you need to give the VNC server &lt;a href="https://tigervnc.org/" rel="noopener noreferrer"&gt;more choices&lt;/a&gt;.&lt;br&gt;
Here's an illustration: Edit ~/.vnc/config&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;geometry=1920x1080
dpi=96

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can now start the VNC server using the vncserver command:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;vncserver&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Output:
New 'server2.linuxize.com:1 (linuxize)' desktop at :1 on machine server2.linuxize.com

Starting applications specified in /home/linuxize/.vnc/xstartup
Log file is /home/linuxize/.vnc/server2.linuxize.com:1.log

Use xtigervncviewer -SecurityTypes VncAuth -passwd /home/linuxize/.vnc/passwd :1 to connect to the VNC server.

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the output above, take note of the:1 after the hostname.&lt;br&gt;
This displays the display port number where the vnc server is currently running.&lt;br&gt;
The server is operating in this instance on TCP port 5901 (5900+1).&lt;br&gt;
The server is currently operating on port 5902 (5900+2) since if you use vncserver to start a second instance, it will run on the next available port, i.e.&lt;/p&gt;

&lt;p&gt;When working with VNC servers, it's crucial to keep in mind that :X is a display port that stands for 5900+X.&lt;/p&gt;

&lt;p&gt;You may receive a list of all the VNC sessions that are active right now by typing: &lt;/p&gt;

&lt;p&gt;&lt;code&gt;vncserver -list&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Output:
TigerVNC server sessions:

X DISPLAY # RFB PORT #  PROCESS ID
:1            5901          5710

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Before continuing with the next step, stop the VNC instance using the vncserver command with a -kill option and the server number as an argument. In this example, the server is running in port 5901 (:1), so we’ll stop it with:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;vncserver -kill :1&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Output:
Killing Xtigervnc process ID 5710... success!

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Creating a Systemd unit file&lt;/strong&gt;&lt;br&gt;
Let's write a systemd unit file to automate starting, stopping, and restarting the VNC service rather than manually beginning the session.&lt;/p&gt;

&lt;p&gt;Copy and paste the following configuration into your text editor once it is open.&lt;br&gt;
Please ensure that the username on line 7 corresponds to your username. &lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo nano /etc/systemd/system/vncserver@.service&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=simple
User=linux
PAMName=login
PIDFile=/home/%u/.vnc/%H%i.pid
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill :%i &amp;gt; /dev/null 2&amp;gt;&amp;amp;1 || :'
ExecStart=/usr/bin/vncserver :%i -geometry 1440x900 -alwaysshared -fg
ExecStop=/usr/bin/vncserver -kill :%i

[Install]
WantedBy=multi-user.target
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save and close the file.&lt;br&gt;
Notify systemd that a new unit file is created:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo systemctl daemon-reload&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Enable the service to start on boot:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo systemctl enable vncserver@1.service&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The number 1 after the @ sign defines the display port on which the VNC service will run. This means that the VNC server will listen on port 5901, as we discussed in the previous section.&lt;/p&gt;

&lt;p&gt;Start the VNC service by executing:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo systemctl start vncserver@1.service&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Verify that the service is successfully started with:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo systemctl status vncserver@1.service&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Output:
● vncserver@1.service - Remote desktop service (VNC)
     Loaded: loaded (/etc/systemd/system/vncserver@.service; enabled; vendor preset: enabled)
     Active: active (running) since Fri 2021-03-26 20:00:59 UTC; 3s ago
...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Connecting to VNC server&lt;/strong&gt;&lt;br&gt;
Since VNC is not an encrypted protocol, packet sniffing is possible.&lt;br&gt;
Creating an SSH tunnel and securely forwarding traffic from your local workstation on port 5901 to the server is the suggested course of action. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Set Up SSH Tunneling on Linux and macOS&lt;/strong&gt;&lt;br&gt;
You may quickly construct an SSH tunnel on your computer with the following command if you use Linux, macOS, or any other Unix-based operating system:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ssh -L 5901:127.0.0.1:5901 -N -f -l vagrant 192.168.33.10&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The user password must be entered when requested.&lt;/p&gt;

&lt;p&gt;Make sure you substitute your username and server's IP address for username and server ip address, respectively.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Set Up SSH Tunneling on Windows&lt;/strong&gt; &lt;br&gt;
The &lt;a href="https://www.putty.org/" rel="noopener noreferrer"&gt;PuTTY SSH client&lt;/a&gt; can be used to configure SSH tunneling on Windows systems.&lt;/p&gt;

&lt;p&gt;Launch Putty and type the IP address of your server in the Host name or IP address field. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjq3zsthi24sk769qv0it.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjq3zsthi24sk769qv0it.jpg" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Under the Connection menu, box, expand SSH, and select Tunnels. Enter the VNC server port (5901) in the Source Port field and enter server_ip_address:5901 in the Destination field and click on the Add button as shown in the image below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0c5qedc21vsqvj1c52ai.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0c5qedc21vsqvj1c52ai.jpg" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go back to the Session page to save the settings, so you do not need to enter them each time. To the remote server, select the saved session and click on the Open button.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Connecting using Vncviewer&lt;/strong&gt;&lt;br&gt;
It's time to open your VNC viewer and connect to the VNC Server at localhost:5901 now that the SSH tunnel has been formed.&lt;/p&gt;

&lt;p&gt;Any VNC viewer is acceptable, including Vinagre, TigerVNC, TightVNC, RealVNC, UltraVNC, and VNC Viewer for Google Chrome.&lt;/p&gt;

&lt;p&gt;TigerVNC will be used here. Click the Connect button after opening the viewer and entering localhost:5901.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9a3zoeyfml3len3gopbe.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9a3zoeyfml3len3gopbe.jpg" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enter your user password when prompted, and you should see the default Xfce desktop. It will look something like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5klj7pxsp1irnxj0916w.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5klj7pxsp1irnxj0916w.jpg" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From your local computer, you can begin interacting with the remote XFCE desktop using your keyboard and mouse.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
On Ubuntu 20.04, we demonstrated how to set up and configure a VNC server.&lt;/p&gt;

&lt;p&gt;Use the vncpasswd command to set up the basic settings and the password in order to configure your VNC server to launch a display for more than one user.&lt;br&gt;
Additionally, a new service file with a different port must be created.&lt;/p&gt;

&lt;p&gt;If you have any questions, don't hesitate to leave a remark. &lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ubuntu</category>
      <category>vnc</category>
    </item>
    <item>
      <title>Install ONLYOFFICE Docs on Ubuntu 20.04</title>
      <dc:creator>LiberalLion</dc:creator>
      <pubDate>Sun, 02 Oct 2022 15:36:02 +0000</pubDate>
      <link>https://dev.to/liberallion/install-onlyoffice-docs-on-ubuntu-2004-53jk</link>
      <guid>https://dev.to/liberallion/install-onlyoffice-docs-on-ubuntu-2004-53jk</guid>
      <description>&lt;p&gt;An open-source office suite known as ONLYOFFICE Docs is offered under the AGPLv3 license. It enables working with spreadsheets, presentations, office documents, and fillable forms that you may save as PDF files.&lt;br&gt;
The suite's reliance on DOCX, XLSX, and PPTX as its primary file types ensures good MS Office file compatibility.&lt;/p&gt;

&lt;p&gt;Collaborative document editing is one of ONLYOFFICE Docs' strengths.&lt;br&gt;
The package includes built-in chat, review and track changes, real-time and paragraph-locking co-editing modes, and comments. The Jitsi plugin can also be added if you want to make audio and video calls inside the editors.&lt;/p&gt;

&lt;p&gt;ONLYOFFICE Docs can be incorporated into your solution and integrated with a variety of cloud services, like WordPress, Nextcloud, Strapi, Redmine, Jira, and Moodle. &lt;/p&gt;

&lt;p&gt;This article explains how to install &lt;a href="https://www.onlyoffice.com/office-suite.aspx"&gt;ONLYOFFICE Docs&lt;/a&gt; on Ubuntu 20.04.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hardware Requirements:&lt;/strong&gt;&lt;br&gt;
According to the official documentation, to install ONLYOFFICE Docs, you’ll need at least:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Dual-core 2 GHz CPU&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;2 GB of RAM&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;40 GB of storage&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;4 GB of swap&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Installing ONLYOFFICE&lt;/strong&gt;&lt;br&gt;
Using Docker to install the suite is the simplest option.&lt;br&gt;
This approach is formally advised by the developers.&lt;br&gt;
You can consult the &lt;a href="https://docs.docker.com/engine/install/ubuntu/"&gt;Docker installation instructions&lt;/a&gt; if you don't already have it installed.&lt;/p&gt;

&lt;p&gt;Once you have Docker's most recent version, you can use the following command to install ONLYOFFICE Docs and all of its dependencies:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo docker run -i -t -d -p 80:80 --restart=always onlyoffice/documentserver&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Use the -p option to modify the port if necessary.&lt;br&gt;
Here is an illustration of how to change to port 8080:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo docker run -i -t -d -p 8080:80 --restart=always onlyoffice/documentserver&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;When ready, launch the welcome page by typing &lt;a href="http://localhost"&gt;http://localhost&lt;/a&gt; into your browser's address bar.&lt;br&gt;
There, the editors are included by default along with an integration example. This straightforward DMS is used to test the editors and determine how the integration may be carried out. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Storing Data Outside Containers&lt;/strong&gt;&lt;br&gt;
All the data is stored in the specially-designated directories called data volumes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;logs &lt;code&gt;/var/log/onlyoffice&lt;/code&gt; &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;certificates &lt;code&gt;/var/www/onlyoffice/Data&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;file cache &lt;code&gt;/var/lib/onlyoffice&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;database &lt;code&gt;/var/lib/postgresql&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's a good idea to mount those you need to your hosting machine. Use the -v option in the docker run command:  &lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo docker run -i -t -d -p 80:80 --restart=always \&lt;br&gt;
    -v /app/onlyoffice/DocumentServer/logs:/var/log/onlyoffice  \&lt;br&gt;
    -v /app/onlyoffice/DocumentServer/data:/var/www/onlyoffice/Data  \&lt;br&gt;
    -v /app/onlyoffice/DocumentServer/lib:/var/lib/onlyoffice \&lt;br&gt;
    -v /app/onlyoffice/DocumentServer/db:/var/lib/postgresql  onlyoffice/documentserver&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If you delete the container or something goes wrong during the update, you won’t lose your data. You will also be able to update your certificates without messing with the container.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Switching to HTTPS&lt;/strong&gt;&lt;br&gt;
The quickest approach to convert ONLYOFFICE Docs to HTTPS is to use certbot to automatically obtain Let's Encrypt SSL Certificates. &lt;/p&gt;

&lt;p&gt;Install certbot:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo snap install --classic certbot&lt;/code&gt;&lt;br&gt;
&lt;code&gt;sudo ln -s /snap/bin/certbot /usr/bin/certbot&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Run the ONLYOFFICE Docs Docker container. Specify ports 80 and 443 and set your domain name and email:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo docker run -i -t -d -p 80:80 -p 443:443 \&lt;br&gt;
     -e LETS_ENCRYPT_DOMAIN=yourdomain.com -e LETS_ENCRYPT_MAIL=email@example.com onlyoffice/documentserver&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Once done, ONLYOFFICE Docs will be available under &lt;a href="https://yourdomain.com"&gt;https://yourdomain.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Integrating with Cloud Platforms&lt;/strong&gt;&lt;br&gt;
You can combine the editors with your favourite DMS/sync&amp;amp;share system after ONLYOFFICE Docs is installed.&lt;br&gt;
You will want a connector—an integration app that acts as a link between the editors and the DMS system—to accomplish this.&lt;/p&gt;

&lt;p&gt;On the &lt;a href="https://www.onlyoffice.com/all-connectors.aspx"&gt;official website&lt;/a&gt;, the developers offer integration programs that are ready to use. The &lt;a href="https://wordpress.org/plugins/onlyoffice/"&gt;WordPress&lt;/a&gt; integration is one of the most recent additions. Within the WordPress administrative dashboard, it enables administrators to collaborate and amend office documents: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JDuOPIGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cw9rxiv6voqkx25pleks.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JDuOPIGW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cw9rxiv6voqkx25pleks.jpg" alt="Image description" width="768" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is also possible to add ONLYOFFICE blocks to the post to insert documents in the embedded mode:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JsPRa0up--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/27osj3kmw5nzzi3b694x.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JsPRa0up--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/27osj3kmw5nzzi3b694x.jpg" alt="Image description" width="768" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
You have now shown how to install ONLYOFFICE Docs on a PC running Ubuntu 20.04. You no longer need to switch between different applications to edit and co-author your office documents within the cloud platform you already use.&lt;/p&gt;

&lt;p&gt;The developers also made it possible to install the suite on Ubuntu 18.04 and Ubuntu 20.04 for the 64-bit ARM architecture with the most recent upgrade of the editors (version 7.1). You can review the &lt;a href="https://helpcenter.onlyoffice.com/installation/docs-community-install-ubuntu-arm64.aspx"&gt;official instructions&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Please leave comments below, if you have any questions. Thank you.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ubuntu</category>
      <category>onlyoffice</category>
      <category>installation</category>
    </item>
  </channel>
</rss>
