LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Trouble mounting DVD rom (https://www.linuxquestions.org/questions/linux-newbie-8/trouble-mounting-dvd-rom-557770/)

Boer Seun 05-30-2007 11:10 AM

Trouble mounting DVD rom
 
Hallo all
I am trying to get my data from DVD disk onto my Fedora6 box.
The problem I have is that I insert the DVD and when I go to open the drive to retrive my files I get a msg that says unable to mount drive.
What am I not doing or what am I doing wrong.
Thanks
Boer

weibullguy 05-30-2007 12:03 PM

Try mounting the drive as 'root', replacing the ? in the third line with the proper letter (probably c or d)
Code:

su
mkdir -p /mnt/dvd
mount /dev/hd? /mnt/dvd
exit


Boer Seun 05-30-2007 12:45 PM

I will try that when I get home, I only have the root account setup, is this good or bad b/c I ran my older Windows machine as Administrator all the time, so I reconed that if I just work on the root account I will be able to do everything without having to worry about permissions.
Would I need to run this command everytime I want to use my DVD/CD ROM?

weibullguy 05-30-2007 01:05 PM

Quote:

Originally Posted by Boer Seun
I will try that when I get home, I only have the root account setup, is this good or bad b/c I ran my older Windows machine as Administrator all the time, so I reconed that if I just work on the root account I will be able to do everything without having to worry about permissions.

Bad. That's what makes Windows inherently unsecure and prone to viral infection, malware, spyware, user-induced "Ooops", etc. But, it's your machine if you don't mind the extremely real possibility of a wrong keystroke messing it up, then run as root. Personally, I don't do it

Quote:

Originally Posted by Boer Seun
Would I need to run this command everytime I want to use my DVD/CD ROM?

No. There are user-space utilities that will allow you to mount and unmount devices without being the privelaged user.

Boer Seun 05-31-2007 12:05 AM

You said to change the "?" with the drive letter but whn I go to places and then computer I can see all my devices in there but no drive letters? How do I name drives or assighn letters?
LOL I really am not very good at this....yet

Boer Seun 05-31-2007 12:21 AM

Okay I figured out what the problem was, for some reason linux does not see my backup dvd's (Burned with Nero on win XP) maybe because it does not recognize the file system?

Do you thinks this is the case and how do I rectify this?
Thanks

SlackDaemon 05-31-2007 12:51 AM

Try the following:

mount -t iso9660 /dev/cdrom /mnt/dvd -o ro

or

mount -t udf /dev/cdrom /mnt/dvd -o ro

Boer Seun 05-31-2007 11:52 PM

Slack Daemon: I tried but it comes back saying "no Medium found" Could this be an indication that even though my operating system sees my dvd drive it does not recognize the filesystem or the fact that there is a DVD in the drive?

SlackDaemon 06-01-2007 12:06 AM

The filesystem on the CD/DVD isn't being recognized. Have you tried using it on other machines?

Boer Seun 06-02-2007 06:50 AM

Yes its fine on my laptop running windows

SlackDaemon 06-02-2007 10:30 PM

I've had a similar problem recently, but it was drive related rather than the OS. But CDs/DVDs burnt from Linux tend to be readable on both UNIX variants and Windows.
The only suggestion I can give to solve the immediate problem is by transferring the data via a network connection. Got a cross cable handy?

Boer Seun 06-02-2007 11:58 PM

I could setup file sharing between my vista laptop and fedora box if I can figure out how the world of linux is still petty new to me.
Thanks I will try that in the morning

SlackDaemon 06-03-2007 12:08 AM

You'll be able to connect to your windows share by using either the smbmount or smbclient commands.

smbmount allows you to mount a windows share like a local disk

smbmount //192.168.0.2/sharename /mount/point -o username=<name>

smbclient lets you access a windows share similar to ftp.

smbclient //192.168.0.2/sharename -U <username> -P <password>


All times are GMT -5. The time now is 08:51 AM.