Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 09-01-2007, 02:55 PM   #1 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Mount problem.

Hi brother,how can i do mount my combo drive.
My system detailsell 640m Laptop,80GB HDD,Philips combo drive.
I tried some commands but my combo drive not mounting nd some msg.
Code:
mount /media/cdrom0/ -o unhide
mount: can't find /media/cdrom0/ in /etc/fstab or /etc/mtab
then i used 2nd command.
Code:
mount -t iso9660 /dev/cdrom /mnt/cdrom
mount: mount point /mnt/cdrom does not exist
then i chenged
Code:
mount -t iso9660 /dev/hdc /mnt/hdc
output is:mount point /mnt/hdc does not exist
but i first checked devices list through this command "dmesg" nd output is
Quote:
RAMDISK driver initialized: 16 RAM disks of 16384K size 4096 blocksize
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ide0: I/O resource 0x1F0-0x1F7 not free.
ide0: ports already in use, skipping probe
Probing IDE interface ide1...
hdc: PHILIPS CD-RW/DVD-ROM SCB5265, ATAPI CD/DVD-ROM drive

ide1 at 0x170-0x177,0x376 on irq 15
ide-floppy driver 0.99.newide
.

What is problem?. in my command 0r somthing wrong .please help me brother
LEARNER_LEARNER is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 09-01-2007, 03:19 PM   #2 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Mount problem.

There's no directory named hdc or cdrom under /mnt
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-01-2007, 03:38 PM   #3 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Re: Mount problem.

Hi tech_your_future,i have created cdrom dir under /mnt.but here some msg.
Code:
mount /dev/cdrom/ -o unhide
output is:mount: can't find /dev/hdc in /etc/fstab or /etc/mtab

2nd command is:-
Code:
mount -t iso9660 /dev/cdrom /mnt/cdrom
output is:-mount: No medium found

thanX 4 reply tech_your_future but please help me brother.
LEARNER_LEARNER is offline  
Old 09-01-2007, 03:45 PM   #4 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Mount problem.

first error message says that there is no entry for /dev/cdrom under /etc/fstab
second one says that there's nothing inside the cdrom drive. Change /dev/cdrom to /dev/hdc and then what happens?
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-01-2007, 04:01 PM   #5 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Re: Mount problem.

i changed cdrom 2 hdc but same msg brother.
1st code
Code:
mount /dev/hdc/ -o unhide
output:-can't find /dev/hdc in /etc/fstab or /etc/mtab

2nd code is
Code:
mount -t iso9660 /dev/hdc /mnt/cdrom
output is:-No medium found
please help
LEARNER_LEARNER is offline  
Old 09-01-2007, 04:08 PM   #6 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Mount problem.

Add an entry for /dev/hdc in your /etc/fstab file. How to do that, search in this section.
Is there any CD inside your CD drive?
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-01-2007, 04:19 PM   #7 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Re: Mount problem.

very difficult nd painful search but i,m trying.
u r saying "any cd inside ur cd drive".yes CD inside in optical drive.
Quote:
mount -t iso9660 /dev/hdc /mnt/cdrom
output is:-block device /dev/hdc is write-protected, mounting read-only
please help me brother
LEARNER_LEARNER is offline  
Old 09-01-2007, 04:24 PM   #8 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: Mount problem.

Are you sure that the cd is inside the same drive you are trying to mount?
Do you have any other cd drive?
Also give output of fdisk -l
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 09-01-2007, 05:17 PM   #9 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,453
Default Re: Mount problem.

@learner , please post here the output of "ls -ld /dev/cd*" !
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 09-01-2007, 05:40 PM   #10 (permalink)
Just another linux lover.
 
subratabera's Avatar
 
Join Date: Jun 2006
Location: Bangalore, KA
Posts: 559
Default Re: Mount problem.

First of all post the details about your disro...All latest Linux distros automatically mount cd-drives...

BTW. Try this...(I assume your cd-drive is /dev/hdc)

1) Create a folder (cdrom) in /mnt --> /mnt/cdrom
2) su -
3) enter root password
4) mount /dev/hdc /mnt/cdrom

If that fails...

4) mount -o remount /dev/hdc /mnt/cdrom
__________________
Today is a most unusual day, because we have never lived it before; we will never live it again; it is the only day we have.
(Registered Linux User #432737 - subratabera.blogspot.com)
subratabera is offline  
Old 09-01-2007, 06:15 PM   #11 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Re: Mount problem.

Ok my distro is Fc6.yes CD inside My optical drive.
Code:
fdisk -l
output is:-Disk /dev/sda: 78.5 GB, 78518522880 bytes
255 heads, 63 sectors/track, 9546 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/sda1 1 5 40131 de Dell Utility
/dev/sda2 * 6 1790 14338012+ 7 HPFS/NTFS
/dev/sda3 1791 9545 62292037+ f W95 Ext'd (LBA)
/dev/sda5 1791 4340 20482843+ 83 Linux
/dev/sda6 4341 8164 30716248+ 83 Linux
/dev/sda7 8165 8419 2048256 82 Linux swap / Solaris
/dev/sda8 8420 9545 9044563+ 7 HPFS/NTFS


Code:
mount -o remount /dev/hdc /mnt/cdrom
output is:-mount: you must specify the filesystem type


Code:
ls -ld /dev/cd*
output is:-lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdrom -> hdc
lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdrom-hdc -> hdc
lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdrw -> hdc
lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdrw-hdc -> hdc
lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdwriter -> hdc
lrwxrwxrwx 1 root root 3 Jan 9 18:00 /dev/cdwriter-hdc -> hdc


plz help brother
LEARNER_LEARNER is offline  
Old 09-01-2007, 06:33 PM   #12 (permalink)
Wise Old Owl
 
desertwind's Avatar
 
Join Date: Nov 2004
Location: Hyderabad
Posts: 1,096
Default Re: Mount problem.

Quote:
Originally Posted by LEARNER_LEARNER
output is:-block device /dev/hdc is write-protected, mounting read-only
please help me brother
Your drive seems to be mounted. Now whats your problem ?
__________________
Sometime you'll think you understand everything

...Then you'll regain consciousness
desertwind is offline  
Old 09-01-2007, 07:04 PM   #13 (permalink)
Fedora User
 
LEARNER_LEARNER's Avatar
 
Join Date: Oct 2006
Location: New Delhi (Dwarika)
Posts: 167
Default Re: Mount problem.

Mounted my Cd Drive but big problem here i insert any Video Cd(.dat File )no Showing Cd Drive Icon .when i insert software cd a sudden open Kde Daemon only showing software cd nd Cd Drive Icon brother.
What is Problem here brother?......

Last edited by LEARNER_LEARNER; 09-01-2007 at 07:08 PM. Reason: Automerged Doublepost
LEARNER_LEARNER is offline  
Old 09-01-2007, 08:25 PM   #14 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,453
Default Re: Mount problem.

Ok try this now! Its a little modification of @subratabera's post! Do this....
Quote:
1) Create a folder (cdrom) in /mnt --> /mnt/cdrom
2) su -
3) enter root password
4) mount -t iso9660 /dev/cdrom /mnt/cdrom
Next....
Quote:
Originally Posted by learner_learner
i insert any Video Cd(.dat File )no Showing Cd Drive Icon
Now video CDs and DVDs aren't suppose to be mounted for playing them! I mean everything is handled by the software! If u mount video CDs and DVDs manually and then play them u'll experience some error.
Now read this carefully!
Tell me if ur problem still persists!
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +5.5. The time now is 05:42 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2