<?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>Linux Mint &#8211; Arun&#8217;s blog</title>
	<atom:link href="https://arunns.net/category/operating-systems/linux-mint/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Fri, 07 Aug 2020 10:33:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>Encrypt secondary disk &#8211; Linux</title>
		<link>https://arunns.net/encrypt-secondary-disk-linux/</link>
					<comments>https://arunns.net/encrypt-secondary-disk-linux/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Fri, 07 Aug 2020 10:33:55 +0000</pubDate>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[File system]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cryptsetup]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[encrypt]]></category>
		<category><![CDATA[linux disk encryption]]></category>
		<guid isPermaLink="false">http://letushare.com/?p=877</guid>

					<description><![CDATA[To set up cryptographic volumes, you need to back up the data first and restore data after the encryption is setup. rsync -Pav &#60;source/> &#60;backup_destination/> Once the backup is completed, install cryptsetupsudo apt install cryptsetup Create the encrypted partitionsudo cryptsetup --verbose --verify-passphrase luksFormat &#60;device_name>Provide passphrase once prompted, you could use fdisk -l to find the [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>To set up cryptographic volumes, you need to back up the data first and restore data after the encryption is setup.<br><br><code>rsync -Pav &lt;source/> &lt;backup_destination/></code><br><br>Once the backup is completed, install cryptsetup<br><code>sudo apt install cryptsetup</code><br><br>Create the encrypted partition<br><code>sudo cryptsetup --verbose --verify-passphrase luksFormat &lt;device_name></code><br>Provide passphrase once prompted, you could use fdisk -l to find the correct device.<br><br>Open the encrypted device<br><code>sudo cryptsetup luksOpen /dev/vdb1 vdb1</code> # the device name was vdb1 in my case<br>This will prompt the passphrase to open the device<br><br>Create the required file system<br><code>mkfs.ext4 /dev/mapper/vdb1</code><br><br>You could remove the ext4 reservation if not required<br><code>tune2fs -m 0 /dev/mapper/vdb1</code><br><br>Create mount directory<br><code>mkdir /mnt/secondary</code><br><br>Mount the device<br><code>mount /dev/mapper/vdb1 /mnt/secondary</code><br><br></p>



<p></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/encrypt-secondary-disk-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Upgrading Linux Mint 13 (maya) to Linux Mint 14 (nadia).</title>
		<link>https://arunns.net/upgrading-linux-mint-14-maya-to-linux-mint-15-nadia/</link>
					<comments>https://arunns.net/upgrading-linux-mint-14-maya-to-linux-mint-15-nadia/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Sat, 05 Jan 2013 12:30:08 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[linux maya]]></category>
		<category><![CDATA[linux mint upgrade]]></category>
		<category><![CDATA[linux nadia]]></category>
		<category><![CDATA[mint 13 upgrade]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=608</guid>

					<description><![CDATA[Take a backup of the current sources.list, preferably make a full backup of the system. Edit the sources.list file, replace the occurrences of maya with nadia and precise with quantal. $ vi /etc/sources.list :%s/maya/nadia/g :%s/precise/quantal/g Resulting file may look like. deb http://packages.linuxmint.com/ nadia main upstream import deb http://archive.ubuntu.com/ubuntu/ quantal main restricted universe multiverse deb http://archive.ubuntu.com/ubuntu/ [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><figure id="attachment_609" aria-describedby="caption-attachment-609" style="width: 300px" class="wp-caption aligncenter"><a href="http://arunnsblog.com/2013/01/05/upgrading-linux-mint-14-maya-to-linux-mint-15-nadia/kde/" rel="attachment wp-att-609"><img fetchpriority="high" decoding="async" class="size-medium wp-image-609" alt="Linux Mint 14" src="http://arunnsblog.com/wp-content/uploads/2013/01/kde-300x219.png" width="300" height="219" /></a><figcaption id="caption-attachment-609" class="wp-caption-text">Linux Mint 14</figcaption></figure></p>
<p>Take a backup of the current sources.list, preferably make a full backup of the system.</p>
<p>Edit the sources.list file,<br />
replace the occurrences of maya with nadia and precise with quantal.</p>
<blockquote>
<pre>$ vi /etc/sources.list</pre>
<pre>:%s/maya/nadia/g
:%s/precise/quantal/g</pre>
</blockquote>
<p>Resulting file may look like.</p>
<blockquote>
<address>deb http://packages.linuxmint.com/ nadia main upstream import<br />
deb http://archive.ubuntu.com/ubuntu/ quantal main restricted universe multiverse<br />
deb http://archive.ubuntu.com/ubuntu/ quantal-updates main restricted universe multiverse<br />
deb http://security.ubuntu.com/ubuntu/ quantal-security main restricted universe multiverse<br />
deb http://archive.canonical.com/ubuntu/ quantal partner<br />
deb http://packages.medibuntu.org/ quantal free non-free</address>
</blockquote>
<p>Update the system</p>
<blockquote>
<pre>$ sudo apt-get update
$ sudo apt-get dist-upgrade</pre>
</blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/upgrading-linux-mint-14-maya-to-linux-mint-15-nadia/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
