<?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>Volume &#8211; Costigator</title>
	<atom:link href="https://costigator.com/tag/volume/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>
		<item>
		<title>How to adjust the volume for voice navigation in Maps with CarPlay</title>
		<link>https://costigator.com/mobility/how-to-adjust-the-volume-for-voice-navigation-in-maps-with-carplay/</link>
					<comments>https://costigator.com/mobility/how-to-adjust-the-volume-for-voice-navigation-in-maps-with-carplay/#respond</comments>
		
		<dc:creator><![CDATA[Luca]]></dc:creator>
		<pubDate>Mon, 25 Jan 2016 19:32:26 +0000</pubDate>
				<category><![CDATA[Mobility]]></category>
		<category><![CDATA[AppRadio]]></category>
		<category><![CDATA[CarPlay]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Loud]]></category>
		<category><![CDATA[Volume]]></category>
		<guid isPermaLink="false">http://costigator.com/?p=771</guid>

					<description><![CDATA[After installing my new AppRadio in my car I testet the Maps functionality with voice navigation. The problem was that the voice navigation was extremely loud and I couldn&#8217;t&#8217; change the volume on the AppRadio neither on the iPhone with the Volume buttons. If you have the same problem here is the solution. Solution The solution is to navigate on the iPhone to the settings and then Maps. I changed then the voice volume from &#8220;Normal volume&#8221; to &#8220;Low volume&#8221;. Some specifications I&#8217;m using the AppRadio Pioneer SPH-DA120 in my VW Golf V GTI. As phone I use the iPhone 6.]]></description>
										<content:encoded><![CDATA[<p>After installing my new AppRadio in my car I testet the Maps functionality with voice navigation. The problem was that the voice navigation was extremely loud and I couldn&#8217;t&#8217; change the volume on the AppRadio neither on the iPhone with the Volume buttons. If you have the same problem here is the solution.</p>
<h2>Solution</h2>
<p>The solution is to navigate on the iPhone to the settings and then Maps. I changed then the voice volume from &#8220;Normal volume&#8221; to &#8220;Low volume&#8221;.</p>
<div class="eckogallery"><a href="http://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2.jpg" rel="attachment wp-att-774"><img fetchpriority="high" decoding="async" class="alignnone size-medium wp-image-774" src="http://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-169x300.jpg" alt="CarPlay_Maps_Volume_2" width="169" height="300" srcset="https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-169x300.jpg 169w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-200x356.jpg 200w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-576x1024.jpg 576w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-680x1209.jpg 680w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-400x711.jpg 400w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2-50x89.jpg 50w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_2.jpg 750w" sizes="(max-width: 169px) 100vw, 169px" /></a><a href="http://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1.jpg" rel="attachment wp-att-773"><img decoding="async" class="alignnone size-medium wp-image-773" src="http://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-169x300.jpg" alt="CarPlay_Maps_Volume_1" width="169" height="300" srcset="https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-169x300.jpg 169w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-200x356.jpg 200w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-576x1024.jpg 576w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-680x1209.jpg 680w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-400x711.jpg 400w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1-50x89.jpg 50w, https://costigator.com/wp-content/uploads/2016/01/CarPlay_Maps_Volume_1.jpg 750w" sizes="(max-width: 169px) 100vw, 169px" /></a> </div>
<h2>Some specifications</h2>
<p>I&#8217;m using the AppRadio Pioneer SPH-DA120 in my VW Golf V GTI. As phone I use the iPhone 6.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://costigator.com/mobility/how-to-adjust-the-volume-for-voice-navigation-in-maps-with-carplay/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
