Re: BD-RE mount problem

2012-08-10 Thread Thomas Schmitt
Hi, > I did another test using system rescue cd. While it gives me the same error > when I run dvd+rw-format, I note that mkudffs complains about multiple > extents. I don't know why it gives a different message under system rescue > cd than under Debian/Wheezy but I thought it might be a clue as

Re: BD-RE mount problem

2012-08-10 Thread Gary Dale
On 10/08/12 12:46 PM, Gary Dale wrote: On 10/08/12 10:33 AM, Thomas Schmitt wrote: Hi, i can reproduce the symptoms by a read-only situation of drive and media. (It should not happen with BD-RE in a BD writer, of course.) open_sr0.c with O_NDELAY yielded: open: fd= 3 , errno= 0 write: ret= 20

Re: BD-RE mount problem

2012-08-10 Thread Gary Dale
On 10/08/12 10:33 AM, Thomas Schmitt wrote: Hi, i can reproduce the symptoms by a read-only situation of drive and media. (It should not happen with BD-RE in a BD writer, of course.) open_sr0.c with O_NDELAY yielded: open: fd= 3 , errno= 0 write: ret= 2048 , errno= 0 I get the same behavior w

Re: BD-RE mount problem

2012-08-10 Thread Thomas Schmitt
Hi, i can reproduce the symptoms by a read-only situation of drive and media. (It should not happen with BD-RE in a BD writer, of course.) open_sr0.c with O_NDELAY yielded: > open: fd= 3 , errno= 0 > write: ret= 2048 , errno= 0 I get the same behavior when i put a DVD into a DVD-ROM drive. It al

Re: BD-RE mount problem

2012-08-10 Thread Thomas Schmitt
Hi, > I'm wondering if the problem is the iso9660 file system that K3B put onto > the disc? I seriously doubt. At least dd should have no scruples to overwrite any filesystem. The block device driver has no idea of filesystems. The only connection would be open(2) flag O_EXCL. mount uses it to

Re: BD-RE mount problem

2012-08-10 Thread Gary Dale
On 10/08/12 05:23 AM, Thomas Schmitt wrote: Hi, -fd = open("/dev/sr0", O_RDWR); +fd = open("/dev/sr0", O_RDWR | O_NDELAY); open: fd= 3 , errno= 0 write: ret= 2048 , errno= 0 This explains why xorriso or dvd+rw-format can open the drive device file. (The failure to re-format is a diffe

Re: BD-RE mount problem

2012-08-10 Thread Thomas Schmitt
Hi, > > -fd = open("/dev/sr0", O_RDWR); > > +fd = open("/dev/sr0", O_RDWR | O_NDELAY); > open: fd= 3 , errno= 0 > write: ret= 2048 , errno= 0 This explains why xorriso or dvd+rw-format can open the drive device file. (The failure to re-format is a different problem.) > No one in Debian

Re: BD-RE mount problem

2012-08-10 Thread Gary Dale
On 10/08/12 01:50 AM, Thomas Schmitt wrote: Hi, fd = open("/dev/sr0", O_RDWR); root@transponder:/home/garydale# ./open_sr0 open: fd= -1 , errno= 30 open: Read-only file system This is surprising, because xorriso uses open(..., O_RDWR | O_NDELAY); when it acquires a drive. (I would have

Re: BD-RE mount problem

2012-08-09 Thread Thomas Schmitt
Hi, > > fd = open("/dev/sr0", O_RDWR); > root@transponder:/home/garydale# ./open_sr0 > open: fd= -1 , errno= 30 > open: Read-only file system This is surprising, because xorriso uses open(..., O_RDWR | O_NDELAY); when it acquires a drive. (I would have expected to see the error with write()

Re: [Bulk] Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 04:36 PM, Thomas Schmitt wrote: Hi, # xorriso -scsi_log on -dev /dev/sr0 -format "full" ... xorriso : FAILURE : libburn indicates failure with formatting. It should have reported the SCSI error (will have to dig for that). That error came with command FORMAT UNIT FORMAT UNIT 04

Re: BD-RE mount problem

2012-08-09 Thread Thomas Schmitt
Hi, > # xorriso -scsi_log on -dev /dev/sr0 -format "full" > ... > xorriso : FAILURE : libburn indicates failure with formatting. It should have reported the SCSI error (will have to dig for that). That error came with command FORMAT UNIT > FORMAT UNIT > 04 11 00 00 00 00 > To drive: 12b > 00 82

Re: [Bulk] Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 02:39 PM, Thomas Schmitt wrote: Hi, I also tried using K3B to burn as udf. mkisofs print size result: 0 (0 bytes) This looks like a different problem. A size prediction of 0 is hardly to explain by any state of the target medium. How large should the result have been ? 59M or there

Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 01:45 PM, Thomas Schmitt wrote: Hi, Yes, I have read-write permissions. Something does not work properly. Are any related messages to see in the output of dmesg ? Nothing in dmesg | tail or syslog just now when I tried a dvd+rw-format -force=full. I tried xorriso to fix the

Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 01:46 PM, Keith McKenzie wrote: On 9 August 2012 18:28, Gary Dale wrote: On 09/08/12 01:19 PM, Keith McKenzie wrote: On 9 August 2012 17:43, Gary Dale wrote: Already tried that. dd complains: dd: opening `/dev/sr0': Read-only file system It sounds like it is mounted; try

Re: BD-RE mount problem

2012-08-09 Thread Thomas Schmitt
Hi, > I also tried using K3B to burn as udf. > mkisofs print size result: 0 (0 bytes) This looks like a different problem. A size prediction of 0 is hardly to explain by any state of the target medium. How large should the result have been ? What do you get from xorriso -outdev /dev/sr0 -bla

Re: BD-RE mount problem

2012-08-09 Thread Thomas Schmitt
Hi, > Yes, I have read-write permissions. Something does not work properly. Are any related messages to see in the output of dmesg ? > I tried xorriso to fix the disc as well but it also fails. What did you try and what did it report when it failed ? (We could get a log of SCSI commands from x

Re: BD-RE mount problem

2012-08-09 Thread Keith McKenzie
On 9 August 2012 18:28, Gary Dale wrote: > On 09/08/12 01:19 PM, Keith McKenzie wrote: >> >> On 9 August 2012 17:43, Gary Dale wrote: >>> >>> >>> Already tried that. dd complains: >>>dd: opening `/dev/sr0': Read-only file system >>> >> It sounds like it is mounted; try unmounting it,& then t

Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 12:08 PM, Thomas Schmitt wrote: Hi, [i am subscribed to cdwr...@other.debian.org, not to debian-user] You could use sequential burn programs like growisofs or xorriso. Both can add files to ISO 9660 filesystems on BD-RE. Those filesystems are mountable read-only. If you canafford t

Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 01:19 PM, Keith McKenzie wrote: On 9 August 2012 17:43, Gary Dale wrote: Already tried that. dd complains: dd: opening `/dev/sr0': Read-only file system It sounds like it is mounted; try unmounting it,& then try dd again. root@transponder:/home/garydale# umount /dev/sr0 umo

Re: BD-RE mount problem

2012-08-09 Thread Keith McKenzie
On 9 August 2012 17:43, Gary Dale wrote: > > > Already tried that. dd complains: > dd: opening `/dev/sr0': Read-only file system > It sounds like it is mounted; try unmounting it, & then try dd again. -- Sent from FOSS (Free Open Source Software) Debian GNU/Linux -- To UNSUBSCRIBE, email

Re: BD-RE mount problem

2012-08-09 Thread Gary Dale
On 09/08/12 12:08 PM, Thomas Schmitt wrote: Hi, [i am subscribed to cdwr...@other.debian.org, not to debian-user] I tried a new disc again, and this time formatted it through K3B instead of using dvd+rw-format directly. I don't know what K3B does as "formatting", but dvd+rw-format does only a

Re: BD-RE mount problem

2012-08-09 Thread Thomas Schmitt
Hi, [i am subscribed to cdwr...@other.debian.org, not to debian-user] > > >I tried a new disc again, and this time formatted it through K3B > > >instead of using dvd+rw-format directly. I don't know what K3B does as "formatting", but dvd+rw-format does only a hardware level formatting. It does n

Re: BD-RE mount problem

2012-08-09 Thread Chris Bannister
[Ccing cdwr...@other.debian.org] Any ideas? On Tue, Aug 07, 2012 at 03:49:13PM -0400, Gary Dale wrote: > On 06/08/12 11:51 PM, Gary Dale wrote: > >I've been using BD-RE discs for backups on a Debian/Squeeze server > >for a couple of years now. In the last week or so the backups have > >been faili

Re: BD-RE mount problem

2012-08-09 Thread Chris Bannister
On Mon, Aug 06, 2012 at 11:51:36PM -0400, Gary Dale wrote: > I'm using Memorex BD-RE 2x discs. I've used an LG, ASUS and Pioneer > BluRay writer - the first two on the older machine. The ASUS and > Pioneer are brand new writers. > > Any ideas? Have you tried different media? Also a quick google

Re: BD-RE mount problem

2012-08-07 Thread Gary Dale
On 06/08/12 11:51 PM, Gary Dale wrote: I've been using BD-RE discs for backups on a Debian/Squeeze server for a couple of years now. In the last week or so the backups have been failing. I haven't modified my backup script so I thought about possible hardware issues. - I tried changing the Bl

BD-RE mount problem

2012-08-06 Thread Gary Dale
I've been using BD-RE discs for backups on a Debian/Squeeze server for a couple of years now. In the last week or so the backups have been failing. I haven't modified my backup script so I thought about possible hardware issues. - I tried changing the BluRay writer but got the same problem. -

Re: mount problem

2009-03-29 Thread Rob Starling
On Mon, Mar 30, 2009 at 02:49:46AM +0200, cesarino vinh wrote: > Why can't my Debian normally mount smbfs? > > I Tried many mount options in fstab, but I always get one strange result: I > can create folders in the mounted dir, BUT: I can't create files, because it > say's I don't have permission.

Re: mount problem (cifs)

2008-11-21 Thread Pol Hallen
> Please read manpage of smbmount (smbfs package) and mount (mount package). What about the man of smbmount? Pol -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: mount problem (cifs)

2008-11-21 Thread Eugene V. Lyubimkin
Osamu Aoki wrote: > On Fri, Nov 21, 2008 at 04:33:28PM +0100, Pol Hallen wrote: >> Hi folks :-) >> upgrading kernel from 2.6.22 to 2.6.27.7 and mount the share of samba.. >> >> mount //ip/share1 /home/user1/share1 -o "user=user,pass=pass" > ... >> (using konqueror smb://ip/share I can correctly wri

Re: mount problem (cifs)

2008-11-21 Thread Osamu Aoki
On Fri, Nov 21, 2008 at 04:33:28PM +0100, Pol Hallen wrote: > Hi folks :-) > upgrading kernel from 2.6.22 to 2.6.27.7 and mount the share of samba.. > > mount //ip/share1 /home/user1/share1 -o "user=user,pass=pass" ... > (using konqueror smb://ip/share I can correctly write on share of samba) > >

Re: Mount Problem when WinXp is hibernating

2008-07-31 Thread Johan Grönqvist
Oscar Blanco wrote: Hello, today I came across with something. I left WinXP hibernating and checking in console WinXP partition is not mounted. I tried to mount it manually *#mount /media/windows/C* but here is the result *Failed to mount '/dev/hda1': Operation not permitted *Why could not th

Re: Mount problem

2008-04-29 Thread Douglas A. Tutty
On Sat, Apr 19, 2008 at 01:39:51PM +0200, Asuka Langley wrote: > I have a big problem.. to be honest this problem belongs to a friend of > mine, just he can't speak english, and he is blind, so it's a bit difficult. > So..the problem > > He have this line in his fstab: > /dev/sdb1 /media/disk2 ext

Re: Mount problem SID

2008-04-20 Thread Chris Bannister
On Sat, Apr 19, 2008 at 01:42:56PM +0200, Asuka Langley wrote: > Hello > > I have a big problem.. to be honest this problem belongs to a friend of > mine, just he can't speak english, and he is blind, so it's a bit difficult. > So..the problem > > He have this line in his fstab: > /dev/sdb1 /medi

Re: Mount problem for an external USB hard drive

2007-05-07 Thread Mauro Sacchetto
Raffaele Morelli wrote: > So the device is mounted but you can not read it. If yes look at > /etc/fstab and see if umask is set for your /dev/sda* devices, setting > umask=022 for the mount point should work. No, because I'm using automount, so the entry cannot be in fstab. I edited /etc/pmount.al

Re: Mount problem for an external USB hard drive

2007-05-07 Thread Raffaele Morelli
2007/5/7, Mauro Sacchetto <[EMAIL PROTECTED]>: I've a new error when I connect an external USB hard drive. A message tells me: === hal-storage-fixed-mount refused uid 1000 === So, the user (usar samiel:group samiel, uid 1000) cannot see the devic

Re: mount problem (I think)

2006-04-04 Thread Guillermo Mulliert Carlín
On Mon, 3 Apr 2006, Kevin Mark wrote: |> On Mon, Apr 03, 2006 at 05:42:14PM +0200, Guillermo Mulliert Carl?n wrote: |> > Hello, |> >I have two dell precision 3800 with debian, they should be identical |> > same memory, same disks, same video, I installed one and I coloned it to |> > se

Re: mount problem (I think)

2006-04-03 Thread Kevin Mark
On Mon, Apr 03, 2006 at 05:42:14PM +0200, Guillermo Mulliert Carl?n wrote: > Hello, > I have two dell precision 3800 with debian, they should be identical > same memory, same disks, same video, I installed one and I coloned it to > second, so my guess is that the two computers are iden

Re: Mount problem with SATA and Kernel 2.6.6

2004-05-12 Thread Danny
Thank you for your answer. Now it works perfectly. I have compiled in the kernel also some SCSI stuff, which I thought it isn't necessary, like SCSI emulation. Danny "Justin Guerin" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > On Tuesday 11 May 2004 10:32, Danny wrote: > >

Re: Mount problem with SATA and Kernel 2.6.6

2004-05-11 Thread Justin Guerin
On Tuesday 11 May 2004 10:32, Danny wrote: > Thank you for your answer. I always use the old .config. I use EXT3 > filesystem with the drivers compiled in. I have no ramdisk, because I > have compiled in the Promise drivers directly into the kernel. As written > before, the hardisk is recognized co

Re: Mount problem with SATA and Kernel 2.6.6

2004-05-11 Thread Danny
Thank you for your answer. I always use the old .config. I use EXT3 filesystem with the drivers compiled in. I have no ramdisk, because I have compiled in the Promise drivers directly into the kernel. As written before, the hardisk is recognized correctly, also with the correct size. I have photogr

Re: Mount problem with SATA and Kernel 2.6.6

2004-05-11 Thread Justin Guerin
On Tuesday 11 May 2004 08:46, Danny wrote: > Hello, > > I have a weird boot problem. I have a SATA harddisk on a Promise > controler with Nforce2 chipset. I have no problem to boot up with Kernel > 2.4.18. All works fine instead of the Sound system. > > So I tried to use Kernel 2.6.6 as it have Nfo

RE: Mount Problem

2001-08-30 Thread Chad Morgan
When I run e2fsck I get the following: /dev/hdb4: clean, 54908/1202944 files, 576697/2401717 blocks Chad -Original Message- From: Alberto Cabello Sánchez [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 29, 2001 11:30 PM To: debian-user@lists.debian.org Subject: Re: Mount Problem

Re: Mount Problem

2001-08-30 Thread Sánchez
Have you tried running e2fsck? -- - Alberto Cabello Sánchez [EMAIL PROTECTED] Servicio de Informática Universidad de Extremadura 924 298 351 - 924 289 352 -- Debian Woody Sylpheed 0.5.2 ==

Re: mount problem

2000-07-27 Thread Dale Morris
Thanks for replying Thomas, Here's what I already have in my fstab file: /dev/fd0/floppy autodefaults,user,noauto0 0 When I try to mount it manually here's what I get: mount: I could not determine the filesystem type, and none was specified For some reason it'

Re: mount problem

2000-07-27 Thread Thomas Guettler
On Wed, Jul 26, 2000 at 09:29:35PM -0700, Dale Morris wrote: > I made a mistake installing debian and I selected the fs -automount > module. Now my floppy won't mount from the icon on the desktop. I > suppose I need to change something in my fstab file to fix it. Also, I > can't mount my cd rom, bu