helpcenter/Web/Controls/Help/Desktop/Documents/Linux/DesktopLinuxInstallUbuntu/DesktopLinuxInstallUbuntu.ascx
2016-12-21 15:38:48 +03:00

69 lines
4.6 KiB
Plaintext

<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
protected override void Init()
{
PageTitle = PageCaption = "How to install Desktop Editors to Ubuntu and derivatives?";
MetaKeyWords = "";
MetaDescription = "How to install Desktop Editors to Ubuntu and derivatives?";
}
</script>
<div class="MainHelpCenter">
<h1 class="subHeaderFeaturesCaption Guides_Video_Captions">How to install Desktop Editors to Ubuntu and derivatives?</h1>
<p>The desktop version of <a href="<%=VirtualPathUtility.ToAbsolute("~/ONLYOFFICE-Editors/index.aspx")%>">online editors</a> does not require constant connection to the internet and can work with offline files on your computer. So if you prefer this, you can either download and install the desktop editors from our website, or add the link to repository with them to your Linux OS and use them and update afterwards just like any other Linux application.</p>
<h2 id="Download">Download the latest version from our website</h2>
<div class="block_of_step">
<div class="screen_text">
<p>The latest version of desktop editors can be always downloaded using the links on our website <a href="http://www.onlyoffice.com/download-desktop.aspx">here</a>. You will need to choose the installation package depending on the Linux version installed on your computer:</p>
<ul>
<li><b>DEB package</b> - in case you have a version of Debian based Linux distributive;</li>
<li><a href="<%=VirtualPathUtility.ToAbsolute("~/desktop/documents/linux/installation-rhel.aspx")%>"><b>RPM package</b></a> - in case you have a version of Red Hat based Linux distributive;</li>
<%-- <li><a href="<%=VirtualPathUtility.ToAbsolute("~/desktop/documents/linux/installation-apt-rpm.aspx")%>"><b>APT-RPM package</b></a> - in case you have a version of APT-RPM based Linux distributive (ALT Linux, PCLinuxOS, Vine Linux);</li>--%>
<li><a href="<%=VirtualPathUtility.ToAbsolute("~/desktop/documents/linux/installation-gui.aspx")%>"><b>GUI package</b></a> - in case you have a version of some other popular Linux distributive (also including ALT Linux, Centos, GosLinux, etc.).</li>
</ul>
<div class="notehelp">Only <b>64-bit</b> versions of Linux are supported.</div>
<p>After you press the selected download button some of the browsers will suggest you select the download folder. Select it and the download process will start.</p>
<p>Once the download is finished, run the downloaded package file and it will be installed to your computer.</p>
</div>
</div>
<h2 id="InstallRepo">Installing Desktop Editors from repository</h2>
<div class="block_of_step">
<div class="screen_text">
<p>A better option to install desktop editors is to add their repository to your Linux OS. To do that:</p>
<ol>
<li>Add GPG key:
<pre><code>sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
</code></pre>
</li>
<li>Add desktop editors repository: using any available text editor (e.g. nano) add the following record to the <em>/etc/apt/sources.list</em> file (you will need to enter root password to edit it and save changes afterwards):
<pre><code>deb http://download.onlyoffice.com/repo/debian squeeze main
</code></pre>
<div class="notehelp">While the APT package is built against Debian Squeeze, it is compatible with a number of Debian derivatives (including Ubuntu) which means you can use the same repository across all these distributions.</div>
</li>
<li>
Update the package manager cache:
<pre><code>sudo apt-get update
</code></pre>
</li>
<li>Now the editors can be easily installed using the following command:
<pre><code>sudo apt-get install onlyoffice-desktopeditors
</code></pre>
</li>
</ol>
</div>
</div>
<h2 id="Running">Running Desktop Editors</h2>
<div class="block_of_step">
<div class="screen_text">
<p>Once the installation is over, you can run the editors using the terminal command:</p>
<pre><code>desktopeditors
</code></pre>
<p>In case you prefer to use graphical user interface, you can always find the editors in your computer <b>Application</b> menu - <b>Office</b> - <b>ONLYOFFICE</b>.</p>
</div>
</div>
</div>