<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>application &#8211; Costigator</title>
	<atom:link href="https://costigator.com/tag/application/feed/" rel="self" type="application/rss+xml" />
	<link>https://costigator.com</link>
	<description>Tech Passion</description>
	<lastBuildDate>Fri, 25 Nov 2016 14:34:58 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>How to move applications from one volume to another on Synology</title>
		<link>https://costigator.com/uncategorised/how-to-move-applications-from-one-volume-to-another-on-synology/</link>
					<comments>https://costigator.com/uncategorised/how-to-move-applications-from-one-volume-to-another-on-synology/#comments</comments>
		
		<dc:creator><![CDATA[Luca]]></dc:creator>
		<pubDate>Sat, 05 Nov 2016 14:21:31 +0000</pubDate>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[synology]]></category>
		<category><![CDATA[Volume]]></category>
		<guid isPermaLink="false">http://costigator.com/?p=844</guid>

					<description><![CDATA[Today I want show you a solution to move Synology applications from one volume to another. In my case, I will move it from Volume 1 to Volume 2. Preparation First of all you need to stop all the applications manually (open the application manager in the DSM). After this connect to your synology over SSH (enable it if not done yet). Migration Now we move all the applications from Volume 1 to the new Volume (in my case Volume 2): Then we need to find out which applications have a link to the old volume: The output, depending on [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Today I want show you a solution to move Synology applications from one volume to another. In my case, I will move it from Volume 1 to Volume 2.</p>
<h2>Preparation</h2>
<p>First of all you need to stop all the applications manually (open the application manager in the DSM). After this connect to your synology over SSH (<a href="https://www.synology.com/en-global/knowledgebase/DSM/help/DSM/AdminCenter/system_terminal" target="_blank" rel="nofollow">enable it if not done yet</a>).</p>
<h2>Migration</h2>
<p>Now we move all the applications from Volume 1 to the new Volume (in my case Volume 2):</p>
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">mv /volume1/@appstore/* /volume2/@appstore/</code></pre>
<p>Then we need to find out which applications have a link to the old volume:</p>
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">find /var/packages/ -type l -ls | grep volume1</code></pre>
<p>The output, depending on which applications you have installed, should look like this:</p>
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">4480 0 lrwxrwxrwx 1 root root 34 Nov 4 18:39 /var/packages/DownloadStation/target -&gt; /volume1/@appstore/DownloadStation<br />
18333 0 lrwxrwxrwx 1 root root 28 Nov 4 18:39 /var/packages/VPNCenter/target -&gt; /volume1/@appstore/VPNCenter<br />
23299 0 lrwxrwxrwx 1 root root 28 Nov 4 18:40 /var/packages/DNSServer/target -&gt; /volume1/@appstore/DNSServer<br />
7021 0 lrwxrwxrwx 1 root root 31 Nov 4 18:39 /var/packages/VideoStation/target -&gt; /volume1/@appstore/VideoStation<br />
18325 0 lrwxrwxrwx 1 root root 30 Nov 4 18:40 /var/packages/MediaServer/target -&gt; /volume1/@appstore/MediaServer<br />
23973 0 lrwxrwxrwx 1 root root 31 Nov 4 18:41 /var/packages/CloudStation/target -&gt; /volume1/@appstore/CloudStation<br />
19596 0 lrwxrwxrwx 1 root root 28 Nov 4 18:41 /var/packages/AntiVirus/target -&gt; /volume1/@appstore/AntiVirus<br />
23175 0 lrwxrwxrwx 1 root root 34 Nov 4 18:38 /var/packages/StorageAnalyzer/target -&gt; /volume1/@appstore/StorageAnalyzer</code></pre>
<p>For each application you need to create a new simbolic link replacing the old one:</p>
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">ln -sfn /volume2/@appstore/DownloadStation /var/packages/DownloadStation/target<br />
ln -sfn /volume2/@appstore/VPNCenter /var/packages/VPNCenter/target<br />
ln -sfn /volume2/@appstore/DNSServer /var/packages/DNSServer/target<br />
ln -sfn /volume2/@appstore/VideoStation /var/packages/VideoStation/target<br />
ln -sfn /volume2/@appstore/MediaServer /var/packages/MediaServer/target<br />
ln -sfn /volume2/@appstore/CloudStation /var/packages/CloudStation/target<br />
ln -sfn /volume2/@appstore/AntiVirus /var/packages/AntiVirus/target<br />
ln -sfn /volume2/@appstore/StorageAnalyzer /var/packages/StorageAnalyzer/target</code></pre>
<p>To be sure check that now the symbolic links are pointing to the new volume:</p>
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">find /var/packages/ -type l -ls | grep volume2</code></pre>
The result:<br />
<pre><code class="eckosc eckosc_syntax_theme_dark" data-language="shell">4480 0 lrwxrwxrwx 1 root root 34 Nov 5 13:59 /var/packages/DownloadStation/target -&gt; /volume2/@appstore/DownloadStation<br />
6171 0 lrwxrwxrwx 1 root root 28 Nov 5 14:01 /var/packages/VPNCenter/target -&gt; /volume2/@appstore/VPNCenter<br />
17675 0 lrwxrwxrwx 1 root root 28 Nov 5 14:01 /var/packages/DNSServer/target -&gt; /volume2/@appstore/DNSServer<br />
7021 0 lrwxrwxrwx 1 root root 31 Nov 5 14:01 /var/packages/VideoStation/target -&gt; /volume2/@appstore/VideoStation<br />
17850 0 lrwxrwxrwx 1 root root 30 Nov 5 14:01 /var/packages/MediaServer/target -&gt; /volume2/@appstore/MediaServer<br />
17857 0 lrwxrwxrwx 1 root root 31 Nov 5 14:01 /var/packages/CloudStation/target -&gt; /volume2/@appstore/CloudStation<br />
17986 0 lrwxrwxrwx 1 root root 28 Nov 5 14:01 /var/packages/AntiVirus/target -&gt; /volume2/@appstore/AntiVirus<br />
18102 0 lrwxrwxrwx 1 root root 34 Nov 5 14:01 /var/packages/StorageAnalyzer/target -&gt; /volume2/@appstore/StorageAnalyzer</code></pre>
<h2>Conclusion</h2>
<p>The migration is done and you can start the applications again. They should work as normal <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://costigator.com/uncategorised/how-to-move-applications-from-one-volume-to-another-on-synology/feed/</wfw:commentRss>
			<slash:comments>31</slash:comments>
		
		
			</item>
	</channel>
</rss>
