LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Puppy
User Name
Password
Puppy This forum is for the discussion of Puppy Linux.

Notices


Reply
  Search this Thread
Old 06-05-2015, 08:57 PM   #1
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Rep: Reputation: 169Reputation: 169
Burn iso to usb pen drive


I would like to dump Windows entirely, but have not found a method to burn an iso to a pendrive using Linux.

Puppy has no built in program to burn an iso to a pen drive. ??
They only offer to install Puppy to a pen drive.

Unetbootin and live usb install do not work.

Any recommendations ?
 
Old 06-06-2015, 12:45 AM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
You might like to try isohybrid to convert the ISO to a hybrid ISO capable of booting from a flash memory device.

https://www.turnkeylinux.org/blog/iso2usb

Then it's just a matter of using a low-level copy utility (eg dd) to write to the USB memory stick.

BTW, many distros already provide suitable hybrid ISO's for booting from USB memory stick devices.

http://community.linuxmint.com/tutorial/view/744
https://en.opensuse.org/Live_USB_stick
 
Old 06-06-2015, 01:49 AM   #3
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
Quote:
Originally Posted by ferrari View Post
You might like to try isohybrid to convert the ISO to a hybrid ISO capable of booting from a flash memory device.

https://www.turnkeylinux.org/blog/iso2usb

Then it's just a matter of using a low-level copy utility (eg dd) to write to the USB memory stick.

BTW, many distros already provide suitable hybrid ISO's for booting from USB memory stick devices.

http://community.linuxmint.com/tutorial/view/744
https://en.opensuse.org/Live_USB_stick
Thanks ferrari.

< BTW, many distros already provide suitable hybrid ISO's for booting from USB memory stick devices.

What distros are those ?
 
Old 06-06-2015, 02:55 AM   #4
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Quote:
What distros are those ?
Well, I did list two. Check the links.
 
Old 06-06-2015, 03:03 AM   #5
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
Thanks.

I now have to consider something.

Do I want to install a new O.S. only for one task, when Windows can already do it.

:-)

I still LOVE linux.
 
Old 06-06-2015, 03:48 AM   #6
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
There are lots of options to consider. I still dual boot, but some users make use of virtualization, allowiing the possibility of running a guest OS within the environment of another -good for those who need to have a windows environment available but without needing to dual boot.

https://www.virtualbox.org/
 
Old 06-06-2015, 04:57 AM   #7
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
Dual boot is rather easy.

I have used virtual box.

More bugs than Windows. :-)
 
Old 06-06-2015, 03:03 PM   #8
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,001

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
Can we assume that you only need this usb to be used in order to then install some distro to your hard drive???
 
Old 06-06-2015, 03:37 PM   #9
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
Yes.
 
Old 06-06-2015, 04:00 PM   #10
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
You can just use the dd command & not have to install any other app.
 
Old 06-06-2015, 04:40 PM   #11
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
I found this.

Quote:
dd if=/path/to/your/isofile of=/your/usb/disk try this.
Does this look right ?

Quote:
dd if=/root/Downloads/root/Downloads/debian-8.0.0-amd64-kde-CD-1.iso of=mnt/sdc1
 
Old 06-06-2015, 05:15 PM   #12
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
No, you don't write the file to a mounted memory stick. This is a low-level copy to an unmounted device.


Code:
umount /dev/sdc1
Code:
dd if=/path/to/downloaded.iso of=/dev/sdc bs=4M

Last edited by ferrari; 06-06-2015 at 05:16 PM.
 
Old 06-06-2015, 05:19 PM   #13
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Also notice that you write to the whole device, not a partition on the device. It will actually destroy any existing file structure on the device. (You should end up with a bootable image on the device.)
 
Old 06-06-2015, 05:37 PM   #14
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Also debian actually makes 2 partitions on the device, atleast the 64-bit does. The 2nd would be EFI, so just classify as sdc
 
Old 06-06-2015, 07:28 PM   #15
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,001

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
I'd wonder why standard live creators don't work. ??


"/your/usb/disk try this."

Should be /dev/sdx

x being the correct drive. You need to discover that.

As noted, NOT sdx1. While that may in fact work to copy data, it won't create a bootable usb.

I usually don't use the block size portion but it shouldn't hurt in this. bs=

Last edited by jefro; 06-06-2015 at 07:30 PM.
 
  


Reply



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
Boot iso on pen drive by grub installed on pen drive jena Linux - Hardware 2 11-01-2008 09:09 AM
HowTo use USB pen drive as Loader for iso distros on HDD belbono Linux - General 5 08-22-2008 07:17 AM
boot from any .iso file on a USB pen drive browny_amiga Linux - General 10 04-07-2008 04:44 PM
Trouble Burning ISO image to USB pen drive madh@ter Linux - Hardware 1 08-30-2004 10:29 AM
How do you burn iso files to usb cd-rw drive ??? pleasehelpme Linux - Newbie 0 12-20-2003 02:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Puppy

All times are GMT -5. The time now is 10:49 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