<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=7812&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=7812</link>
		<description><![CDATA[The most recent posts in (HowTo) install Mkusb for Devuan 6 (or Debian).]]></description>
		<lastBuildDate>Tue, 17 Feb 2026 19:33:02 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62254#p62254</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>I use this interactive script so I don&#039;t have to type as much. Run it from the directory that contains the iso files. Code is mostly lifted from refracta2usb which can make a multi-boot live-usb and is a lot bigger than this.</p><p>You need hwinfo and pv installed for this to work.</p></div></blockquote></div><p>That would be nifty to make a right-click file-manager extension.</p>]]></description>
			<author><![CDATA[dummy@example.com (greenjeans)]]></author>
			<pubDate>Tue, 17 Feb 2026 19:33:02 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62254#p62254</guid>
		</item>
		<item>
			<title><![CDATA[Re: (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62250#p62250</link>
			<description><![CDATA[<p>Yes, you can use cp to write an ISO image to a USB device. </p><p>From an old HowTo and still valid:</p><div class="codebox"><pre><code># cp debian.iso /dev/sdX
# sync</code></pre></div><p>I prefer to use dd instead with the option status=progress to get an idea how long it still may take.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Tue, 17 Feb 2026 17:17:39 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62250#p62250</guid>
		</item>
		<item>
			<title><![CDATA[Re: (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62247#p62247</link>
			<description><![CDATA[<p>@camtaf, cp as in copy?</p><p>that could use with ventoy, which am using still quite to the like (never got to function iventoy that well, however).</p><p>however, the mkusb is quite comfortable,too, and rather &quot;safe&quot; to use would argue.</p><p><del>my terminal skills are limited.</del></p>]]></description>
			<author><![CDATA[dummy@example.com (kapqa)]]></author>
			<pubDate>Tue, 17 Feb 2026 14:21:46 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62247#p62247</guid>
		</item>
		<item>
			<title><![CDATA[Re: (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62238#p62238</link>
			<description><![CDATA[<p>I use this interactive script so I don&#039;t have to type as much. Run it from the directory that contains the iso files. Code is mostly lifted from refracta2usb which can make a multi-boot live-usb and is a lot bigger than this.</p><p>You need hwinfo and pv installed for this to work.</p><div class="codebox"><pre class="vscroll"><code>#!/usr/bin/env bash
#
# iso2usb.sh
#set -x
#
# Run this script from the directory that contains your .iso files.
#

blocksize=&quot;1M&quot;

[[ $(id -u) -eq 0 ]] || { echo -e &quot;\n\t You need to be root!\n&quot; ; exit 1 ; }

usbdevlist=$(/usr/sbin/hwinfo --usb --short | awk &#039;/dev\/sd/ {print $1}&#039;)
usbdevfulllist=$(/usr/sbin/hwinfo --usb --short | awk &#039;/dev\/sd/ {print $0}&#039;)

	echo -e &quot;\n\tLIST OF REMOVABLE DRIVES\n${usbdevfulllist}\n${sdfulllist}\n${cdromfulllist}\n\nSelect a device:&quot;
	select opt in $usbdevlist ; do
		device=$(echo &quot;$opt&quot; | awk &#039;{ print $1 }&#039;)
		break
	done

if [[ -z &quot;$device&quot; ]] ; then
	echo &quot;No device was found.&quot;
	exit 0
fi

echo -e &quot;\n\tSelect the image file.\n&quot;
select file in *.iso *.img ; do
	echo -e &quot;\n$file&quot;
	break
done

size=$(ls -lh $file | awk &#039;{ print $5 }&#039; | sed -e &#039;s/M//&#039;)

if echo &quot;$size&quot; | grep -q G ; then
	size=&quot;$(echo &quot;$size&quot; | sed -e &#039;s/\.//&#039; -e &#039;s/G//&#039;)00&quot;
fi

echo &quot;Size is ${size}M&quot;

if echo &quot;$size&quot; | grep -q K ; then
	echo &quot;Out of range units&quot;
	exit 1
fi

echo -e &quot;\n\tCopy $file to $device?\n\n\tThe command will be:\n\tdd if=$file | pv -s ${size}M | dd of=$device bs=${blocksize}\n\n&quot;
echo -e &quot; Press ENTER to continue or ctrl-c to abort.&quot;
read -p &quot; &quot;

dd if=&quot;$file&quot; | pv -s ${size}M | dd of=&quot;$device&quot; bs=&quot;$blocksize&quot;
sync

exit 0</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Mon, 16 Feb 2026 21:17:52 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62238#p62238</guid>
		</item>
		<item>
			<title><![CDATA[Re: (HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62231#p62231</link>
			<description><![CDATA[<p>I just use <strong>dd</strong>, or sometimes just <strong>cp</strong>. <img src="http://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Camtaf)]]></author>
			<pubDate>Mon, 16 Feb 2026 16:04:17 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62231#p62231</guid>
		</item>
		<item>
			<title><![CDATA[(HowTo) install Mkusb for Devuan 6 (or Debian)]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=62228#p62228</link>
			<description><![CDATA[<p>Hello ,</p><p>found this tool most reliable for creating bootable usb-sticks from .iso files on linux.</p><p>taken from here </p><p><a href="https://help.ubuntu.com/community/mkusb" rel="nofollow">https://help.ubuntu.com/community/mkusb</a></p><p>and here</p><p><a href="https://help.ubuntu.com/community/mkusb#Debian" rel="nofollow">https://help.ubuntu.com/community/mkusb#Debian</a></p><p>steps:</p><p>(install the ppa manually)</p><div class="codebox"><pre><code>sudo -H gedit /etc/apt/sources.list</code></pre></div><p>add the line</p><div class="quotebox"><blockquote><div><p>deb <a href="http://ppa.launchpad.net/mkusb/ppa/ubuntu" rel="nofollow">http://ppa.launchpad.net/mkusb/ppa/ubuntu</a> focal main</p></div></blockquote></div><div class="codebox"><pre><code>sudo apt update</code></pre></div><p>you will receive error most likely with (public key not available etc) and a number like (NO_PUBKEY 3729827454B8C8AC)</p><p>use this number like here</p><div class="codebox"><pre><code>sudo gpg --keyserver keyserver.ubuntu.com --recv-keys 3729827454B8C8AC</code></pre></div><div class="codebox"><pre><code>sudo gpg --export --armor 3729827454B8C8AC | sudo tee /etc/apt/trusted.gpg.d/amdgpu.asc</code></pre></div><p>now </p><div class="quotebox"><blockquote><div><p>sudo apt-get update</p></div></blockquote></div><p> should function, proceed with</p><div class="codebox"><pre><code>sudo apt-get install mkusb         # GUI version</code></pre></div><p><a href="https://help.ubuntu.com/community/mkusb/install-to-debian" rel="nofollow">https://help.ubuntu.com/community/mkusb … -to-debian</a></p>]]></description>
			<author><![CDATA[dummy@example.com (kapqa)]]></author>
			<pubDate>Mon, 16 Feb 2026 12:45:25 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=62228#p62228</guid>
		</item>
	</channel>
</rss>
