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 03-25-2020, 03:42 PM   #1
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Rep: Reputation: Disabled
Exclamation Mounting Error: "The given volume was not found."


Hey everyone!

I only just started using Linux to view some DVD-ROM files through an external drive on my Chromebook for work. I managed to install linux just fine, but now I am having trouble mounting the dvd drive.

It shows up as "MI Resources" but when I click on the icon an error pops up. "Failed to mount 'MI Resources' The given volume was not found."

If you know how to fix this error, please let me know! And keep in mind that I have absolutely no idea what I'm doing. Be gentle!
 
Old 03-25-2020, 07:50 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,324
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
What file types are you trying to access?
 
Old 03-25-2020, 08:10 PM   #3
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
It's a resource DVD-rom with many different file types inside such as PDF, and mp4. I don't really know the exact files included since I can't access them. (The Chromebook is my only computer) Does that help at all?
 
Old 03-25-2020, 08:29 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,324
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
I'm sure I know the answer, but I have to ask this question for rule out purposes: Is there a disk in the device when you try to mount it?

Does the device show when you run fdisk -l? If not, does it show when you run dmesg?

The dmesg command produces a lot of output, so you might want to pipe the output to a file and review the file in a text editor.

Code:
dmesg > [somefilename]
 
Old 03-25-2020, 08:46 PM   #5
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
There's no disk in it at the moment or when I was trying to mount it.

And I know I'm going to sound really stupid, but what do you mean by run fdisk -l? I'm assuming it's a command, but what's the exact code? And do I have to put it in using Chrome OS or Linux?

Thanks so much foe being patient with me!
 
Old 03-25-2020, 09:11 PM   #6
JeremyBoden
Senior Member
 
Registered: Nov 2011
Location: London, UK
Distribution: Debian
Posts: 1,947

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Put the DVD in the drive before you attempt to mount it.
Actually, there's a good chance that it will automount it for you.

All commands are run from a command entry screen - but depending on your variety of Linux you might not be forced to use it much.
 
Old 03-26-2020, 10:23 AM   #7
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
I tried plugging the drive in and then putting the disk in and plugging it in with the disk already in and it still failed to mount because "not authorized to perform operation" so you know, that's fun.

Do you know how to access the command screen in Linux? I use ctrl+alt+T in Chrome OS but that doesn't work in Linux.
 
Old 03-26-2020, 10:40 AM   #8
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896
What linux distribution are you running?

By default Ubuntu and Mint (and maybe others) create a shortcut i.e. ctrl+alt+T to start a terminal window but it isn't universal. Otherwise you should be able to start it from your desktop menu.

If the DVD is not automatically being mounted which depends on the desktop you might need to manually mounted via the terminal window. To manually mount the disk you need to use sudo or be root.

sudo mount -t auto /dev/sr0 /media
 
Old 03-26-2020, 02:38 PM   #9
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
All right, I found terminal, there was an icon on screen, I know, I'm an idiot.

I attempted to use the command you gave me but it didn't work. Luckily, with a bit of googling I did find the right command, "sudo mount /dev/cdrom" The issue now is that I need to find a mount point. Can anyone tell me how to do that?

Thanks again for all your help!
 
Old 03-26-2020, 03:11 PM   #10
JeremyBoden
Senior Member
 
Registered: Nov 2011
Location: London, UK
Distribution: Debian
Posts: 1,947

Rep: Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511Reputation: 511
Device names vary, yours is /dev/cdrom
Typically a suitable mountpoint is /mnt or /media

After you have finished processing the DVD and before you eject the disk, enter
Code:
sudo umount /dev/cdrom
Please note the spelling of umount - that is not a typo.
 
Old 03-26-2020, 03:37 PM   #11
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,504

Rep: Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490Reputation: 2490
A mount point is just a directory. Some Linux distributions will have a number of empty directories under /mnt/ which you can use. You can also simply create a directory to use as a mount point, as root user: mkdir /mnt/dvd then mount it as shown in post 8 above.
 
Old 03-26-2020, 04:35 PM   #12
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
Cool, here's where I'm at now!

I made the mount point, it's "/mnt/dvd". I went and did "sudo mount /dev/cdrom /mnt/dvd"

So, the new issue is "no medium found on /dev/sr0". Does that mean I got the device name wrong? How do I find my device name?
 
Old 03-26-2020, 04:45 PM   #13
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896
Is there a disk in the drive?

What linux distribution are you running?
 
Old 03-26-2020, 04:46 PM   #14
Hope170
LQ Newbie
 
Registered: Mar 2020
Posts: 9

Original Poster
Rep: Reputation: Disabled
Yes, should I take it out?
 
Old 03-26-2020, 06:02 PM   #15
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,702

Rep: Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896Reputation: 5896
No, post the output of the lsblk command.

What linux distribution are you running?
 
  


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
[SOLVED] No package 'x11' found No package 'xext' found No package 'xdamage' found No package 'xfixes' found No package 'x11-xcb' found Jigsaw Linux From Scratch 14 02-23-2021 08:35 PM
i tried using this code for deleting a user given character from a user given string mecrazyme1234 Linux - Newbie 2 06-04-2011 04:59 PM
i tried using this code for deleting a user given character from a user given string mecrazyme1234 Programming 7 06-04-2011 11:47 AM
"volume control GStreamer plugins and/or device not found"-how do I get volume contro fishurmn Linux - Newbie 6 07-19-2010 10:55 PM
merge files, given its odd and even given timepassman Linux - Software 1 05-08-2008 01:17 AM

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

All times are GMT -5. The time now is 05:15 AM.

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