LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-02-2019, 06:51 AM   #16
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,288

Original Poster
Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322

Well xorriso is in, looks excellent, but has no gui. xfburn is in (with libburn & libisofs) and has the gui. I'll play with that now.

Growisofs, cdrecord & cdrao, are also there which is overkill. As soon as I know I won't need it, cdrecord, and k3b & friends can go. Cdrecord because I dislike it's author and he appears to dislike his users, certainly his linux ones; k3b because it's a pleasure to uninstall anything kde or gnome related
 
Old 09-02-2019, 08:12 AM   #17
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
Great choice, I use it too..
 
Old 09-02-2019, 12:14 PM   #18
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
I don't mind K3B but then I like KDE. What I don't like is that Unetbootin is a raggedy app yet one of the very few "burners" that can create a bootable USB Thumbdrive from an iso on Linux. I truly do not get it why this isn't already de rigeur with optical drives rapidly approaching obsolescence. Actually it's beginning to look like optical is "Dead Man Walking". Why hasn't K3B, or anyone, made this trivial?
 
2 members found this post helpful.
Old 09-02-2019, 12:22 PM   #19
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by enorbet View Post
I don't mind K3B but then I like KDE. What I don't like is that Unetbootin is a raggedy app yet one of the very few "burners" that can create a bootable USB Thumbdrive from an iso on Linux. I truly do not get it why this isn't already de rigeur with optical drives rapidly approaching obsolescence. Actually it's beginning to look like optical is "Dead Man Walking". Why hasn't K3B, or anyone, made this trivial?
I usually just use dd for that.
 
Old 09-02-2019, 12:43 PM   #20
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Re: Burning bootable iso to bootable USB

Quote:
Originally Posted by montagdude View Post
I usually just use dd for that.
I'm aware of the power and usefulness of "dd" but I also recognize that it is quite rare, or has been, to need to use it. As a result I can forget some options which slows me down by having to go back and load the man page to make sure I'm doing it right. I find this particularly troublesome while things are in transition as so many fundamentals presently are, a few specific to image copying is GPT vs/ MBR and UEFI vs/ BIOS. For these and a handful of other reasons I prefer a GUI where I can see all options as checkboxes or menu dialogues. It just seems faster given my intermittent use and level of caution with programs as powerful as "dd".
 
Old 09-03-2019, 04:25 AM   #21
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,288

Original Poster
Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
dd does it this way, presuming your drive is /dev/sdx
Code:
dd if=disk.img of=/dev/sdx
The importand thing is not to put it on sdx1, as the BIOS is booting the first sector and reading through. If you try on sdx1, the boot pukes on the partition table.

Slackware does a nice arrangement where you can use whatever space remains. I made a live cd with three partitions giving /,swap, & home (I think) but it also booted from the BIOS. I think the download is still updated. My usb key was only 8g, but it had all the basics.
 
Old 09-03-2019, 12:11 PM   #22
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
cp file.iso /dev/sdx
 
Old 09-03-2019, 04:42 PM   #23
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
My very latest computer build has no optical drive, surprising how little I miss it...
 
Old 09-03-2019, 04:45 PM   #24
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Not only have I had issues with some services (GParted, for one) creating GPT when I didn't tell it to, I also rather often alter isos and while I am familiar with "dd" I know of no way "dd" will inform me if the iso will actually still create a bootable system. Iso Master does a nice job of checking boot-ability but it doesn't burn images to anything. I think an app that reports on the boot sector, checks for duplication, follows symlinks, etc. as well as reliably burns to USB would be very sweet. I love CLI... I boot to CLI not GUI, but I also know that some jobs are better handled by GUI and deep actions involving partitioning is one of those, at least for me. I was absolutely gleeful when Partition Magic took over from Fdisk in DOS.
 
Old 09-03-2019, 06:00 PM   #25
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,223

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Don't forget to run "sync" after writing the images with "dd".
 
1 members found this post helpful.
  


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
Will k3b convert mp3's to wavs for burning audio cds? And prob with k3b 0.11 Alvis Linux - Software 5 08-02-2007 07:38 AM
FC3 - K3b not recognizing mp3s w/ k3b-mp3 installed! Forezt Linux - Software 2 07-25-2006 05:43 PM
2.6.3 + KDE 3.2 + K3b 0.11.4 = PROBLEMS (K3b) svarreby Slackware 2 02-08-2005 09:16 PM
problems installing k3b-mp3 for FC3 and k3b-0.11.18 Rockgod2099 Linux - Software 8 01-09-2005 06:38 PM
Replacement for NERO use k3b? Alinuxnoob Linux - Software 2 09-12-2004 03:03 PM

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

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