GNU bug report logs - #46563
file-system declarations do not currently support cifs mounts

Previous Next

Package: guix;

Reported by: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>

Date: Tue, 16 Feb 2021 16:22:02 UTC

Severity: wishlist

To reply to this bug, email your comments to 46563 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Tue, 16 Feb 2021 16:22:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Katherine Cox-Buday <cox.katherine.e <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Tue, 16 Feb 2021 16:22:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
To: bug-guix <at> gnu.org
Subject: file-system declarations do not currently support cifs mounts
Date: Tue, 16 Feb 2021 10:21:34 -0600
With a file-system declartion of:

#+BEGIN_SRC scheme
(file-system
 (mount-point "/home/user/foo")
 (device "//server/foo")
 (type "cifs")
 (options "username=user,vers=2.0,uid=1000,gid=988")
 (check? #f)
 (create-mount-point? #t)
 (mount-may-fail? #t))
#+END_SRC

I get the following error:

#+BEGIN_EXAMPLE
$ sudo guix system reconfigure /etc/config.scm
/etc/config.scm:97:9: error: device '//server/foo not found: No such file or directory
#+END_EXAMPLE

With =cifs-utils= installed, I would expect this to work.




Information forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Mon, 22 Feb 2021 09:18:02 GMT) Full text and rfc822 format available.

Message #8 received at 46563 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
Cc: 46563 <at> debbugs.gnu.org
Subject: Re: bug#46563: file-system declarations do not currently support
 cifs mounts
Date: Mon, 22 Feb 2021 10:17:31 +0100
Hi,

Katherine Cox-Buday <cox.katherine.e <at> gmail.com> skribis:

> With a file-system declartion of:
>
> #+BEGIN_SRC scheme
> (file-system
>  (mount-point "/home/user/foo")
>  (device "//server/foo")
>  (type "cifs")
>  (options "username=user,vers=2.0,uid=1000,gid=988")
>  (check? #f)
>  (create-mount-point? #t)
>  (mount-may-fail? #t))
> #+END_SRC
>
>
> I get the following error:
>
> #+BEGIN_EXAMPLE
> $ sudo guix system reconfigure /etc/config.scm
> /etc/config.scm:97:9: error: device '//server/foo not found: No such file or directory
> #+END_EXAMPLE
>
> With =cifs-utils= installed, I would expect this to work.

Unfortunately that’s not enough.

Like NFS, CIFS requires special support, which is currently missing from
(gnu build file-systems).

Thanks,
Ludo’.




Information forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Mon, 22 Feb 2021 15:42:02 GMT) Full text and rfc822 format available.

Message #11 received at 46563 <at> debbugs.gnu.org (full text, mbox):

From: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 46563 <at> debbugs.gnu.org
Subject: Re: bug#46563: file-system declarations do not currently support
 cifs mounts
Date: Mon, 22 Feb 2021 09:41:26 -0600
Ludovic Courtès <ludo <at> gnu.org> writes:

> Unfortunately that’s not enough.
>
> Like NFS, CIFS requires special support, which is currently missing from
> (gnu build file-systems).

I apologize if I'm missing something, but this is the bug I'm attempting
to report.

-- 
Katherine




Information forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Mon, 22 Feb 2021 16:39:02 GMT) Full text and rfc822 format available.

Message #14 received at 46563 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
Cc: 46563 <at> debbugs.gnu.org
Subject: Re: bug#46563: file-system declarations do not currently support
 cifs mounts
Date: Mon, 22 Feb 2021 17:38:21 +0100
Katherine Cox-Buday <cox.katherine.e <at> gmail.com> skribis:

> Ludovic Courtès <ludo <at> gnu.org> writes:
>
>> Unfortunately that’s not enough.
>>
>> Like NFS, CIFS requires special support, which is currently missing from
>> (gnu build file-systems).
>
> I apologize if I'm missing something, but this is the bug I'm attempting
> to report.

Sure, sorry for the miscommunication!  The point I wanted to make is
that it’s not a “bug” per se but rather a missing feature.

It doesn’t help but I thought it would clarify the situation.  :-)

Ludo’.




Information forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Mon, 22 Feb 2021 17:16:02 GMT) Full text and rfc822 format available.

Message #17 received at 46563 <at> debbugs.gnu.org (full text, mbox):

From: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 46563 <at> debbugs.gnu.org
Subject: Re: bug#46563: file-system declarations do not currently support
 cifs mounts
Date: Mon, 22 Feb 2021 11:15:19 -0600
Ludovic Courtès <ludo <at> gnu.org> writes:

> Katherine Cox-Buday <cox.katherine.e <at> gmail.com> skribis:
>
>> Ludovic Courtès <ludo <at> gnu.org> writes:
>>
>>> Unfortunately that’s not enough.
>>>
>>> Like NFS, CIFS requires special support, which is currently missing from
>>> (gnu build file-systems).
>>
>> I apologize if I'm missing something, but this is the bug I'm attempting
>> to report.
>
> Sure, sorry for the miscommunication!  The point I wanted to make is
> that it’s not a “bug” per se but rather a missing feature.
>
> It doesn’t help but I thought it would clarify the situation.  :-)
>
> Ludo’.

Ah! I was wondering if there was a different way to request features! Is
debbugs not the way to do that?

-- 
Katherine




Information forwarded to bug-guix <at> gnu.org:
bug#46563; Package guix. (Tue, 23 Feb 2021 08:18:02 GMT) Full text and rfc822 format available.

Message #20 received at 46563 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Katherine Cox-Buday <cox.katherine.e <at> gmail.com>
Cc: 46563 <at> debbugs.gnu.org
Subject: Re: bug#46563: file-system declarations do not currently support
 cifs mounts
Date: Tue, 23 Feb 2021 09:17:30 +0100
Katherine Cox-Buday <cox.katherine.e <at> gmail.com> skribis:

> Ludovic Courtès <ludo <at> gnu.org> writes:
>
>> Katherine Cox-Buday <cox.katherine.e <at> gmail.com> skribis:
>>
>>> Ludovic Courtès <ludo <at> gnu.org> writes:
>>>
>>>> Unfortunately that’s not enough.
>>>>
>>>> Like NFS, CIFS requires special support, which is currently missing from
>>>> (gnu build file-systems).
>>>
>>> I apologize if I'm missing something, but this is the bug I'm attempting
>>> to report.
>>
>> Sure, sorry for the miscommunication!  The point I wanted to make is
>> that it’s not a “bug” per se but rather a missing feature.
>>
>> It doesn’t help but I thought it would clarify the situation.  :-)
>>
>> Ludo’.
>
> Ah! I was wondering if there was a different way to request features! Is
> debbugs not the way to do that?

Yes, it is; there’s a “wishlist” tag we can add.

Ludo’.




Severity set to 'wishlist' from 'normal' Request was from Ludovic Courtès <ludo <at> gnu.org> to control <at> debbugs.gnu.org. (Thu, 25 Feb 2021 08:23:01 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 111 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.