You are not logged in.

#1 2015-11-20 17:19:26

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Installation problem - Isolinux.bin missing or corrupted [SOLVED]

[Mod Edit - split from a thread which was [SOLVED] ]

Hello. I used the dd comand to burn the iso into the flashdrive. When I tried to boot, I got the massage that

isobin.linux (or something like that) is missing or corrupted.

The closest I got from installing that was using Win32 to burn the image, but it looked for a CD-ROM, could not find a CD-ROM (since I am using a flashdrive) and so the installation could not go on.

My biggest dream for the last 2 weeks was being able to install Bunsen Labs. sad

Last edited by sm55br (2015-11-22 14:16:02)


Valar Dohaeris.
All men must serve.

Offline

#2 2015-11-20 18:54:52

dolly
Miss Mixunderstand
From: /lab701
Registered: 2015-10-03
Posts: 490

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Something went probably wrong with your download. Download it again and retry with the dd command. Remember to check the sha256sum. Instructions are here;

https://www.bunsenlabs.org/installation.html

Last edited by dolly (2015-11-20 18:55:49)

Offline

#3 2015-11-20 20:10:00

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Probably best to use plain ol' cp(1)

First, verify the device letter assigned to your USB stick by plugging it in and running these commands:

lsblk
dmesg|tail

Then use these commands:

sudo -i # enter user password when prompted
cp bunsen.iso /dev/sdX # replace "X" with the correct drive letter -- *do not* use a number here
sync # flush the buffers to the USB stick
exit

Wait until the command prompt is returned after the last command before removing the USB stick.

Offline

#4 2015-11-20 20:44:06

nobody0
Disabled account
Registered: 2015-09-29
Posts: 664

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Have you installed it, sm55br?

Offline

#5 2015-11-21 21:47:13

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

ostrolek wrote:

Have you installed it, sm55br?

I am now downloading it again; I don't know how to checkSUM, please tell me the commands. I already have downloaded the .txt file and have the .iso file on my "home" directory.


Valar Dohaeris.
All men must serve.

Offline

#6 2015-11-21 21:56:33

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

sm55br wrote:

I don't know how to checkSUM, please tell me the commands

Place the file containing the checksums in the same directory as your ISO file downloads, and then run in a terminal:

sha256sum --check *.sha256sum.txt

https://www.bunsenlabs.org/installation.html

Offline

#7 2015-11-21 22:24:11

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Head_on_a_Stick wrote:

Place the file containing the checksums in the same directory as your ISO file downloads, and then run in a terminal:

sha256sum --check *.sha256sum.txt

https://www.bunsenlabs.org/installation.html

The name of the sha256sum file is "bl-Hydrogen-rc1-i386.iso.sha256sum.txt". And it is on my "home" directory. So I type just like you said on the terminal, like that:

sha256sum --check bl-Hydrogen-rc1-i386.iso.sha256sum.txt

It says:

root@Thor:~# sha256sum --check bl-Hydrogen-rc1-i386.iso.sha256sum.txt
sha256sum: bl-Hydrogen-rc1-i386.iso.sha256sum.txt: No such file or directory

But it is there, together with the .iso file.


Valar Dohaeris.
All men must serve.

Offline

#8 2015-11-21 22:34:01

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

It works for me:

empty@Arch ~/bl % ls                                                       
bl-Hydrogen-rc1-amd64.iso  bl-Hydrogen-rc1-amd64.iso.sha256sum.txt
empty@Arch ~/bl % sha256sum --check bl-Hydrogen-rc1-amd64.iso.sha256sum.txt
bl-Hydrogen-rc1-amd64.iso: OK

EDIT: You ran your command as root -- was the working directory /root rather than your normal user's $HOME?

Check for the .txt file by using `ls` before `sha256sum`

Last edited by Head_on_a_Stick (2015-11-21 22:35:47)

Offline

#9 2015-11-21 22:42:39

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Well, this is not working, I can not check this file. Do I have to change it's directory or what?


Valar Dohaeris.
All men must serve.

Offline

#10 2015-11-21 22:45:25

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Post the output of these commands:

ls
find ~/ -name *.txt
sudo find / -name *.txt

Offline

#11 2015-11-21 22:54:15

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Head_on_a_Stick wrote:

Post the output of these commands:

ls
find ~/ -name *.txt
sudo find / -name *.txt

(...) and the last line is:

/home/sm55br/documents/bl-Hydrogen-rc1-i386.iso.sha256sum.txt

means there is the file, right?


Valar Dohaeris.
All men must serve.

Offline

#12 2015-11-21 22:55:20

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

sm55br wrote:

(...) and the last line is:

/home/sm55br/documents/bl-Hydrogen-rc1-i386.iso.sha256sum.txt

means there is the file, right?

Yes but are you running the command from the right place?

Use:

pwd

to check which directory you are in.

To be sure, you can use:

cd /home/sm55br/documents
sha256sum --check bl-Hydrogen-rc1-i386.iso.sha256sum.txt

EDIT: This will only work if the ISO image is in /home/sm55br/documents as well.

Last edited by Head_on_a_Stick (2015-11-21 22:58:30)

Offline

#13 2015-11-21 23:03:36

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Ok, it is okay, it said "OK". So now I will burn the file on the flashdrive using the terminal, right?

Help me with commands, now you know the place and the name of my files big_smile

Last edited by sm55br (2015-11-21 23:04:42)


Valar Dohaeris.
All men must serve.

Offline

#14 2015-11-21 23:08:19

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

This is what I have when I write

lsblk
dmesg|tail

NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 111.8G  0 disk
|-sda1   8:1    0  22.4G  0 part /
|-sda2   8:2    0   1.9G  0 part [SWAP]
`-sda3   8:3    0  87.6G  0 part /home
sr0     11:0    1  1024M  0 rom 
sdb      8:16   1   7.5G  0 disk
`-sdb1   8:17   1   7.5G  0 part /media/18D8-2362
root@Thor:~# dmesg|tail
[   25.992035] cfg80211:     (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm)
[   25.992039] cfg80211:     (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 1700 mBm)
[   25.992042] cfg80211:     (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2300 mBm)
[   25.992045] cfg80211:     (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm)
[   25.992049] cfg80211:     (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[   37.445556] fuse init (API version 7.17)
[   44.922374] JFS: nTxBlock = 8007, nTxLock = 64061
[   45.069390] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
[   45.069686] SGI XFS Quota Management subsystem
[  190.587220] FAT-fs (sdb1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!


Valar Dohaeris.
All men must serve.

Offline

#15 2015-11-21 23:59:07

Head_on_a_Stick
Member
From: London
Registered: 2015-09-29
Posts: 9,093
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Your USB stick is assigned to /dev/sdb so you can use:

sudo -i
cp /home/sm55br/documents/bl-Hydrogen-rc1-i386.iso /dev/sdb
sync
exit

Offline

#16 2015-11-22 00:08:21

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

Okay, dudes, booting the old machine and I will tell you in a few minutes how did it go.


Valar Dohaeris.
All men must serve.

Offline

#17 2015-11-22 01:01:46

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

I will say all your names in Valhalla

Thanks
It is working, now I have to configure keyboard
install wine
pipelight
etc

THANKS solved.


Valar Dohaeris.
All men must serve.

Offline

#18 2015-11-22 02:01:16

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

sm55br wrote:

...
install wine
pipelight
etc

Do you REALLY need pipelight? You are a masochist!

PS If you edit the title of your first post and add [SOLVED], it might help others looking for an answer wink


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#19 2015-11-22 14:15:19

sm55br
Member
From: Brazil
Registered: 2015-11-20
Posts: 19

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

damo wrote:
sm55br wrote:

...
install wine
pipelight
etc

Do you REALLY need pipelight? You are a masochist!

PS If you edit the title of your first post and add [SOLVED], it might help others looking for an answer wink

I would really appreciate if you help me to use Netflix by other way than Pipelight. I had Windows and looked for a really light OS. I have a very old notebook, so a guy installed Ubuntu. I disliked. So I discovered CrunchBang and followed steps from a Youtube video to install. Than when I went to watch Netflix... my saga started. I had to learn commands like apt-get (for me it was like hell) and I could after 6 days install Pipelight and watch Netflix using an agent-swift (something like that)

Now I think I am a genious.

I don't know any other way to use Netflix using Linux.


Valar Dohaeris.
All men must serve.

Offline

#20 2015-11-22 14:26:12

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,138
Website

Re: Installation problem - Isolinux.bin missing or corrupted [SOLVED]

So much win in this thread!

According to this reddit poster, Netflix should work in jessie using Chrome browser...
https://www.reddit.com/r/debian/comment … an_jessie/


I don't care what you do at home. Would you care to explain?

Offline

Board footer

Powered by FluxBB