You are not logged in.
Pages: 1
Hi
I feel kind of silly asking this, but when you put a CD into your drive, where does it show up in your filesystem? Do you need to mount it? (If so, how?). On a related note, how can I check that my optical drive is configured properly and Arch is detecting it?
Thanks so much!
Offline
if u not using automatically mounting services u should do some like this
mount /dev/cdrom
but franky speaking u better look up here http://wiki.archlinux.org/index.php/Beginners_Guide#HAL
No cause is lost if there is but one fool left to fight for it.
Offline
You can't mount audio cds -- but you can still play them using appropriate applications. For vlc you can choose the "open disc" option (or something like that), with mplayer I think the syntax is something like "mplayer cdda://" -- although you might add a cache parameter to stop the audio from skipping, so something like "mplayer -cache 2000 cdda://" might be better.
Last edited by fwojciec (2008-03-08 21:44:20)
Offline
what fwojceic said.
For normal cds though, depending on your desktop manager, you might want to look at autofs, which is what I use (too lazy to automatically mount things) info in the wiki.
Offline
Oh, why thank you all.
Offline
You can't mount audio cds -- but you can still play them using appropriate applications. For vlc you can choose the "open disc" option (or something like that), with mplayer I think the syntax is something like "mplayer cdda://" -- although you might add a cache parameter to stop the audio from skipping, so something like "mplayer -cache 2000 cdda://" might be better.
just forgot bout audio-cd sorry. i think u can mount cds with some video or other stuff, some kind of enhanced cds
yes! u can't mount pure audio-cds
Last edited by sevenfourk (2008-03-08 22:04:41)
No cause is lost if there is but one fool left to fight for it.
Offline
Hmm... well I am trying to play/burn cds and dvds in arch because my optical drive doesn't seem to be working in windows xp. I am trying arch to make sure it is the software and not the hardware (if it doesn't work here, I'll have to buy a new one). So on top of the fact that my drive might be broken, I have no idea how to play these things. Using 'open disc' in VLC didn't work. I'll try mplayer, but I've got that feeling that its time for a replacement.
Also, when I try to 'mount /dev/cdrom' I get
[root@myhost /]# mount /dev/cdrom
mount: unknown filesystem type 'iso9660'
What is the problem?
Offline
try to mount data disk, if ok your drive is okay.
[root@myhost /]# mount /dev/cdrom
mount: unknown filesystem type 'iso9660'
if u mount audio-cd i think its normal when this shown.
No cause is lost if there is but one fool left to fight for it.
Offline
Sorry, what is the syntax for mounting data disk?
Offline
as i mistaken for the first my post, and wrote
mount /dev/cdrom
so i believe this is syntax for data.
No cause is lost if there is but one fool left to fight for it.
Offline
What DE are you using Xs1t0ry? And further, do you use HAL for removable devices? If using HAL have you removed the cd and dvd lines from fstab?
I use XFCE and have set BMP to auto-play CDs. In preferences I had to define the two lines for device as this:
/dev/sr0
/mnt/cdrom
Audacious has an option to load CDs without any special settings, but it's slow in my opinion. VLC as mentioned should work, and when selecting whatever CD or DVD media you have it shows in my environment the same device as above: /dev/sr0.
Offline
[root@myhost /]# mount /dev/disk
mount: can't find /dev/disk in /etc/fstab or /etc/mtab
Darn. Does this mean my drive is bunked?
Offline
i see u doing all work with root. why ?
add your user to group 'optical' and use mounting for your user
u can mount like this
mount /mnt/cdrom
if the necessary things are written in /etc/mtab and /etc/fstab.
why u mounting ?
mount /dev/disk
No cause is lost if there is but one fool left to fight for it.
Offline
Forget about HAL and automatic friends for now, just check that /etc/fstab has this 2 lines:
/dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0
/dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
then to mount the cd type: mount /dev/cdrom (or /dev/dvd if it is a dvd),
if succesful it shows in /mnt/cdrom/ (or /mnt/dvd if dvd) path.
If u have problems read the man page of mount, type: man mount
Are u listening?
Offline
Yes /etc/fstab has those two lines, but /etc/fstab.pacnew does not (is that a problem?). When I try to mount it, I get this:
[root@myhost /]# mount /dev/cdrom
mount: unknown filesystem type 'iso9660'
Offline
The latest "official" version of Arch fstab uses this:
/dev/cdrom /media/cd auto ro,user,noauto,unhide 0 0
/dev/dvd /media/dvd auto ro,user,noauto,unhide 0 0
Offline
That's what is in/etc/fstab.pacnew. Should I copy that into fstab?
Offline
The short answer is yes; and here is some more general info about the pacnew files: http://wiki.archlinux.org/index.php/Pacnew
Offline
/dev/cdrom /mnt/cdrom iso9660 ro,user,noauto,unhide 0 0 /dev/dvd /mnt/dvd udf ro,user,noauto,unhide 0 0
So do I copy over this?
Offline
you can, although it isn't hugely important.
Also, there is another option you may want to use with mount: -t
the syntax is
-t <filesystem type>
e.g.
mount -t iso9660 /dev/cdrom /mnt/cdrom
Last edited by alex_anthony (2008-03-09 21:08:12)
Offline
Sorry for necroposting, but I've just faced nearly the same problem. I couldn't mount plain data cd due to «unknown filesystem type 'iso9660'» error.
I couldn't found solution on google, but found a hint, that problem may be connected with kernel.
Recently I updated kernel and didn't reboot my pc. So I decided to reboot, and problem disappeared after this.
P.S. as arch forum was in top 10 in google on that query, I decided to post solution here to save some time, if anyone else faces this problem.
Offline
Recently I updated kernel and didn't reboot my pc. So I decided to reboot, and problem disappeared after this.
P.S. as arch forum was in top 10 in google on that query, I decided to post solution here to save some time, if anyone else faces this problem.
In fact it helps, thanks!
After kernel upgrade, you need to reboot!
Offline
Pages: 1