Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
07-05-2003, 09:36 PM
|
#1
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Rep:
|
RH9 & direct cd's
is it possible to read direct-cd's made in windows through linux? i have rh9. and i mean direct-cd's that arent closed/finished.
i try this:
Code:
# modprobe udf
# mount -t udf /dev/cdrom1 /directory
and it tells me:
Code:
mount: block device /dev/cdrom1 is write-protected, mounting read-only
mount: wrong fs-type, bad option, bad superblock on /dev/cdrom1, or too many mounted file systems
so, my question is, is what im trying to do possible? if so what do i do to do so?
Last edited by warheros; 07-05-2003 at 09:37 PM.
|
|
|
07-05-2003, 10:14 PM
|
#2
|
LQ Guru
Registered: Jan 2002
Posts: 6,042
Rep: 
|
Try
mount /dev/cdrom1 /directory
Redhat should be smart enough and pick the right filesystem for your CD. Make sure you make the directory first before mounting it. If its an audio CD, you can not mount it.
|
|
|
07-05-2003, 11:05 PM
|
#3
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
thanks for the reply, this is what i got from doing that:
Code:
/dev/cdrom1: invalid argument
mount: block device /dev/cdrom1 is write-protected, mounting read-only
/dev/cdrom1 invalid argument
mount: you must specify the filesystem type
and i know audio cd's cant be mounted. when i load in the cd, it brings up a gui file explorer window opening the cd to "///burn:" and shows nothing in it. i read up on that, and it says it does that when you put a blank disc in you can drag and drop stuff to it. but i know the disc isnt empty.
Last edited by warheros; 07-05-2003 at 11:09 PM.
|
|
|
07-06-2003, 06:11 PM
|
#4
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
*bump*
|
|
|
07-06-2003, 08:40 PM
|
#5
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
Direct-cd's work fine for me. Are you sure the cd isn't already mounted (check /proc/mounts)? I've only used it with cdrw, are you using cdr?
You can even record on direct-cd's if you patch your kernel. It works well on mine.
|
|
|
07-08-2003, 06:02 PM
|
#6
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
it's not already mounted.
|
|
|
07-08-2003, 06:16 PM
|
#7
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
Can you mount normal iso9660 filesystems using the same device? Have you tried more than one UDF formatted cd?
I've heard you can test the filesystem with this:
UDF Verification Software
BTW, if your interested in CDRW write support you can get your kernel patches here and the udftools here. Format UDF version 1.5 (like this: "cdrwtool -d <device> -v 0x0150 -q") if you want windows to be able to use it.
Last edited by zmedico; 07-08-2003 at 11:21 PM.
|
|
|
07-08-2003, 09:04 PM
|
#8
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
they dont have my patch for my kernal version. and, i think it doesnt work because the cd isnt actually formated to udf until you choose to do so. because when you do format it, you cant write anymore to it using the direct cd, am i correct? therefore, i cant open it using udf in rh9.
have not tried opening iso6990 cd's.
|
|
|
07-08-2003, 11:12 PM
|
#9
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
Quote:
Originally posted by warheros
they dont have my patch for my kernal version. and, i think it doesnt work because the cd isnt actually formated to udf until you choose to do so. because when you do format it, you cant write anymore to it using the direct cd, am i correct? therefore, i cant open it using udf in rh9.
|
No, that's not how it works with cdrw (I don't know about cdr). The cd must be formatted with a UDF filesystem before data is recorded on it. Then it behaves much like any other writable filesystem. I'm not aware of anything you would need or want to do to it to make it unwritable.
Quote:
Originally posted by warheros
have not tried opening iso6990 cd's.
|
If you haven't successfully mounted any cd's then the problem is probably the device you're trying to use (/dev/cdrom1). Maybe /dev/hdb, /dev/hdc, /dev/scd0, /dev/scd1, or something will work.
|
|
|
07-10-2003, 04:16 PM
|
#10
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
you must close the cd before it can be read in linux. i figured it out. and once you close it, you cant write to it anymore. which kind of messes some things up for me. but anyways, thanks for all the help, i figured it out finally.
|
|
|
07-10-2003, 05:09 PM
|
#11
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
That's a cdr then, right? I never encountered any such behavior with cdrw.
|
|
|
07-10-2003, 08:09 PM
|
#12
|
Member
Registered: Jun 2003
Location: mason, mi, usa
Distribution: rh9
Posts: 87
Original Poster
Rep:
|
cdr, hence the name cdrw, re-write.
|
|
|
08-03-2003, 12:45 PM
|
#13
|
Member
Registered: Jan 2003
Location: United States of America and damn proud of it!
Distribution: Windows 10 prior Red Hat User
Posts: 473
Rep:
|
Hi Guys,
I know that it has been some time since anyone put a reply in this forum, however, I'm confused by what someone said. I have a CDR that I wish to be able to read in Linux but I cannot. I need a UDF reader installed to be able to read a CD that I made from Windows using Roxio. I closed the CD but I still cannot read it.
Anyone know what I have to do? Thanks.
|
|
|
08-04-2003, 02:18 AM
|
#14
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
It seems like warheros had success reading an MS Windows UDF CDR with linux, after the CDR was closed. Did you try something like "mount -t udf /dev/cdrom /mnt/cdrom" and get the error "mount: wrong fs type, bad option,
bad superblock on /dev/cdrom, or too many mounted file systems"?
Last edited by zmedico; 08-04-2003 at 02:20 AM.
|
|
|
08-04-2003, 06:35 AM
|
#15
|
Member
Registered: Jan 2003
Location: United States of America and damn proud of it!
Distribution: Windows 10 prior Red Hat User
Posts: 473
Rep:
|
Yes, I believe that is what I got yes.
|
|
|
All times are GMT -5. The time now is 12:53 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|