LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mageia
User Name
Password
Mageia This forum is for the discussion of Mageia Linux.

Notices


Reply
  Search this Thread
Old 12-31-2012, 09:39 PM   #1
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Rep: Reputation: Disabled
Mageia 3 can not mount DVD


I plug in the DVD, it shows

Error mounting system-managed device /dev/sr0: Command-line `mount "/media/cdrom"' exited with non-zero exit status 32: mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so

What can I do?
 
Old 01-01-2013, 12:07 PM   #2
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
Quote:
I plug in the DVD
What does that mean? You plugged in an external DVD drive to a USB port? You put a DVD disk into an internal DVD drive? You tried to mount a DVD without any media in the drive?
You are using udev to automount? Or did you try and manually mount? Are you trying to mount a blank DVD+R?
Better help with better question.
 
Old 01-01-2013, 11:51 PM   #3
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
it is a desktop,
internal DVD ROM,
I just put in a DVD,
it does not mount.
 
Old 01-02-2013, 12:43 AM   #4
nigelc
Member
 
Registered: Oct 2004
Location: Sydney, Australia
Distribution: Mageia 7
Posts: 406
Blog Entries: 4

Rep: Reputation: 80
Hello,
It's not just a bad dvd? Have you tried another one?
cheers

Last edited by nigelc; 01-02-2013 at 12:44 AM. Reason: made a mistake.
 
Old 01-02-2013, 05:51 AM   #5
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
i tried a few DVD, not DVD problem.
 
Old 01-02-2013, 06:14 PM   #6
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
How have you tried to mount it? Can you mount it manually?
Code:
mount -t iso9660 /dev/sr0 /mounting/point
You may need to be root. Depends on how you have your box configured. You may need to give user permissions to mount, or configure udev.
Also your not trying to mount an MT DVD are you? Do you have the drive in your fstab?
I see that pinguy is built on Ubuntu. You may try their forum also.
Looks like you need to configure it.

http://forum.pinguyos.com/Thread-Ext...e-not-detected
http://linux.die.net/man/8/mount
http://manpages.ubuntu.com/manpages/...n7/udev.7.html

If it's Magia, mount the disk manually or find out how to configure it to automount.
http://www.mageia.org/en/support/
 
Old 01-02-2013, 09:51 PM   #7
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
Noted your advice.
 
Old 01-03-2013, 05:12 AM   #8
digigold
Member
 
Registered: Apr 2012
Location: Northern US
Distribution: Arch, Manjaro, CentOS/RHEL, SUSE
Posts: 88

Rep: Reputation: 14
Quote:
Originally Posted by future_computer View Post
I plug in the DVD, it shows

Error mounting system-managed device /dev/sr0: Command-line `mount "/media/cdrom"' exited with non-zero exit status 32: mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so

What can I do?
What I would do is just add the following line to your fstab file.
Code:
/dev/cdrom  /cd  iso9660  ro,user,noauto,unhide
Note the "user" option allows any user to mount the drive.
Unless you have a hardware problem, this should work. If it doesn't let us know what happened.
 
Old 01-03-2013, 07:06 AM   #9
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
the error message is this:

mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
 
Old 01-03-2013, 07:11 AM   #10
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
What I did was this:

1. go to /mnt, su mkdir cdrom
2. the at terminal, type
mount -t iso9660 /dev/sr0 /mnt/cdrom

It was mounted, can be accessed from file manager.

How to make it automount?
 
Old 01-03-2013, 07:15 AM   #11
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
why the usb drive is at

/run/media/daniel/TDK

my drive name is TDK.
 
Old 01-03-2013, 07:37 AM   #12
digigold
Member
 
Registered: Apr 2012
Location: Northern US
Distribution: Arch, Manjaro, CentOS/RHEL, SUSE
Posts: 88

Rep: Reputation: 14
Quote:
Originally Posted by future_computer View Post
why the usb drive is at

/run/media/daniel/TDK

my drive name is TDK.
/run/media is where the udisks daemon is probably set to mount.
 
Old 01-03-2013, 07:47 AM   #13
digigold
Member
 
Registered: Apr 2012
Location: Northern US
Distribution: Arch, Manjaro, CentOS/RHEL, SUSE
Posts: 88

Rep: Reputation: 14
Quote:
Originally Posted by future_computer View Post
What I did was this:

1. go to /mnt, su mkdir cdrom
2. the at terminal, type
mount -t iso9660 /dev/sr0 /mnt/cdrom

It was mounted, can be accessed from file manager.

How to make it automount?
add this line to /etc/fstab:
Code:
/dev/sr0  /mnt/cdrom  iso9660  ro,user,unhide 0 2
then check/or to easily mount later use:
Code:
mount -a
 
Old 01-03-2013, 08:26 AM   #14
future_computer
Member
 
Registered: Apr 2012
Distribution: Pinguy OS
Posts: 392

Original Poster
Rep: Reputation: Disabled
Is this a bug in beta 1?
mageia 2 can automount.
 
Old 01-20-2013, 12:29 AM   #15
floppywhopper
Member
 
Registered: Aug 2004
Location: Western Australia
Distribution: Mageia , Centos
Posts: 643
Blog Entries: 2

Rep: Reputation: 136Reputation: 136
probably is a bug
you need to report it
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Mageia 1 Support Terminated, Upgrade to Mageia 2 LXer Syndicated Linux News 0 12-02-2012 08:00 AM
[SOLVED] Can't Boot Mageia 2 after Upgrading from Mageia 1 gdawg Mageia 3 06-24-2012 10:20 AM
LXer: Open Source: Mageia 1 to Mageia 2 Upgrade LXer Syndicated Linux News 0 05-22-2012 04:30 PM
[SOLVED] Mageia Linux DVD version. Are Emerald repos included on DVD or not? nando321 Mandriva 2 07-13-2011 06:51 PM
mount as a device: mount dvd-iso file in /dev/dvd sadarax Linux - General 21 02-02-2011 11:59 PM

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

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