LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
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 05-03-2020, 07:16 AM   #1
MUSTDOS
Member
 
Registered: Mar 2020
Distribution: antix
Posts: 100

Rep: Reputation: Disabled
Debian installer isolinux.bin is missing or corrupt


I tried copying Debian 10 by unmounting then "cp" to usb as this guide at 4.3.1 states https://www.debian.org/releases/jess...-copy-flexible

But I get this error when I try to boot to it; how do I solve it

PS: why does linux copy iso as an extraction when volume/usb is unmounted. And what does "unmounted" in the world of linux mean?
 
Old 05-03-2020, 08:16 AM   #2
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,598

Rep: Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691
If I understand you properly, you are attempting to copy an install to a usb device before even looking up what mount means?
Perhaps some reading is in order. The terms mount and unmount suggest themselves, but also the details of the command "mount" and "umount" on unix (including Linux) style systems. Examining the drives (and mounts) on a running Linux system is also suggested.
 
Old 05-03-2020, 09:19 AM   #3
MUSTDOS
Member
 
Registered: Mar 2020
Distribution: antix
Posts: 100

Original Poster
Rep: Reputation: Disabled
It says that it should be copied while my USB is in an unmounted state

I even saw the contents after mounting and they where in.
 
Old 05-06-2020, 04:59 AM   #4
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by MUSTDOS View Post
I tried copying Debian 10 by unmounting then "cp" to usb as this guide at 4.3.1 states https://www.debian.org/releases/jess...-copy-flexible

But I get this error when I try to boot to it; how do I solve it

PS: why does linux copy iso as an extraction when volume/usb is unmounted. And what does "unmounted" in the world of linux mean?
What are you trying to achieve here? Install Debian? Because then you are going about it the wrong way; what you linked states:
Quote:
If you like more flexibility or just want to know what's going on, you should use the following method to put the files on your stick.
The document you linked is also for jessie, now EOL.

https://www.debian.org/releases/stable/installmanual
 
Old 05-06-2020, 07:21 AM   #5
MUSTDOS
Member
 
Registered: Mar 2020
Distribution: antix
Posts: 100

Original Poster
Rep: Reputation: Disabled
I was trying to have the installer purely on USB

By the way, why does the .iso file extract when the USB is unmounted but copies when it is mounted?
 
Old 05-06-2020, 09:51 AM   #6
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
The download the iso and write it to the USB. You are talking about a thumbdrive, no?
 
Old 05-06-2020, 11:57 AM   #7
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,567
Blog Entries: 19

Rep: Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448Reputation: 4448
Quote:
Originally Posted by MUSTDOS View Post
PS: why does linux copy iso as an extraction when volume/usb is unmounted. And what does "unmounted" in the world of linux mean?
OK. Linux makes a distinction between a disk as a physical device and the filesystem on the disk.Just plugging a memory stick into a usb port does not make its contents available. For that, you have to "mount" it on an empty directory. This directory (the mount point) then becomes a synonym for the root directory of the disk, so that all the subdirectories and files become accessible to you. You must then unmount the drive before removing it to ensure that it doesn't get corrupted.

On the other hand, if you want to create a bootable memory stick, you need to do a raw physical copy of the disk image onto the device itself. So that device must not be mounted at the time.

Last edited by hazel; 05-06-2020 at 11:59 AM.
 
1 members found this post helpful.
Old 05-06-2020, 07:45 PM   #8
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,345

Rep: Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588Reputation: 1588
what is in your syslinux.cfg file? You need to only have in it what the guide says for it to work:
Code:
default vmlinuz initrd=initrd.gz
, otherwise you need to copy vesamenu.c32, libcom32.c32, libutil.c32, and copy isolinux.bin and rename to syslinux.bin to the usb. Even then it may not work if the version of isolinux/syslinux on the iso image is different from the version on the system your doing this from, for different versions of syslinux/isolinux don't play together well.

Last edited by colorpurple21859; 05-06-2020 at 08:13 PM.
 
Old 05-07-2020, 07:07 AM   #9
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,598

Rep: Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691Reputation: 2691
If what you want is to create a USB device with one or more ISO images from which you can boot and install, look into E2B (Easy 2 Boot). It is the best tool I use for that purpose, with it I can carry a couple of USB keys and have a choice of booting and installing dozens of different distributions from which I select at boot time.

Depending upon your resources and experience, you might also look into MultiBootUSB, SARDU, and YUMI.
 
  


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
Linux Live Kit - isolinux.bin.update script - "Add directory to isolinux search paths" user6 Linux - Newbie 1 04-21-2020 09:18 PM
isolinux.bin missing or corrupt tecmate SUSE / openSUSE 6 12-30-2018 10:48 PM
"isolinux.bin is missing or corrupt" on boot JeremyD Linux - Software 4 12-21-2016 11:35 AM
mkisofs: Error - boot image './isolinux/isolinux.bin' has not an allowable size. ogross74 Red Hat 3 05-05-2016 02:22 AM
"isolinux.bin missing or corrupt" for Arch, Parabola and Fedora zwitterion-241920 Linux - General 5 12-30-2011 04:57 AM

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

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