Re: mounting a dvdrw

2006-09-15 Thread Justin Piszcz



On Thu, 14 Sep 2006, Fred J. wrote:


does the following change the situation

***
[EMAIL PROTECTED]:~$ growisofs -Z /dev/hdd -R -J myPc
Executing 'mkisofs -R -J myPc | builtin_dd of=/dev/hdd obs=32k seek=0'
INFO:   ISO-8859-1 character encoding detected by locale settings.
Assuming ISO-8859-1 encoded filenames on source filesystem,
use -input-charset to override.
Total translation table size: 0
Total rockridge attributes bytes: 245
Total directory bytes: 0
Path table size(bytes): 10
Max brk space used 0
184 extents written (0 MB)
/dev/hdd: Current Write Speed is 4.1x1385KBps.
builtin_dd: 192*2KB out @ average infx1385KBps
/dev/hdd: flushing cache
/dev/hdd: stopping de-icing
/dev/hdd: writing lead-out
/dev/hdd: reloading tray

[EMAIL PROTECTED]:~$ ls /media/cdrom1
hdd
[EMAIL PROTECTED]:~$ ls /dev/hdd
/dev/hdd
[EMAIL PROTECTED]:~$

where is the file?


If you formatted it that way (mkisofs) you should be able to mount it as a 
regular CD.  mount /dev/hdd /mnt


Justin.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: mounting a dvdrw

2006-09-15 Thread Fred J.
... /dev/hdd [EMAIL PROTECTED]:~$ where is the file?If you formatted it that way (mkisofs) you should be able to mount it as a regular CD.  mount /dev/hdd /mntJustin.that is right, I was able to mount it and read the file. thanks... 
		Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

Re: mounting a dvdrw

2006-09-14 Thread Paul van der Vlis
Fred J. schreef:
 Hi
 I am missing dvdrw in my / dir, however I got cdrom which is link to
 /media/cdrom
 lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
 but my fstab does not have media/cdrom but rather /media/cdrom0 and 1.
 here is my #fstab
 
 !# /etc/fstab: static file system information.
 #
 #
 proc /proc proc defaults 0 0
 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
 /dev/hdb9 /home ext3 defaults 0 2
 /dev/hdb8 /tmp ext3 defaults 0 2
 /dev/hdb5 /usr ext3 defaults 0 2
 /dev/hdb6 /var ext3 defaults 0 2
 /dev/hdb7 none swap sw 0 0
 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
 /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
 when I need to mount/umount the dvdrw I have to do
 #mount /dve/hdd or #mount /media/cdrom1
 I would like to do
 #mount /dvdrw
 do I make a symlink in my root dir like this then
 #ln -s /dev/hdd /dvdrw
 ?

You can do, but you need to change /etc/fstab too.

Realise that the default is to use /media/cdrom1 , zo maybe it's better
to use that, or make a symlink from /dvdrw to /media/cdrom1.

When you use a 2.6 kernel, CDroms's are mounted automatically (when you
did not turn that off).

With regards,
Paul van der Vlis.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting a dvdrw

2006-09-14 Thread Fred J.
I am trying to mount the dvd-rw but getting some errors. ~$ sudo mount -iso9660 -noatime /media/cdrom1mount: wrong fs type, bad option, bad superblock on /dev/hdd, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or soPaul van der Vlis [EMAIL PROTECTED] wrote: Fred J. schreef: Hi I am missing dvdrw in my / dir, however I got cdrom which is link to /media/cdrom lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !#
 /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1 /dev/hdb9 /home ext3 defaults 0 2 /dev/hdb8 /tmp ext3 defaults 0 2 /dev/hdb5 /usr ext3 defaults 0 2 /dev/hdb6 /var ext3 defaults 0 2 /dev/hdb7 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 when I need to mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1 I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ?You can do, but you need to change /etc/fstab too.Realise that the default is to use /media/cdrom1 , zo maybe it's betterto use that, or make a symlink from /dvdrw to
 /media/cdrom1.When you use a 2.6 kernel, CDroms's are mounted automatically (when youdid not turn that off).With regards,Paul van der Vlis. 
		Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail.

Re: mounting a dvdrw

2006-09-14 Thread Justin Piszcz
First off its mount -t iso9660 and secondly, you should not use ISO9660 
for DVDs, only use UDF, otherwise, you will face some major problems.


One of which is you cannot have  2GB files on an ISO9660 formatted DVD.


On Thu, 14 Sep 2006, Fred J. wrote:


I am trying to mount the dvd-rw but getting some errors.

~$ sudo mount -iso9660 -noatime /media/cdrom1
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so


Paul van der Vlis [EMAIL PROTECTED] wrote: Fred J. schreef:

Hi
I am missing dvdrw in my / dir, however I got cdrom which is link to
/media/cdrom
lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
but my fstab does not have media/cdrom but rather /media/cdrom0 and 1.
here is my #fstab

!# /etc/fstab: static file system information.
#
#
proc /proc proc defaults 0 0
/dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
/dev/hdb9 /home ext3 defaults 0 2
/dev/hdb8 /tmp ext3 defaults 0 2
/dev/hdb5 /usr ext3 defaults 0 2
/dev/hdb6 /var ext3 defaults 0 2
/dev/hdb7 none swap sw 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
when I need to mount/umount the dvdrw I have to do
#mount /dve/hdd or #mount /media/cdrom1
I would like to do
#mount /dvdrw
do I make a symlink in my root dir like this then
#ln -s /dev/hdd /dvdrw
?


You can do, but you need to change /etc/fstab too.

Realise that the default is to use /media/cdrom1 , zo maybe it's better
to use that, or make a symlink from /dvdrw to /media/cdrom1.

When you use a 2.6 kernel, CDroms's are mounted automatically (when you
did not turn that off).

With regards,
Paul van der Vlis.



-
Do you Yahoo!?
Everyone is raving about the  all-new Yahoo! Mail.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: mounting a dvdrw

2006-09-14 Thread Fred J.
I must be doing some wrong. [EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1Usage: mount -V : print version mount -h : print this help mount : list mounted filesystems mount -l : idem, including volume labelsSo far the informational part. Next the mounting.The command is `mount [-t fstype] something somewhere'.Details found in /etc/fstab may be omitted. mount -a [-t|-O] ... :
 mount all stuff from /etc/fstab mount device : mount device at the known place mount directory : mount known device here mount -t type dev dir : ordinary mount commandNote that one does not really mount a device, one mountsa filesystem (of the given type) found on the device.One can also mount an already visible directory tree elsewhere: mount --bind olddir newdiror move a subtree: mount --move olddir newdirA device can be given by name, say /dev/hda1 or /dev/cdrom,or by label, using -L label or by uuid, using -U uuid .Other options: [-nfFrsvw] [-o options] [-p passwdfd].For many more
 details, say man 8 mount .[EMAIL PROTECTED]:~$ Justin Piszcz [EMAIL PROTECTED] wrote: First off its mount -t iso9660 and secondly, you should not use ISO9660 for DVDs, only use UDF, otherwise, you will face some major problems.One of which is you cannot have  2GB files on an ISO9660 formatted DVD.On Thu, 14 Sep 2006, Fred J. wrote: I am trying to mount the dvd-rw but getting some errors. ~$ sudo mount -iso9660 -noatime /media/cdrom1 mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so Paul van der Vlis <[EMAIL PROTECTED]> wrote: Fred J. schreef: Hi I am
 missing dvdrw in my / dir, however I got cdrom which is link to /media/cdrom lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !# /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1 /dev/hdb9 /home ext3 defaults 0 2 /dev/hdb8 /tmp ext3 defaults 0 2 /dev/hdb5 /usr ext3 defaults 0 2 /dev/hdb6 /var ext3 defaults 0 2 /dev/hdb7 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 when I need to
 mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1 I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ? You can do, but you need to change /etc/fstab too. Realise that the default is to use /media/cdrom1 , zo maybe it's better to use that, or make a symlink from /dvdrw to /media/cdrom1. When you use a 2.6 kernel, CDroms's are mounted automatically (when you did not turn that off). With regards, Paul van der Vlis. - Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail.-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact
 [EMAIL PROTECTED] 
		Get your email and more, right on the  new Yahoo.com 


Re: mounting a dvdrw

2006-09-14 Thread Justin Piszcz

Try lowercase.

$ cat /proc/filesystems  |grep -i udf
udf
$

On Thu, 14 Sep 2006, Fred J. wrote:


I must be doing some wrong.

[EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1
Usage: mount -V : print version
  mount -h : print this help
  mount: list mounted filesystems
  mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
  mount -a [-t|-O] ... : mount all stuff from /etc/fstab
  mount device : mount device at the known place
  mount directory  : mount known device here
  mount -t type dev dir: ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
  mount --bind olddir newdir
or move a subtree:
  mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount .
[EMAIL PROTECTED]:~$



Justin Piszcz [EMAIL PROTECTED] wrote: First off its mount -t iso9660 and 
secondly, you should not use ISO9660
for DVDs, only use UDF, otherwise, you will face some major problems.

One of which is you cannot have  2GB files on an ISO9660 formatted DVD.


On Thu, 14 Sep 2006, Fred J. wrote:


I am trying to mount the dvd-rw but getting some errors.

~$ sudo mount -iso9660 -noatime /media/cdrom1
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so


Paul van der Vlis

wrote: Fred J. schreef:

Hi
I am missing dvdrw in my / dir, however I got cdrom which is link to
/media/cdrom
lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
but my fstab does not have media/cdrom but rather /media/cdrom0 and 1.
here is my #fstab

!# /etc/fstab: static file system information.
#
#
proc /proc proc defaults 0 0
/dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
/dev/hdb9 /home ext3 defaults 0 2
/dev/hdb8 /tmp ext3 defaults 0 2
/dev/hdb5 /usr ext3 defaults 0 2
/dev/hdb6 /var ext3 defaults 0 2
/dev/hdb7 none swap sw 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
when I need to mount/umount the dvdrw I have to do
#mount /dve/hdd or #mount /media/cdrom1
I would like to do
#mount /dvdrw
do I make a symlink in my root dir like this then
#ln -s /dev/hdd /dvdrw
?


You can do, but you need to change /etc/fstab too.

Realise that the default is to use /media/cdrom1 , zo maybe it's better
to use that, or make a symlink from /dvdrw to /media/cdrom1.

When you use a 2.6 kernel, CDroms's are mounted automatically (when you
did not turn that off).

With regards,
Paul van der Vlis.



-
Do you Yahoo!?
Everyone is raving about the  all-new Yahoo! Mail.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]





-
Get your email and more, right on the  new Yahoo.com



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: mounting a dvdrw

2006-09-14 Thread Paul van der Vlis
Fred J. schreef:
 how do I make my fstab correct in this case?

Your fstab is OK.

It should work if you do:
mount /dev/hdd

Maybe it's a bit better to use udf as Justin says, I don't know.

With regards,
Paul van der Vlis.


 */Paul van der Vlis [EMAIL PROTECTED]/* wrote:
 
 Fred J. schreef:
  I am trying to mount the dvd-rw but getting some errors.
 
  ~$ sudo mount -iso9660 -noatime /media/cdrom1
  mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail or so
 
 mount -t iso9660
 
 If you make a correct fstab, you don't have to give the type filesystem.
 
 With regards,
 Paul van der Vlis.
 
 
  */Paul van der Vlis /* wrote:
 
  Fred J. schreef:
   Hi
   I am missing dvdrw in my / dir, however I got cdrom which is link to
   /media/cdrom
   lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
   but my fstab does not have media/cdrom but rather /media/cdrom0
 and 1.
   here is my #fstab
   
   !# /etc/fstab: static file system information.
   #
   #
   proc /proc proc defaults 0 0
   /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
   /dev/hdb9 /home ext3 defaults 0 2
   /dev/hdb8 /tmp ext3 defaults 0 2
   /dev/hdb5 /usr ext3 defaults 0 2
   /dev/hdb6 /var ext3 defaults 0 2
   /dev/hdb7 none swap sw 0 0
   /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
   /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
   /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
   when I need to mount/umount the dvdrw I have to do
   #mount /dve/hdd or #mount /media/cdrom1
   I would like to do
   #mount /dvdrw
   do I make a symlink in my root dir like this then
   #ln -s /dev/hdd /dvdrw
   ?
 
  You can do, but you need to change /etc/fstab too.
 
  Realise that the default is to use /media/cdrom1 , zo maybe it's
 better
  to use that, or make a symlink from /dvdrw to /media/cdrom1.
 
  When you use a 2.6 kernel, CDroms's are mounted automatically
 (when you
  did not turn that off).
 
  With regards,
  Paul van der Vlis.
 
 
 
 
  Do you Yahoo!?
  Everyone is raving about the all-new Yahoo! Mail.
 
 
 
 
 
 Get your email and more, right on the new Yahoo.com
 http://us.rd.yahoo.com/evt=42973/*http://www.yahoo.com/preview


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting a dvdrw

2006-09-14 Thread Wayne Topa
Fred J.([EMAIL PROTECTED]) is reported to have said:
 I must be doing some wrong. 
 
 [EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1
 Usage: mount -V : print version
mount -h : print this help
mount: list mounted filesystems
mount -l : idem, including volume labels
 So far the informational part. Next the mounting.
 The command is `mount [-t fstype] something somewhere'.
 Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory  : mount known device here
mount -t type dev dir: ordinary mount command
 Note that one does not really mount a device, one mounts
 a filesystem (of the given type) found on the device.
 One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
 or move a subtree:
mount --move olddir newdir
 A device can be given by name, say /dev/hda1 or /dev/cdrom,
 or by label, using  -L label  or by uuid, using  -U uuid .
 Other options: [-nfFrsvw] [-o options] [-p passwdfd].
 For many more details, say  man 8 mount .

Creating the UDF disk
DVDUDFFMT='dvd+rw-format -force /dev/dvd; mkudffs /dev/pktcdvd/dvd'

Mounting the UDF disk
DVDUDFM='mount -t udf /dev/pktcdvd/dvd /media/dvd -o rw,noatime'

Unmounting the UDF disk
DVDUDFUM='umount /media/dvd ; eject /dev/hdc '

/etc/fstab
...
...
/dev/pktcdvd/dvd   /media/dvd   udf   noauto,noatime,user,rw  0 0
...

:-) HTH, YMMV, HAND :-)

Wayne

-- 
Why do they call this a word processor? It's simple, ... you've seen
what food processors do to food, right?
___


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: mounting a dvdrw

2006-09-14 Thread Fred J.
[EMAIL PROTECTED]:~$ cat /proc/filesystems |grep -i udf[EMAIL PROTECTED]:~$ mount /dev/hddmount: wrong fs type, bad option, bad superblock on /dev/hdd, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so[EMAIL PROTECTED]:~$ Justin Piszcz [EMAIL PROTECTED] wrote: Try lowercase.$ cat /proc/filesystems  |grep -i udf udf$On Thu, 14 Sep 2006, Fred J. wrote: I must be doing some wrong. [EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1 Usage: mount -V : print version   mount -h : print this help   mount: list
 mounted filesystems   mount -l : idem, including volume labels So far the informational part. Next the mounting. The command is `mount [-t fstype] something somewhere'. Details found in /etc/fstab may be omitted.   mount -a [-t|-O] ... : mount all stuff from /etc/fstab   mount device : mount device at the known place   mount directory  : mount known device here   mount -t type dev dir: ordinary mount command Note that one does not really mount a device, one mounts a filesystem (of the given type) found on the device. One can also mount an already visible directory tree elsewhere:   mount --bind olddir newdir or move a subtree:   mount --move olddir newdir A device can be given by name, say /dev/hda1 or /dev/cdrom, or by label, using  -L label  or by uuid, using  -U uuid
 . Other options: [-nfFrsvw] [-o options] [-p passwdfd]. For many more details, say  man 8 mount . [EMAIL PROTECTED]:~$ Justin Piszcz <[EMAIL PROTECTED]> wrote: First off its mount -t iso9660 and secondly, you should not use ISO9660 for DVDs, only use UDF, otherwise, you will face some major problems. One of which is you cannot have  2GB files on an ISO9660 formatted DVD. On Thu, 14 Sep 2006, Fred J. wrote: I am trying to mount the dvd-rw but getting some errors. ~$ sudo mount -iso9660 -noatime /media/cdrom1 mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so Paul van der Vlis wrote: Fred J.
 schreef: Hi I am missing dvdrw in my / dir, however I got cdrom which is link to /media/cdrom lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !# /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1 /dev/hdb9 /home ext3 defaults 0 2 /dev/hdb8 /tmp ext3 defaults 0 2 /dev/hdb5 /usr ext3 defaults 0 2 /dev/hdb6 /var ext3 defaults 0 2 /dev/hdb7 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/hdd /media/cdrom1 iso9660
 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 when I need to mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1 I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ? You can do, but you need to change /etc/fstab too. Realise that the default is to use /media/cdrom1 , zo maybe it's better to use that, or make a symlink from /dvdrw to /media/cdrom1. When you use a 2.6 kernel, CDroms's are mounted automatically (when you did not turn that off). With regards, Paul van der Vlis. - Do you Yahoo!? Everyone is raving about
 the  all-new Yahoo! Mail. --  To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] - Get your email and more, right on the  new Yahoo.com 
		Do you Yahoo!? 
Get on board. You're invited to try the new Yahoo! Mail.

Re: mounting a dvdrw

2006-09-14 Thread Justin Piszcz
You do not have support to mount a udf filesystem.  Recompile with UDF  
packet cd/dvd support.


Justin.

On Thu, 14 Sep 2006, Fred J. wrote:


[EMAIL PROTECTED]:~$ cat /proc/filesystems  |grep -i udf
[EMAIL PROTECTED]:~$ mount /dev/hdd
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so

[EMAIL PROTECTED]:~$


Justin Piszcz [EMAIL PROTECTED] wrote: Try lowercase.

$ cat /proc/filesystems  |grep -i udf
udf
$

On Thu, 14 Sep 2006, Fred J. wrote:


I must be doing some wrong.

[EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1
Usage: mount -V : print version
  mount -h : print this help
  mount: list mounted filesystems
  mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
  mount -a [-t|-O] ... : mount all stuff from /etc/fstab
  mount device : mount device at the known place
  mount directory  : mount known device here
  mount -t type dev dir: ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
  mount --bind olddir newdir
or move a subtree:
  mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount .
[EMAIL PROTECTED]:~$



Justin Piszcz  wrote: First off its mount -t iso9660 and secondly, you should 
not use ISO9660
for DVDs, only use UDF, otherwise, you will face some major problems.

One of which is you cannot have  2GB files on an ISO9660 formatted DVD.


On Thu, 14 Sep 2006, Fred J. wrote:


I am trying to mount the dvd-rw but getting some errors.

~$ sudo mount -iso9660 -noatime /media/cdrom1
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so


Paul van der Vlis

wrote: Fred J. schreef:

Hi
I am missing dvdrw in my / dir, however I got cdrom which is link to
/media/cdrom
lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
but my fstab does not have media/cdrom but rather /media/cdrom0 and 1.
here is my #fstab

!# /etc/fstab: static file system information.
#
#
proc /proc proc defaults 0 0
/dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
/dev/hdb9 /home ext3 defaults 0 2
/dev/hdb8 /tmp ext3 defaults 0 2
/dev/hdb5 /usr ext3 defaults 0 2
/dev/hdb6 /var ext3 defaults 0 2
/dev/hdb7 none swap sw 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
when I need to mount/umount the dvdrw I have to do
#mount /dve/hdd or #mount /media/cdrom1
I would like to do
#mount /dvdrw
do I make a symlink in my root dir like this then
#ln -s /dev/hdd /dvdrw
?


You can do, but you need to change /etc/fstab too.

Realise that the default is to use /media/cdrom1 , zo maybe it's better
to use that, or make a symlink from /dvdrw to /media/cdrom1.

When you use a 2.6 kernel, CDroms's are mounted automatically (when you
did not turn that off).

With regards,
Paul van der Vlis.



-
Do you Yahoo!?
Everyone is raving about the  all-new Yahoo! Mail.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]





-
Get your email and more, right on the  new Yahoo.com




-
Do you Yahoo!?
Get on board. You're invited to try the new Yahoo! Mail.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: mounting a dvdrw

2006-09-14 Thread Fred J.
do you mean kernel recompile?Justin Piszcz [EMAIL PROTECTED] wrote: You do not have support to mount a udf filesystem.  Recompile with UDF  packet cd/dvd support.Justin.On Thu, 14 Sep 2006, Fred J. wrote: [EMAIL PROTECTED]:~$ cat /proc/filesystems  |grep -i udf [EMAIL PROTECTED]:~$ mount /dev/hdd mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so [EMAIL PROTECTED]:~$ Justin Piszcz <[EMAIL PROTECTED]> wrote: Try lowercase. $ cat /proc/filesystems  |grep -i udf udf $ On Thu, 14 Sep 2006, Fred J. wrote: I must be doing some
 wrong. [EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1 Usage: mount -V : print version   mount -h : print this help   mount: list mounted filesystems   mount -l : idem, including volume labels So far the informational part. Next the mounting. The command is `mount [-t fstype] something somewhere'. Details found in /etc/fstab may be omitted.   mount -a [-t|-O] ... : mount all stuff from /etc/fstab   mount device : mount device at the known place   mount directory  : mount known device here   mount -t type dev dir: ordinary mount command Note that one does not really mount a device, one mounts a filesystem (of the given type) found on the device. One can also mount
 an already visible directory tree elsewhere:   mount --bind olddir newdir or move a subtree:   mount --move olddir newdir A device can be given by name, say /dev/hda1 or /dev/cdrom, or by label, using  -L label  or by uuid, using  -U uuid . Other options: [-nfFrsvw] [-o options] [-p passwdfd]. For many more details, say  man 8 mount . [EMAIL PROTECTED]:~$ Justin Piszcz  wrote: First off its mount -t iso9660 and secondly, you should not use ISO9660 for DVDs, only use UDF, otherwise, you will face some major problems. One of which is you cannot have  2GB files on an ISO9660 formatted DVD. On Thu, 14 Sep 2006, Fred J. wrote: I am trying to mount the dvd-rw but getting some errors. ~$ sudo mount
 -iso9660 -noatime /media/cdrom1 mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so Paul van der Vlis wrote: Fred J. schreef: Hi I am missing dvdrw in my / dir, however I got cdrom which is link to /media/cdrom lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !# /etc/fstab: static file system information. # # proc /proc proc defaults 0
 0 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1 /dev/hdb9 /home ext3 defaults 0 2 /dev/hdb8 /tmp ext3 defaults 0 2 /dev/hdb5 /usr ext3 defaults 0 2 /dev/hdb6 /var ext3 defaults 0 2 /dev/hdb7 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 when I need to mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1 I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ? You can do, but you need to change /etc/fstab
 too. Realise that the default is to use /media/cdrom1 , zo maybe it's better to use that, or make a symlink from /dvdrw to /media/cdrom1. When you use a 2.6 kernel, CDroms's are mounted automatically (when you did not turn that off). With regards, Paul van der Vlis. - Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] - Get your email and more, right on the  new
 Yahoo.com - Do you Yahoo!? Get on board. You're invited to try the new Yahoo! Mail. 
		Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

Re: mounting a dvdrw

2006-09-14 Thread Justin Piszcz

Yep.

On Thu, 14 Sep 2006, Fred J. wrote:


do you mean kernel recompile?

Justin Piszcz [EMAIL PROTECTED] wrote: You do not have support to mount a udf 
filesystem.  Recompile with UDF 
packet cd/dvd support.

Justin.

On Thu, 14 Sep 2006, Fred J. wrote:


[EMAIL PROTECTED]:~$ cat /proc/filesystems  |grep -i udf
[EMAIL PROTECTED]:~$ mount /dev/hdd
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so

[EMAIL PROTECTED]:~$


Justin Piszcz  wrote: Try lowercase.

$ cat /proc/filesystems  |grep -i udf
udf
$

On Thu, 14 Sep 2006, Fred J. wrote:


I must be doing some wrong.

[EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1
Usage: mount -V : print version
  mount -h : print this help
  mount: list mounted filesystems
  mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
  mount -a [-t|-O] ... : mount all stuff from /etc/fstab
  mount device : mount device at the known place
  mount directory  : mount known device here
  mount -t type dev dir: ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
  mount --bind olddir newdir
or move a subtree:
  mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount .
[EMAIL PROTECTED]:~$



Justin Piszcz  wrote: First off its mount -t iso9660 and secondly, you should 
not use ISO9660
for DVDs, only use UDF, otherwise, you will face some major problems.

One of which is you cannot have  2GB files on an ISO9660 formatted DVD.


On Thu, 14 Sep 2006, Fred J. wrote:


I am trying to mount the dvd-rw but getting some errors.

~$ sudo mount -iso9660 -noatime /media/cdrom1
mount: wrong fs type, bad option, bad superblock on /dev/hdd,
  missing codepage or other error
  In some cases useful info is found in syslog - try
  dmesg | tail  or so


Paul van der Vlis

wrote: Fred J. schreef:

Hi
I am missing dvdrw in my / dir, however I got cdrom which is link to
/media/cdrom
lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom
but my fstab does not have media/cdrom but rather /media/cdrom0 and 1.
here is my #fstab

!# /etc/fstab: static file system information.
#
#
proc /proc proc defaults 0 0
/dev/hdb1 / ext3 defaults,errors=remount-ro 0 1
/dev/hdb9 /home ext3 defaults 0 2
/dev/hdb8 /tmp ext3 defaults 0 2
/dev/hdb5 /usr ext3 defaults 0 2
/dev/hdb6 /var ext3 defaults 0 2
/dev/hdb7 none swap sw 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
/dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
when I need to mount/umount the dvdrw I have to do
#mount /dve/hdd or #mount /media/cdrom1
I would like to do
#mount /dvdrw
do I make a symlink in my root dir like this then
#ln -s /dev/hdd /dvdrw
?


You can do, but you need to change /etc/fstab too.

Realise that the default is to use /media/cdrom1 , zo maybe it's better
to use that, or make a symlink from /dvdrw to /media/cdrom1.

When you use a 2.6 kernel, CDroms's are mounted automatically (when you
did not turn that off).

With regards,
Paul van der Vlis.



-
Do you Yahoo!?
Everyone is raving about the  all-new Yahoo! Mail.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]





-
Get your email and more, right on the  new Yahoo.com




-
Do you Yahoo!?
Get on board. You're invited to try the new Yahoo! Mail.




-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2?/min or less.

Re: mounting a dvdrw

2006-09-14 Thread Fred J.
does the following change the situation *** [EMAIL PROTECTED]:~$ growisofs -Z /dev/hdd -R -J myPc  Executing 'mkisofs -R -J myPc | builtin_dd of=/dev/hdd obs=32k seek=0' INFO:   ISO-8859-1 character encoding detected by locale settings. Assuming ISO-8859-1 encoded filenames on source filesystem, use -input-charset to override. Total translation table size: 0 Total rockridge attributes bytes: 245 Total directory bytes: 0 Path table size(bytes): 10 Max brk space used 0 184 extents written (0 MB) /dev/hdd: "Current Write Speed" is 4.1x1385KBps. builtin_dd: 192*2KB out @ average infx1385KBps /dev/hdd: flushing cache /dev/hdd: stopping de-icing /dev/hdd: writing lead-out /dev/hdd: reloading tray  [EMAIL PROTECTED]:~$ ls /media/cdrom1 hdd [EMAIL PROTECTED]:~$ ls /dev/hdd /dev/hdd [EMAIL PROTECTED]:~$   where is the
 file?***Justin Piszcz [EMAIL PROTECTED] wrote: Yep.On Thu, 14 Sep 2006, Fred J. wrote: do you mean kernel recompile? Justin Piszcz <[EMAIL PROTECTED]> wrote: You do not have support to mount a udf filesystem.  Recompile with UDF  packet cd/dvd support. Justin. On Thu, 14 Sep 2006, Fred J. wrote: [EMAIL PROTECTED]:~$ cat /proc/filesystems  |grep -i udf [EMAIL PROTECTED]:~$ mount /dev/hdd mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so
 [EMAIL PROTECTED]:~$ Justin Piszcz  wrote: Try lowercase. $ cat /proc/filesystems  |grep -i udf udf $ On Thu, 14 Sep 2006, Fred J. wrote: I must be doing some wrong. [EMAIL PROTECTED]:~$ sudo mount -t UDF /media/cdrom1 Usage: mount -V : print version   mount -h : print this help   mount: list mounted filesystems   mount -l : idem, including volume labels So far the informational part. Next the mounting. The command is `mount [-t fstype] something somewhere'. Details found in /etc/fstab may be omitted.   mount -a [-t|-O] ... : mount all stuff from /etc/fstab   mount device 
: mount device at the known place   mount directory  : mount known device here   mount -t type dev dir: ordinary mount command Note that one does not really mount a device, one mounts a filesystem (of the given type) found on the device. One can also mount an already visible directory tree elsewhere:   mount --bind olddir newdir or move a subtree:   mount --move olddir newdir A device can be given by name, say /dev/hda1 or /dev/cdrom, or by label, using  -L label  or by uuid, using  -U uuid . Other options: [-nfFrsvw] [-o options] [-p passwdfd]. For many more details, say  man 8 mount . [EMAIL PROTECTED]:~$ Justin Piszcz  wrote: First off its mount -t iso9660 and secondly, you
 should not use ISO9660 for DVDs, only use UDF, otherwise, you will face some major problems. One of which is you cannot have  2GB files on an ISO9660 formatted DVD. On Thu, 14 Sep 2006, Fred J. wrote: I am trying to mount the dvd-rw but getting some errors. ~$ sudo mount -iso9660 -noatime /media/cdrom1 mount: wrong fs type, bad option, bad superblock on /dev/hdd,   missing codepage or other error   In some cases useful info is found in syslog - try   dmesg | tail  or so Paul van der Vlis wrote: Fred J. schreef: Hi I am missing dvdrw in my / dir, however I got cdrom which is link
 to /media/cdrom lrwxrwxrwx 1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !# /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hdb1 / ext3 defaults,errors=remount-ro 0 1 /dev/hdb9 /home ext3 defaults 0 2 /dev/hdb8 /tmp ext3 defaults 0 2 /dev/hdb5 /usr ext3 defaults 0 2 /dev/hdb6 /var ext3 defaults 0 2 /dev/hdb7 none swap sw 0 0 /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0
 /dev/hdd /media/cdrom1 iso9660 ro,user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 when I need to mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1 I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ? You can do, but you need to change /etc/fstab too. Realise that the default is to use /media/cdrom1 , zo maybe it's better to use that, or make a symlink from /dvdrw to /media/cdrom1. When you use a 2.6 kernel, CDroms's are mounted automatically (when you did not turn that off). With
 regards, Paul van der Vlis. - Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] - Get your email and more, right on the  new 

Re: mounting a dvdrw

2006-09-14 Thread David E. Fox
On Thu, 14 Sep 2006 11:14:18 -0700 (PDT)
Fred J. [EMAIL PROTECTED] wrote:

 does the following change the situation 
 
 ***
  [EMAIL PROTECTED]:~$ growisofs -Z /dev/hdd -R -J myPc 
  Executing 'mkisofs -R -J myPc | builtin_dd of=/dev/hdd obs=32k seek=0'
  INFO:   ISO-8859-1 character encoding detected by locale settings.
  Assuming ISO-8859-1 encoded filenames on source filesystem,
  use -input-charset to override.

OK, so you're burning an image or something to a blank dvdrw.
  [EMAIL PROTECTED]:~$ ls /dev/hdd
  /dev/hdd
  [EMAIL PROTECTED]:~$ 
  
  where is the file?

There isn't one. Not really. In a sense, the 'file' is whatever you
burnt prior to mounting it, which could be an iso image, a copy of a
movie, a bunch of data files, what have you.

In order to see the files, you need to mount the device, either
manually or as a configurable option if you use a graphical window
manager such as KDE/Gnome.

Once mounted, you can cd into the mount point (typcically /media/cdrom1
or /media/cdrom0) and look for the files.

Oh, and btw, don't top post and don't forget to trim your replies. I'm
not complaining specifically about this post but the last few posts
have consisted of 1 line responses followed by the entire quoted text
of the prior reply.



-- 

David E. Fox  Thanks for letting me
[EMAIL PROTECTED]change magnetic patterns
[EMAIL PROTECTED]   on your hard disk.
---


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



mounting a dvdrw

2006-09-13 Thread Fred J.
Hi I am missing dvdrw in my / dir, however I got cdrom which is link to /media/cdrom lrwxrwxrwx  1 root root 11 2006-03-19 03:46 cdrom - media/cdrom but my fstab does not have media/cdrom but rather /media/cdrom0 and 1. here is my #fstab  !# /etc/fstab: static file system information. # # proc/proc   procdefaults0   0 /dev/hdb1   /   ext3defaults,errors=remount-ro 0   1 /dev/hdb9   /home   ext3defaults0   2 /dev/hdb8   /tmpext3defaults0   2 /dev/hdb5   /usrext3defaults0   2 /dev/hdb6   /varext3defaults0   2 /dev/hdb7   noneswapsw  0   0 /dev/hdc/media/cdrom0   iso9660 ro,user,noauto  0  
 0 /dev/hdd/media/cdrom1   iso9660 ro,user,noauto  0   0 /dev/fd0/media/floppy0  autorw,user,noauto  0   0 when I need to mount/umount the dvdrw I have to do #mount /dve/hdd or #mount /media/cdrom1  I would like to do #mount /dvdrw do I make a symlink in my root dir like this then #ln -s /dev/hdd /dvdrw ? thanks 
	

	
		Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business.