LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-04-2016, 02:30 AM   #1
MAB85
LQ Newbie
 
Registered: Dec 2016
Posts: 1

Rep: Reputation: Disabled
Creating Bootable Devices


I usually have to go to a regular Window's computer to get a boot disk made. I would really like to know the easiest way to do it on here, to get it on dvd or usb flash drive making it boot any system and also getting systems back to windows if need be. LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here.LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here. Im proud to be a part of this and anything I can provide help with, just let me know! All help I receive is greatly appreciated.
 
Old 12-04-2016, 03:33 AM   #2
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hello and welcome to the forum

Please note that this particular forum is for introductions only. I have requested a moderator move this thread to an appropriate forum.

Regards...
 
1 members found this post helpful.
Old 12-04-2016, 03:46 AM   #3
Jjanel
Member
 
Registered: Jun 2016
Distribution: any&all, in VBox; Ol'UnixCLI; NO GUI resources
Posts: 999
Blog Entries: 12

Rep: Reputation: 363Reputation: 363Reputation: 363Reputation: 363
Hello. What web-searches have you tried? Here's a suggestion:
http://www.catb.org/~esr/faqs/smart-...ns.html#before
Please also *edit* your Post #1 (to remove extraneous Forum heading copy+paste twice).
Best wishes.
 
Old 12-04-2016, 06:20 AM   #4
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan with some Tiny Core, Fatdog, Haiku, & BSD thrown in.
Posts: 5,015

Rep: Reputation: Disabled
Sounds to me like the OP is looking for a live distro, but his/her post is not clear enough to be of any help.

Last edited by fatmac; 12-04-2016 at 06:21 AM.
 
Old 12-05-2016, 06:23 PM   #5
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,701

Rep: Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583Reputation: 3583
Hello and welcome back to LQ.

Agreed that we need a bit more info.
 
Old 12-05-2016, 09:12 PM   #6
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
I usually have to go to a regular Window's computer to get a boot disk made. I would really like to know the easiest way to do it on here, to get it on dvd or usb flash drive making it boot any system and also getting systems back to windows if need be.
The easiest way is to burn the Linux distribution of your choice onto a CD/DVD or a flash drive by using Unetbootin.

To make it boot 'any system' simply go into the pc's BIO's and set the machine to either CD/DVD (the CDROM drive) or set to USB in the boot priority.

To boot back into Windows shut down the pc unplug the flash drive and upon your next boot your machine will boot back into Windows.

Do you have a particular distribution in mind?
 
Old 12-06-2016, 12:47 PM   #7
end
Member
 
Registered: Aug 2016
Posts: 261

Rep: Reputation: Disabled
re

[for write any bootable system on usb you can use this commands work well for me

to see usb dir

Code:
fdisk -l
Format usb

Code:
mkdosfs -F 32 -I /dev/sdb
ifyou whant format with ext.4

Code:
mkfs.ext.4 /dev/sdb
can be /dev/sdc depends what fdisk -l output is

to write on usb use dd command

Code:
dd bs=16G if=/path/to/iso of=/dev/sdb status=progress && sync
bs-16G amount of space on usb drive

this metod works on any distro

Last edited by end; 12-06-2016 at 12:49 PM.
 
1 members found this post helpful.
Old 12-07-2016, 07:13 AM   #8
future1234
LQ Newbie
 
Registered: Dec 2016
Posts: 2

Rep: Reputation: 0
Bootable USB

this would be my solution

https://etcher.io/
 
Old 12-07-2016, 07:15 AM   #9
future1234
LQ Newbie
 
Registered: Dec 2016
Posts: 2

Rep: Reputation: 0
A dream come true for photographers

CAPTURE EVERY PRECIOUS MOMENTS WITH;

http://www.kodak.com/consumer/produc...a/default.htm#


KODAK EKTRA

Last edited by future1234; 12-07-2016 at 07:16 AM.
 
Old 12-07-2016, 07:21 AM   #10
schneidz
LQ Guru
 
Registered: May 2005
Location: boston, usa
Distribution: fedora-35
Posts: 5,309

Rep: Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918Reputation: 918
Quote:
Originally Posted by future1234 View Post
CAPTURE EVERY PRECIOUS MOMENTS WITH;

http://www.kodak.com/consumer/produc...a/default.htm#


KODAK EKTRA
spam - reported
 
Old 12-07-2016, 10:00 AM   #11
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,256

Rep: Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207Reputation: 2207
Quote:
Originally Posted by MAB85 View Post
I usually have to go to a regular Window's computer to get a boot disk made. I would really like to know the easiest way to do it on here, to get it on dvd or usb flash drive making it boot any system and also getting systems back to windows if need be. LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here.LinuxQuestions.org Member Intro New to LinuxQuestions.org? Been a long time member but never made a post? Introduce yourself here. Im proud to be a part of this and anything I can provide help with, just let me know! All help I receive is greatly appreciated.
Windows lets you create a DOS boot disk, to boot into DOS. Linux does not use DOS like that. SO are you looking for a Linux or app that Linux can run to create a Windows DOS boot disk?
 
Old 12-07-2016, 09:03 PM   #12
mbvpixies78
Member
 
Registered: Nov 2007
Location: Vietnam
Distribution: CentOS
Posts: 181
Blog Entries: 3

Rep: Reputation: 16
I also recommend

Unetbootin (my favorite)
https://unetbootin.github.io/

or

LinuxLive
http://www.linuxliveusb.com/


Regards.
 
1 members found this post helpful.
Old 12-07-2016, 09:06 PM   #13
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by mbvpixies78 View Post
I also recommend

Unetbootin (my favorite)
https://unetbootin.github.io/

or

LinuxLive
http://www.linuxliveusb.com/


Regards.
Unetbootin has always worked successfully for me and like you it's my fav too.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] No bootable devices madmoz Linux - Newbie 4 08-08-2012 08:02 PM
Difficult install (no bootable devices outside of hd) haibane Linux - Kernel 1 02-12-2012 08:40 PM
Creating bootable CDROM from a bootable USB drive seaquesttr Linux - Desktop 2 08-01-2010 11:57 AM
creating a bootable floppy from a bootable machine on a NON Linux machine navneethr Linux - General 6 06-14-2010 11:38 PM
Installing SuSE on a computer without and bootable devices (but C:/) gusee88 Linux - Newbie 12 11-08-2006 11:48 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:09 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration