<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Mod%2Fassign%2Ffeedback%2Feditpdf%2Ftestunoconv%2Fsystemd</id>
	<title>Mod/assign/feedback/editpdf/testunoconv/systemd - История изменений</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.mipt.ru/index.php?action=history&amp;feed=atom&amp;title=Mod%2Fassign%2Ffeedback%2Feditpdf%2Ftestunoconv%2Fsystemd"/>
	<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Mod/assign/feedback/editpdf/testunoconv/systemd&amp;action=history"/>
	<updated>2026-05-07T01:10:23Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Mod/assign/feedback/editpdf/testunoconv/systemd&amp;diff=9195&amp;oldid=prev</id>
		<title>Олег Давидович: 1 версия импортирована</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Mod/assign/feedback/editpdf/testunoconv/systemd&amp;diff=9195&amp;oldid=prev"/>
		<updated>2024-10-18T06:55:00Z</updated>

		<summary type="html">&lt;p&gt;1 версия импортирована&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Предыдущая версия&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Версия от 06:55, 18 октября 2024&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Олег Давидович</name></author>
	</entry>
	<entry>
		<id>http://wiki.mipt.ru/index.php?title=Mod/assign/feedback/editpdf/testunoconv/systemd&amp;diff=9194&amp;oldid=prev</id>
		<title>1&gt;Tim@horizoneducationnetwork.org: /* SystemD script example for unoconv on CentOS/RedHat 7.x */clean up, typos fixed: i.e  → i.e.</title>
		<link rel="alternate" type="text/html" href="http://wiki.mipt.ru/index.php?title=Mod/assign/feedback/editpdf/testunoconv/systemd&amp;diff=9194&amp;oldid=prev"/>
		<updated>2024-01-11T16:10:16Z</updated>

		<summary type="html">&lt;p&gt;&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;SystemD script example for unoconv on CentOS/RedHat 7.x: &lt;/span&gt;clean up, typos fixed: i.e  → i.e.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= SystemD script example for unoconv on CentOS/RedHat 7.x =&lt;br /&gt;
[[mod/assign/feedback/editpdf/testunoconv|Back to unoconv installation]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;vim /etc/systemd/system/unoconv.service&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you installed [http://www.tecmint.com/install-libreoffice-on-rhel-centos-fedora-debian-ubuntu-linux-mint/ LibreOffice 5.2] packages that are not part of the CentOS/RedHat distribution,&lt;br /&gt;
You better add the &amp;#039;&amp;#039;Environment=&amp;quot;UNO_PATH=/opt/libreoffice5.2/program&amp;quot; &amp;#039;&amp;#039; to the file (as seen in the example below) as &amp;#039;&amp;#039;unoconv&amp;#039;&amp;#039; might need the python libraries that came with the LibreOffice 5.2 packages.&lt;br /&gt;
Otherwise, discard the &amp;#039;Environment&amp;#039; line from the file.&lt;br /&gt;
&lt;br /&gt;
Also, if you installed &amp;#039;unoconv&amp;#039; from [https://github.com/dagwieers/unoconv sources] (like in the example below), make sure you use the proper path (i.e. &amp;quot;/usr/local/bin/unoconv&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Unit]&lt;br /&gt;
Description=Unoconv listener for document conversions&lt;br /&gt;
Documentation=https://github.com/dagwieers/unoconv&lt;br /&gt;
After=network.target remote-fs.target nss-lookup.target&lt;br /&gt;
&lt;br /&gt;
[Service]&lt;br /&gt;
Type=simple&lt;br /&gt;
Environment=&amp;quot;UNO_PATH=/opt/libreoffice5.2/program&amp;quot;&lt;br /&gt;
ExecStart=/usr/local/bin/unoconv --listener&lt;br /&gt;
&lt;br /&gt;
[Install]&lt;br /&gt;
WantedBy=multi-user.target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After you saved the above file, make it stick between system boots:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#systemctl enable unoconv.service&lt;br /&gt;
#systemctl start unoconv.service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[mod/assign/feedback/editpdf/testunoconv|Back to unoconv installation]]&lt;br /&gt;
&lt;br /&gt;
[[de:SystemD Service Skript für CentOS/RedHat 7.x]]&lt;/div&gt;</summary>
		<author><name>1&gt;Tim@horizoneducationnetwork.org</name></author>
	</entry>
</feed>