You are not logged in.

#1 2023-10-06 22:49:42

Tx86
Banned
Registered: 2021-07-24
Posts: 39

[SOLVED] iso9660 not configured in kernel

I found a bunch of old CDs from my grandma's house that have a bunch of old family photos, but the computer that they used to make the CDs was a Windows computer. So now it seems that I cannot access them on my own Arch computer. The computer recognizes the CD and even the name, but every time I try to open it via Thunar file manager, it tells me "Error mounting /dev/sr0 at /run/media/user/Documents: Filesystem type iso9660 not configured in kernel..".

Is there a way to overcome this, or should I just go ahead and toss the CDs 'cause they're useless?



Post Solution Note:
My kernel was out of date. Updating it fixed the issue.

Last edited by Tx86 (2023-10-08 20:24:59)

Offline

#2 2023-10-06 22:59:27

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

What is the output of `uname -r` and `pacman -Q linux linux-headers`?


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#3 2023-10-06 23:05:41

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:

What is the output of `uname -r` and `pacman -Q linux linux-headers`?

"error: package 'linux-headers' was not found".

Should I download it?

Offline

#4 2023-10-06 23:34:40

mpan
Member
Registered: 2012-08-01
Posts: 1,593
Website

Re: [SOLVED] iso9660 not configured in kernel

No, post the output of the commands dakota asked you to run. The full output, not a single line taken out of it.


Paperclips in avatars? | Sometimes I seem a bit harsh — don’t get offended too easily!

Offline

#5 2023-10-06 23:35:50

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

I'm just gonna download it.

Offline

#6 2023-10-06 23:37:05

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

Er... I don't know.

What I meant to ask was...

uname -r
pacman -Q linux

... to see if the installed kernel was up to date and the same as the kernel that you're booting from.

AFAIK, support for ISO9660 is built into the kernel. First let's see what kernel you have.

Cheers,

Last edited by dakota (2023-10-06 23:43:27)


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#7 2023-10-06 23:38:51

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:

Er... I don't know.

What I meant to ask was...

uname -r
pacman -Q linux

... to see if the installed kernel was up to date and the same as the kernel that you're booting from.

AFAIK, support for ISO9660 is built into the kernel. First let's see what kernel you have.

Cheers,

They're not the same.

Pacman says I'm using 5.15.133-1. uname says that I'm using 5.15.131-1.

Last edited by Tx86 (2023-10-06 23:40:34)

Offline

#8 2023-10-06 23:51:00

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

5.15? You haven't upgraded your system since Feb 2022?

I'd start with  a full system upgrade. (Be sure to read the Home Page for manual interventions that are required.)

Cheers,


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#9 2023-10-06 23:53:57

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

Okay. Look, is there a way we can just ignore this for now and go over what I would need to do if my kernel was up to date? I'm just trying to get these family photos copied to my computer, man.

Offline

#10 2023-10-06 23:56:38

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,623

Re: [SOLVED] iso9660 not configured in kernel

So, the problem is your kernel, 5.15.131-1 cannot find it modules because the ones installed are from 5.15.131-1.  This happens when you update your system, but your boot partition is not properly mounted at the time.

So, yes, you will probably be able to recover your photos.
Your system needs some love first.  As Dakota points out, it is grossly out of date.  And, you need to fix the configuration so the kennel can find its loadable modules when it needs them -- like to access iso9660 file systems.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#11 2023-10-07 00:01:05

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

ewaller wrote:

So, the problem is your kernel, 5.15.131-1 cannot find it modules because the ones installed are from 5.15.131-1.  This happens when you update your system, but your boot partition is not properly mounted at the time.

So, yes, you will probably be able to recover your photos.
Your system needs some love first.  As Dakota points out, it is grossly out of date.  And, you need to fix the configuration so the kennel can find its loadable modules when it needs them -- like to access iso9660 file systems.

Dang, okay. So, how do I update the kernel? I update the packages regularly, about once a month or so. I just updated it last night. So would I use pacman to update the kernel to 1.15.133-1, instead of 131-1?

Offline

#12 2023-10-07 00:15:12

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

Tx86 wrote:

So, how do I update the kernel?

The same way you update all your packages.

What command are you using to update your system?  And, how do you mount your boot partition prior to running that command?

Cheers,


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#13 2023-10-07 00:18:47

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,623

Re: [SOLVED] iso9660 not configured in kernel

The big problem is probably your boot media is not mounted when you update.  What is the output of mount | grep boot  ?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#14 2023-10-07 00:22:29

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

There is no output. Is that a good thing, or bad?

Offline

#15 2023-10-07 00:25:08

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:
Tx86 wrote:

So, how do I update the kernel?

The same way you update all your packages.

What command are you using to update your system?  And, how do you mount your boot partition prior to running that command?

Cheers,

 sudo pacman -Syu 

And as far as I know, the boot partition should be automatically mounted? But I'm honestly not sure.

Offline

#16 2023-10-07 00:31:00

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,623

Re: [SOLVED] iso9660 not configured in kernel

Tx86 wrote:

There is no output. Is that a good thing, or bad?

More like, Not Good™

Not having it mounted means nothing can tamper with the kernel that gets loaded on boot.  Unfortunately, that includes pacman

Please post the output of lsblk -f and, if you can, tell us what is your boot partition from that output.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#17 2023-10-07 00:35:45

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

sudo pacman -Syu

That is correct, but I don't really understand how Pacman can report you've installed 5.15.133-1 if you run updates monthly.*

As far as mounting goes, that will depend on how your system is configured.

Please post

lsblk -f
cat /etc/fstab

* Edit - or "last night", post #11

Last edited by dakota (2023-10-07 16:08:36)


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#18 2023-10-07 00:35:52

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

ewaller wrote:
Tx86 wrote:

There is no output. Is that a good thing, or bad?

More like, Not Good™

Not having it mounted means nothing can tamper with the kernel that gets loaded on boot.  Unfortunately, that includes pacman

Please post the output of lsblk -f and, if you can, tell us what is your boot partition from that output.

NAME   FSTYPE FSVER LABEL UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
sda                                                                           
├─sda1 ext4   1.0         b7744f57-3421-47e8-a824-f0eecf43f7fe  565.7G    33% /
└─sda2 swap   1     swap  bd39408b-acef-444a-961a-9b7c5791abb3                [SWAP]
sr0

This is what it said.

Offline

#19 2023-10-07 00:38:04

Tx86
Banned
Registered: 2021-07-24
Posts: 39

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:
sudo pacman -Syu

That is correct, but I don't really understand how Pacman can report you've installed 5.15.133-1 if you run updates monthly.

As far as mounting goes, that will depend on how your system is configured.

Please post

lsblk -f
cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=b7744f57-3421-47e8-a824-f0eecf43f7fe /              ext4    defaults,noatime 0 1
UUID=bd39408b-acef-444a-961a-9b7c5791abb3 swap           swap    defaults,noatime 0 0

I posted the output of

 lsblk -f 

to the other guy.

Offline

#20 2023-10-07 01:40:10

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:

I don't really understand how Pacman can report you've installed 5.15.133-1 if you run updates monthly.

Please post your pacman log and a journal from the last boot

cat /var/log/pacman.log | curl -F 'file=@-' 0x0.st
journalctl -b | curl -F 'file=@-' 0x0.st

Cheers,

Last edited by dakota (2023-10-07 01:58:03)


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#21 2023-10-07 03:55:14

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,726

Re: [SOLVED] iso9660 not configured in kernel

What does pacman -Qi linux give you?

Offline

#22 2023-10-07 04:02:26

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,726

Re: [SOLVED] iso9660 not configured in kernel

dakota wrote:
sudo pacman -Syu

That is correct, but I don't really understand how Pacman can report you've installed 5.15.133-1 if you run updates monthly.

Because 5.15.133 was only released 2 weeks ago.

Offline

#23 2023-10-07 04:38:28

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

Scimmia wrote:

Because 5.15.133 was only released 2 weeks ago.

Where do you find that? (I must be looking in the wrong place?)

$ uname -r
6.5.5-arch1-1

$ pacman -Q linux
linux 6.5.5.arch1-1

"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

#24 2023-10-07 04:39:36

Scimmia
Fellow
Registered: 2012-09-01
Posts: 13,726

Re: [SOLVED] iso9660 not configured in kernel

Offline

#25 2023-10-07 04:58:08

dakota
Member
Registered: 2016-05-20
Posts: 417

Re: [SOLVED] iso9660 not configured in kernel

Thank you!

But that wouldn't be the output from `uname -r` and `pacman -Q linux` [as reported in post #7] would it?

Cheers,

Edit - Scimmia's link above was useful, but this link showed me more information about the different kernel branches and when they were last updated.

Last edited by dakota (2023-10-07 16:11:15)


"Before Enlightenment chop wood, carry water. After Enlightenment chop wood, carry water." -- Zen proverb

Offline

Board footer

Powered by FluxBB