<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=5772&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / VeraCrypt installation method?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=5772</link>
		<description><![CDATA[The most recent posts in VeraCrypt installation method?.]]></description>
		<lastBuildDate>Thu, 29 Jun 2023 19:57:01 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42706#p42706</link>
			<description><![CDATA[<p>As a long time user: TC and Veracrypt before 1.24 were .tar.bz2 files. Extracted to /tmp, always used the gui versions. From 1.24 onward Veracrypt offers .deb packages. </p><p>Installation was like: </p><div class="codebox"><pre><code># ./veracrypt-1.19-setup-gui-x64</code></pre></div><p>From 1.24 onward use </p><div class="codebox"><pre><code># dpkg -i *.deb</code></pre></div><p>Missing dependencies were easily fixe with </p><div class="codebox"><pre><code># apt --fix-broken install</code></pre></div><p>Using TC/VC as user requires sudo and an entry in the sudoers:</p><div class="codebox"><pre><code>user  ALL=(root) NOPASSWD: /usr/bin/veracrypt</code></pre></div><p>Add the correct username for &quot;user&quot;.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Thu, 29 Jun 2023 19:57:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42706#p42706</guid>
		</item>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42704#p42704</link>
			<description><![CDATA[<div class="quotebox"><cite>mclien wrote:</cite><blockquote><div><p>Hm, I got something wrong, I guess.<br />Tried the ..-gtk3-gui and was asked for admin rights. Does this work only with sudo rights? So do I need to have the user in sudoers?</p></div></blockquote></div><p>Yes, it will do a system-wide installation so it definitely needs the admin password.</p>]]></description>
			<author><![CDATA[dummy@example.com (tomec)]]></author>
			<pubDate>Wed, 28 Jun 2023 23:54:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42704#p42704</guid>
		</item>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42703#p42703</link>
			<description><![CDATA[<p>Hi mclien,</p><p>Have you tried <span class="bbc">zulucrypt-gui</span>? It&#039;s only an <span class="bbc">apt-get</span> away. </p><p>It may also be worth learning how to do this manually with LUKS+LVM. This can come in quite handy if you don&#039;t have a GUI available and applies to encrypted volumes on regular hard drives as well.</p><p>Here&#039;s an example for a USB stick, assuming the drive is on <span class="bbc">/dev/sdb</span>:</p><div class="codebox"><pre class="vscroll"><code># set up encryption
sudo cryptsetup -s 512 -y luksFormat /dev/sdb1

# open encrypted volume
sudo cryptsetup luksOpen /dev/sdb1 data

# create physical volume
pvcreate /dev/mapper/data

# create volume group
vgcreate usb-vg /dev/mapper/data 

# create logical volume
lvcreate -l 100%FREE -n mydata usb-vg

# make nodes
sudo vgscan --mknodes

# activate logical volume
sudo vgchange -ay

# create FS (e.g. XFS)
sudo mkfs.xfs -L USBSTICK /dev/usb-vg/mydata
 
# mount 
sudo mount /dev/usb-vg/mydata /mnt

# umount
sudo umount /mnt

# deactivate logical volume
sudo lvchange -an usb-vg/mydata

# close LUKS partition
sudo cryptsetup close data

# eject drive
sudo eject /dev/sdb</code></pre></div><p>Hope this helps.</p>]]></description>
			<author><![CDATA[dummy@example.com (tylerdurden)]]></author>
			<pubDate>Wed, 28 Jun 2023 21:22:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42703#p42703</guid>
		</item>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42702#p42702</link>
			<description><![CDATA[<p>Hm, I got something wrong, I guess.<br />Tried the ..-gtk3-gui and was asked for admin rights. Does this work only with sudo rights? So do I need to have the user in sudoers?<br />EDIT:<br />Still missing something.<br />I change in the dir</p><div class="codebox"><pre><code>./veracryp-..-setup-gtk3-gui</code></pre></div><p>I get a (gtk) popup, which asks my pw,<br />I get an ok for uncompressing the installer<br />While the 2nd terminal just gives a &quot;Press retun to exit&quot;</p><p>That&#039;s all. No idea where I&#039;m lost here..</p>]]></description>
			<author><![CDATA[dummy@example.com (mclien)]]></author>
			<pubDate>Wed, 28 Jun 2023 19:38:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42702#p42702</guid>
		</item>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42701#p42701</link>
			<description><![CDATA[<p>Thanks, will do it that way then</p>]]></description>
			<author><![CDATA[dummy@example.com (mclien)]]></author>
			<pubDate>Wed, 28 Jun 2023 19:17:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42701#p42701</guid>
		</item>
		<item>
			<title><![CDATA[Re: VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42700#p42700</link>
			<description><![CDATA[<p>All the .deb packages give dependency errors, the only functional one was the generic tar archive: I unpacked it and successfully ran the x64 gtk binary inside.</p>]]></description>
			<author><![CDATA[dummy@example.com (tomec)]]></author>
			<pubDate>Wed, 28 Jun 2023 18:18:39 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42700#p42700</guid>
		</item>
		<item>
			<title><![CDATA[VeraCrypt installation method?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42699#p42699</link>
			<description><![CDATA[<p>as I need a usb stick, which should be encrypted and be usable on Linux and Windows my search came up with VeraCrypt.</p><p>I read some here in the forum, too. But I&#039;m missing what the method for installation should be.<br />I didn&#039;t find it with apt, so according to the VeraCrypt website it leaves me with the tar.gz installation or deb-packages.</p><p>Has anyone experience to share on that?</p>]]></description>
			<author><![CDATA[dummy@example.com (mclien)]]></author>
			<pubDate>Wed, 28 Jun 2023 17:55:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42699#p42699</guid>
		</item>
	</channel>
</rss>
