LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 05-28-2016, 01:08 PM   #1
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Rep: Reputation: 76
ISO to USB creator.


Hi: In http://www.android-x86.org/documents...howto#Advanced you can see that, to create a bootable USB stick from an ISO image, the Linux Live USB creator is used. However that tool only runs on Windows. Is there not linux software to do the same thing?
 
Old 05-28-2016, 01:14 PM   #2
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Just use dd.

Code:
dd if=/location/to/your.iso of=/dev/sdb bs=1M
If the iso hasn't been prepped for USB usage (slackware 14.1 and future versions are prepped for usb, so you won't need to do this -- although, it doesn't hurt to do it again if it's already been done), you'd need to run isohybrid on the iso prior to using dd.

Code:
isohybrid /location/to/your.iso

Last edited by bassmadrigal; 05-28-2016 at 01:16 PM. Reason: Added isohybrid
 
1 members found this post helpful.
Old 05-28-2016, 02:40 PM   #3
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Thanks a lot. Could you tell me how to check integrity of the files downloaded at that site?

EDIT: I ran isohybrid on the file and it did not touch anything (I did a backup and then compared with cmp)! Perhaps it was already hybridized?

Last edited by stf92; 05-28-2016 at 02:49 PM.
 
Old 05-28-2016, 02:48 PM   #4
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Quote:
Originally Posted by stf92 View Post
Thanks a lot. Could you tell me how to check integrity of the files downloaded at that site?
Follow the link View for any of the .iso or.img. It is displayed on the screen that appears.
 
1 members found this post helpful.
Old 05-28-2016, 02:56 PM   #5
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
make md5 sums first , pass de isohybrid , and compare later.
 
Old 05-28-2016, 03:12 PM   #6
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by Didier Spaier View Post
Follow the link View for any of the .iso or.img. It is displayed on the screen that appears.
I don't see it anywhere!
 
Old 05-28-2016, 03:24 PM   #7
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Most sites provide you a separate file that ends in .md5. This is an md5 hash to verify whether or not the download is corrupted. If the place you downloaded the iso doesn't supply that (or some other hash) anywhere, then there really is no way to verify the integrity of the file. You can see what I mean with the Slackware-14.1 dvd folder on a Slackware mirror below. There is a slackware64-14.1-install-dvd.iso file as well as a slackware64-14.1-install-dvd.iso.md5 file in that folder.

http://mirrors.slackware.com/slackwa...re64-14.1-iso/

What are you trying to write to your USB and where did you get the file?
 
Old 05-28-2016, 04:33 PM   #8
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
The site is
http://www.android-x86.org/download
and the file I wrote to the pendrive is android-x86-4.4-r2.iso, after having run isohybrid on it. By the way, isohybrid left it intact.
 
Old 05-28-2016, 05:16 PM   #9
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
It doesn't look like they provide any way to verify the integrity of the ISOs.

And isohybrid won't output anything if nothing went wrong. It is a quick process.
 
Old 05-28-2016, 05:16 PM   #10
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Quote:
Originally Posted by stf92 View Post
I don't see it anywhere!
Yes. Some View links lead you to a summary (at least those that I tried), but not his one. Anyway just go there...
https://sourceforge.net/projects/and...Release%204.4/
... And click on the letter "i" in a black disk on the line of the file you downloaded.

For android-x86-4.4-r2.iso I see:
Code:
SHA1: 67867c7990c3c0bbd01cadecf18188701b53315f
MD5: 25f43dc4c4ceb007661a30448258262c
But you may prefer check yourself.

Last edited by Didier Spaier; 05-28-2016 at 07:33 PM.
 
1 members found this post helpful.
Old 05-28-2016, 05:58 PM   #11
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Tkanks Didier. I take the opportunity to ask another question. After installation of android, I modified lilo.conf to boot the new OS. I just wrote
Code:
image=/mnt/android-4.4-r2/kernel
  root=/dev/sda7
  label=android
  read-only
because I saw the only filename that looked like a kernel image was that. But after some chunks of messages output, it said "5 seconds to boot". As I saw an initrd.img, I then added it to lilo.conf:
Code:
image=/mnt/android-4.4-r2/kernel
  initrd=/mnt/android-4.4-r2/initrd.img
  root=/dev/sda7
  label=android
  read-only
This time the booting process went on longer, but finally it said: Detecting Android and there it seems to have hanged. Any way to use lilo to boot the Android OS? Of course, lilo when run did not output any errors.

Last edited by stf92; 05-28-2016 at 06:57 PM.
 
Old 05-28-2016, 07:42 PM   #12
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
I think that you will have to use grub (I mean grub 2 shipped in Slackware, no grub legacy).
 
Old 05-29-2016, 09:19 AM   #13
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Yes, but I'm having a lot of trouble trying to dual boot slackware and android.
 
Old 05-29-2016, 09:30 AM   #14
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Check this article: http://www.webupd8.org/2012/03/how-t...nd-ubuntu.html

It should be doable to adapt the procedure to Slackware.
 
  


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
livecd-creator centos 5.4 some errors while creating ISO and on boot of the ISO niteshadw Linux - Distributions 3 02-21-2013 10:33 PM
startup disk creator does not recognise some iso files Cushie Linux - Software 4 06-24-2012 06:53 AM
[SOLVED] How to understand size of iso created by MultiPup cd/dvd Creator? Benny7440 Linux - Newbie 8 06-19-2012 02:58 PM
Burn an ISO to CD: Roxio Creator LE-Dell Edition vikpai General 13 09-06-2007 04:56 AM

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

All times are GMT -5. The time now is 07:32 PM.

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