I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu >partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will be >appreciated.
TIA. Bill S.
On 15/09/2025 21:33, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will be appreciated.
TIA. Bill S.
You need Rufus. It's a Windows app that takes an ISO and uses it to create a bootable USB stick.
I want to create a bootable Ubuntu installer thumb drive using Win11.
On Mon, 15 Sep 2025 13:33:17 -0700, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
You could install WSL2 and take advantage of its Linux functionality, like the “dd” command.
On Mon, 9/15/2025 7:49 PM, Lawrence D’Oliveiro wrote:
Yikes.
On Mon, 15 Sep 2025 13:33:17 -0700, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
You could install WSL2 and take advantage of its Linux functionality,
like the “dd” command.
You can do better than that.
That gives you "dd.exe", to be run in a Windows Administrator terminal session. The tool was previously "rawrite" and the name changed to "dd"
at some point. It is an acquired taste (does not detect the end of the
source disk properly for one kind of media, not a big deal).
The WSL2 does not have a working /dev layer. It's not designed to hack
around or subvert Windows itself. The people who worked on WSL,
evidence points to them being pretty skilled at what they did.
The Linux "dd" might work on those, but I don't think there is much
profit to be had, by doing so.
And if we look at mounts...
$ ls /mnt
c d e f g h i k s wsl wslg
it's a pretty fuzzy collection of stuff you could just as easily attack
from the Windows side.
Using the Linux "dd" from there, is not a big help.
However, if you use Windows VirtualBox and had the PUEL hardware
passthru installed (as a home user, not for commercial use), then you
could connect a USB stick to the PC, and via passthru, a Linux LiveDVD
in VirtualBox could be used to write to the USB stick. Similarly, you
could run Linux VirtualBox, and using the passthru, do the same thing.
The passthru does not work for everything (you can't boot from a USB
stick via passthru), but for a limited set of tasks, you can succeed via passthru. Maybe even a USB DVD writer could be run that way. A regular
DVD writer over a SATA cable, does not normally work,
but you might succeed over USB.
On Mon, 15 Sep 2025 22:34:30 -0400, Paul wrote:
On Mon, 9/15/2025 7:49 PM, Lawrence D’Oliveiro wrote:
Yikes.
On Mon, 15 Sep 2025 13:33:17 -0700, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
You could install WSL2 and take advantage of its Linux functionality,
like the “dd” command.
You can do better than that.
You can on a native Linux system, but we’re trying to get to that.
That gives you "dd.exe", to be run in a Windows Administrator terminal
session. The tool was previously "rawrite" and the name changed to "dd"
at some point. It is an acquired taste (does not detect the end of the
source disk properly for one kind of media, not a big deal).
A load of crap, in other words.
The WSL2 does not have a working /dev layer. It's not designed to hack
around or subvert Windows itself. The people who worked on WSL,
evidence points to them being pretty skilled at what they did.
But maybe not skilled enough. Does “lsblk” work? Does the content of /proc/self/mountinfo show anything sensible?
The Linux "dd" might work on those, but I don't think there is much
profit to be had, by doing so.
So much for being “skilled”, eh?
And if we look at mounts...
$ ls /mnt
c d e f g h i k s wsl wslg
it's a pretty fuzzy collection of stuff you could just as easily attack
from the Windows side.
That’s not how you normally query what’s mounted. Try the “df” command.
Using the Linux "dd" from there, is not a big help.
You might be right.
However, if you use Windows VirtualBox and had the PUEL hardware
passthru installed (as a home user, not for commercial use), then you
could connect a USB stick to the PC, and via passthru, a Linux LiveDVD
in VirtualBox could be used to write to the USB stick. Similarly, you
could run Linux VirtualBox, and using the passthru, do the same thing.
The passthru does not work for everything (you can't boot from a USB
stick via passthru), but for a limited set of tasks, you can succeed via
passthru. Maybe even a USB DVD writer could be run that way. A regular
DVD writer over a SATA cable, does not normally work,
but you might succeed over USB.
Windows just doesn’t want to make it easy, does it?
.\dd --help # Coreutils...Usage: .\dd [OPERAND]...
.\dd if=/dev/sdc of=- bs=1048576 | wc -c.\dd: opening `/dev/sdc': No such file or directory
And for the OP, none of this is particularly convenient.
I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will be appreciated.
TIA. Bill S.
On Tue, 16 Sep 2025 05:42:52 -0400, Paul wrote:
And for the OP, none of this is particularly convenient.
So you’re saying WSL2 doesn’t give you a genuine enough Linux kernel for my idea to work?
bash$ blkid
Let's run blkid.
bash$ blkid
$
Well, don't give up just yet. Who needs error messages really.
$ sudo blkid
[sudo] password for paul:
[blkid now produces reasonable-looking output]
C:\ 124109820 78975248 45134572 64% /mnt/c
D:\ 20968444 59656 20908788 1% /mnt/d <=== Added a drive letter "fixed disk", just not a USB stick
H:\ 135264344 60774972 74489372 45% /mnt/h
S:\ 715167740 630943408 84224332 89% /mnt/s
There is more to WSL than some bland handwaving. I don't know
if the details of "what is missing" is documented somewhere. It
could be. But it is not just a Linux kernel and HyperV.
And WSL is not a place for writing USB sticks. Not even
remotely close to suitable for the purpose. /dev layer is not
proper.
On 15/09/2025 21:33, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu
partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will
be appreciated.
TIA. Bill S.
You need Rufus. It's a Windows app that takes an ISO and uses it to
create a
bootable USB stick.
I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will be appreciated.
TIA. Bill S.
On 9/15/2025 2:06 PM, Jason H wrote:
On 15/09/2025 21:33, bilsch01 wrote:
I want to create a bootable Ubuntu installer thumb drive using Win11.
The installer needs to offer an option to install the bootable Ubuntu partition alongside of an existing bootable Win11 partition. I want
to create this bootable installer using Windows 11.
Any explanatory info you provide about creating the thumb drive will be appreciated.
TIA. Bill S.
You need Rufus. It's a Windows app that takes an ISO and uses it to create a >> bootable USB stick.
I downloaded a Ubuntu 24.04.3 ISO file to my Win11 PC. Next I downloaded and installed Rufus on my PC, which has the copy of the Ubuntu ISO file. My intention is to run Rufus to create a bootable installer USB thumb drive for installing Ubuntu along side Win11 ON OTHER PCs. While installing Rufus on my PC it seemed to gather info about my PC as though RUFUS thinks I'm getting ready to tell it to install Ubuntu on this PC. That would be a mistaken use for any information it just gathered. I just want to make a bootable thumb drive for installing Ubuntu on other Win11 PCs. Please tell me if I am going down the correct road for that?
Thanks for your help.
Bill S.
my PC will be the target for installing Ubuntu. That makes me wonder if Rufus thinks I'm getting ready to tell it to install Ubuntu on this PC- because that's NOT what I'm going to do. I just want to make a bootable thumb drive for installing Ubuntu on other Win11 PCs. Please tell me: Am I going down the correct road for that?
Thanks for your help.
Bill S.
Sysop: | DaiTengu |
---|---|
Location: | Appleton, WI |
Users: | 1,070 |
Nodes: | 10 (0 / 10) |
Uptime: | 188:14:22 |
Calls: | 13,735 |
Files: | 186,967 |
D/L today: |
273 files (64,509K bytes) |
Messages: | 2,419,552 |