You are not logged in.

#1 2018-09-11 00:34:02

danypendeira
Guest

Can't detect CD-ROM

Can't mount CD in the installer.

I'm using a USB bootable and selecting graphical installer. No matter what I do, change the USB drive, re-download the ISO it always displays the error "can't mount CD-ROM", or can't "can't detect CD-ROM". However, the live session works fine.

My PC is an i5 2400 at 3.10 GHZ with 8GB RAM and 1TB hard drive.

Weird, isn't it?

Last edited by danypendeira (2018-09-11 00:37:17)

#2 2018-09-13 06:32:05

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: Can't detect CD-ROM

how did you create the bootable CD?
I believe the bunsenlabs site has instructions for that.

Offline

#3 2018-09-13 16:34:37

danypendeira
Guest

Re: Can't detect CD-ROM

I did it with using Rufus, in Windows 10.
Was that bad?

Last edited by danypendeira (2018-09-13 16:34:50)

#4 2018-09-13 21:48:33

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

Re: Can't detect CD-ROM

danypendeira wrote:

I did it with using Rufus, in Windows 10.
Was that bad?

On the Bunsenlabs download page are links to instructions...

How to write an ISO image

Rufus should be OK, AFAIK


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

#5 2018-09-13 22:10:38

danypendeira
Guest

Re: Can't detect CD-ROM

None of these programs offer an option to burn to a USB.
I don't have a CD-ROM or DVD drive.

#6 2018-11-15 03:26:44

Xorgbunsenlabsbrokesucks
New Member
Registered: 2018-11-14
Posts: 3

Re: Can't detect CD-ROM

And... 2 hours into my download... i forgot i had this issue too. so many problems on linux can't keep track of which routes are broken. sad

Offline

#7 2018-11-15 07:21:19

ohnonot
...again
Registered: 2015-09-29
Posts: 5,592

Re: Can't detect CD-ROM

^ interesting username.
that will really inspire people to help you.

everytime you say that something is "broken" on linux, you basically say that you know better than a bunch of devoted developers.
always better to state the facts, e.g. "this didn't work for me", instead of making broad statements.
it's also more optimistic; it includes the chance of fixing: something that didn't work, might be made to work next time - nota bene: by your effort, not by demanding a fix.

Offline

#8 2018-11-23 01:36:11

rbh
Moderator
From: South of Lapplands inland
Registered: 2016-08-11
Posts: 1,921

Re: Can't detect CD-ROM

danypendeira wrote:

None of these programs offer an option to burn to a USB.

There is a link to https://sourceforge.net/projects/win32diskimager
That program for Windows is "designed to write a raw disk image to a removable device or backup a removable device to a raw image file."
Try it!


// Regards rbh

Please read before requesting help: "Guide to getting help", "Introduction to the Bunsenlabs Lithium Desktop" and other help topics under "Help & Resources" on the BunsenLabs menu

Offline

#9 2019-11-30 17:37:51

paracas
New Member
Registered: 2019-11-30
Posts: 1

Re: Can't detect CD-ROM

FYI in case anyone else sees this same issue (unable to detect CD-ROM):
  like dany above I had also used Rufus to write the .iso to USB, and chosen the default/recommended Rufus option of 'ISO' write method/format.  So I went back and re-created the USB using the other Rufus option ('DD' ), and now Helium install detects CD-ROM OK . yay! :-)

I'm unclear on the difference between the 2 options, but I suspect this thread probably doesn't belong in the bug report section..
cheers
Rob

Offline

#10 2019-12-11 17:57:06

a_hardwick
Member
Registered: 2018-05-06
Posts: 19

Re: Can't detect CD-ROM

I ran into this problem yesterday installing Lithium. Googled it. Drop to shell after the CD is undetected and:
$ mount -i vfat /dev/sdb1 /cdrom
$ exit

And start from "Detect CD...

Worked for me.

Maybe appending this line to the appropriate install script might fix the issue...

Last edited by a_hardwick (2019-12-11 17:59:30)

Offline

#11 2020-01-23 21:03:56

Uooops
Member
Registered: 2019-07-08
Posts: 19

Re: Can't detect CD-ROM

I had the same problem.

Just put the pen drive out when the error is shown and then put it back in.

Hope it work for you.

Offline

#12 2020-11-24 22:06:18

0x4FF
Member
Registered: 2020-11-24
Posts: 10

Re: Can't detect CD-ROM

I was installing Lithium and had the same issue like OP. I followed @paracas advice and it worked.
So if anyone is using Rufus to make a bootable USB drive, you have to choose the "DD" type of writing onto USB for it to work.

Offline

#13 2022-10-03 14:36:48

beng
Member
Registered: 2015-09-29
Posts: 81

Re: Can't detect CD-ROM

Hi

Posting in case this could help someone at some point ...

Trying to install BL lithium on a new SSD drive from an SD card and the installer cannot detect my cdrom...

None of the solutions above worked out for me:
- burn image with Rufus in DD mode (Rufus 3 does not show the option in the interface anymore, a prompt will show up when you launch the process)
- burn image with win32disk imager
- "mount -i vfat /dev/sdb1 /cdrom" command in a shell

Here is what worked out for me (from https://superuser.com/questions/962926/ … -rom-drive)

After the error shows up, go back to the installer menu, and launch a shell (the before last option); in the shell, type

~ # blkid

in what is returned, identify your ssd; mine was /dev/mmcblk0
(p1, p2 ... will indicate the partitions on the device so if only partitions are returned, e.g. mmcblk0p1 & mmcblk0p2, you can guess the name of your device will be mmcblk0 if you omit p1, p2...)

then "mount" your cd rom by typing:

~ # mount -t iso9660 /dev/<your device> /cdrom

so for me, it was actually

~ # mount -t iso9660 /dev/mmcblk0 /cdrom

("the issue is the file format is not vfat, but iso9660")
--> the cdrom should now be mounted

exit the shell

~ # exit

Back to the installer, start from detect cdrom option et voila ! The installer resumes

--> @admin: something to improve in the installer for the next version wink thanks

Last edited by beng (2022-10-05 10:52:56)

Offline

#14 2022-10-03 18:19:42

rbh
Moderator
From: South of Lapplands inland
Registered: 2016-08-11
Posts: 1,921

Re: Can't detect CD-ROM

beng wrote:

--> @admin: something to improve in the installer for the next version wink thanks

Ther is no one here working with debian installer.

Info about the DebianInstallerTeam:

https://wiki.debian.org/DebianInstaller/Team


// Regards rbh

Please read before requesting help: "Guide to getting help", "Introduction to the Bunsenlabs Lithium Desktop" and other help topics under "Help & Resources" on the BunsenLabs menu

Offline

#15 2022-10-05 10:44:47

beng
Member
Registered: 2015-09-29
Posts: 81

Re: Can't detect CD-ROM

rbh wrote:
beng wrote:

--> @admin: something to improve in the installer for the next version wink thanks

Ther is no one here working with debian installer.

Info about the DebianInstallerTeam:

https://wiki.debian.org/DebianInstaller/Team

Thanks rbh, I emailed them.

Last edited by beng (2022-10-05 10:49:19)

Offline

Board footer

Powered by FluxBB